Jump to content

[1.16.5] Recipe type not registering correctly


ImNotJahan

Recommended Posts

"Invalid or unsupported recipe type 'danmachi:smithing'" is what I get whenever a world is loaded, despite (I think) registering it. This is the class I'm registering it in

Spoiler
public class Recipes
{
    public static final IRecipeSerializer<SmithingAnvilRecipe> SMITHING_RECIPE_SERIALIZER = new SmithingRecipeSerializer();
    public static final IRecipeType<ISmithingAnvilRecipe> SMITHING_TYPE = registerType(ISmithingAnvilRecipe.TYPE_ID);

    public static final DeferredRegister<IRecipeSerializer<?>> RECIPE_SERIALIZERS = DeferredRegister.create(
            ForgeRegistries.RECIPE_SERIALIZERS, Reference.MODID);

    public static final RegistryObject<IRecipeSerializer<?>> SMITHING_SERIALIZER =
            RECIPE_SERIALIZERS.register("smithing",
            () -> SMITHING_RECIPE_SERIALIZER);

    public static RecipeManager RECIPE_MANAGER;

    public static void init(){}

    @Nonnull
    public static Map<ResourceLocation, IRecipe<?>> getRecipes (IRecipeType<?> recipeType)
    {
        final Map<IRecipeType<?>, Map<ResourceLocation, IRecipe<?>>> recipesMap =
                ObfuscationReflectionHelper.getPrivateValue(RecipeManager.class, RECIPE_MANAGER, "recipes");

        if(recipesMap != null && recipesMap.get(recipeType) != null) return recipesMap.get(recipeType);
        else return new HashMap<>();
    }

    private static class RecipeType<T extends IRecipe<?>> implements IRecipeType<T>
    {
        @Override
        public String toString() {
            return Registry.RECIPE_TYPE.getKey(this).toString();
        }
    }

    private static <T extends IRecipeType> T registerType(ResourceLocation recipeTypeId)
    {
        return (T) Registry.register(Registry.RECIPE_TYPE, recipeTypeId, new RecipeType<>());
    }
}

 

The init() method is just called in my main classes constructor, to make sure the class gets loaded.

Here's also the full log:

Spoiler
"C:\Program Files\Java\jdk1.8.0_281\bin\java.exe" -Dforge.logging.console.level=debug -Dforge.logging.markers=REGISTRIES -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump "-Dos.name=Windows 10" -Dos.version=10.0 "-javaagent:D:\Apps\JetBrains\IntelliJ IDEA 2021.2.1\lib\idea_rt.jar=59745:D:\Apps\JetBrains\IntelliJ IDEA 2021.2.1\bin" -Dfile.encoding=UTF-8 -classpath "C:\Program Files\Java\jdk1.8.0_281\jre\lib\charsets.jar;C:\Program Files\Java\jdk1.8.0_281\jre\lib\deploy.jar;C:\Program Files\Java\jdk1.8.0_281\jre\lib\ext\access-bridge-64.jar;C:\Program Files\Java\jdk1.8.0_281\jre\lib\ext\cldrdata.jar;C:\Program Files\Java\jdk1.8.0_281\jre\lib\ext\dnsns.jar;C:\Program Files\Java\jdk1.8.0_281\jre\lib\ext\jaccess.jar;C:\Program Files\Java\jdk1.8.0_281\jre\lib\ext\jfxrt.jar;C:\Program Files\Java\jdk1.8.0_281\jre\lib\ext\localedata.jar;C:\Program Files\Java\jdk1.8.0_281\jre\lib\ext\nashorn.jar;C:\Program Files\Java\jdk1.8.0_281\jre\lib\ext\sunec.jar;C:\Program Files\Java\jdk1.8.0_281\jre\lib\ext\sunjce_provider.jar;C:\Program Files\Java\jdk1.8.0_281\jre\lib\ext\sunmscapi.jar;C:\Program Files\Java\jdk1.8.0_281\jre\lib\ext\sunpkcs11.jar;C:\Program Files\Java\jdk1.8.0_281\jre\lib\ext\zipfs.jar;C:\Program Files\Java\jdk1.8.0_281\jre\lib\javaws.jar;C:\Program Files\Java\jdk1.8.0_281\jre\lib\jce.jar;C:\Program Files\Java\jdk1.8.0_281\jre\lib\jfr.jar;C:\Program Files\Java\jdk1.8.0_281\jre\lib\jfxswt.jar;C:\Program Files\Java\jdk1.8.0_281\jre\lib\jsse.jar;C:\Program Files\Java\jdk1.8.0_281\jre\lib\management-agent.jar;C:\Program Files\Java\jdk1.8.0_281\jre\lib\plugin.jar;C:\Program Files\Java\jdk1.8.0_281\jre\lib\resources.jar;C:\Program Files\Java\jdk1.8.0_281\jre\lib\rt.jar;D:\danmachimod\v1.16.5\out\production\classes;D:\danmachimod\v1.16.5\out\production\resources;D:\danmachimod\v1.16.5\build\fg_cache\net\minecraftforge\forge\1.16.5-36.1.32_mapped_official_1.16.5\forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar;D:\danmachimod\v1.16.5\build\fg_cache\net\minecraftforge\forge\1.16.5-36.1.32_mapped_official_1.16.5\forge-1.16.5-36.1.32_mapped_official_1.16.5-launcher.jar;C:\Users\Jahan\.gradle\caches\forge_gradle\minecraft_repo\versions\1.16.5\client-extra.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\net.minecraftforge\mergetool\1.0.9\d1e1ba354a40b5703340b5cb02fdca489cff3646\mergetool-1.0.9-api.jar;C:\Users\Jahan\.gradle\caches\forge_gradle\mcp_repo\net\minecraft\mapping\1.16.5\mapping-1.16.5-mapping.zip;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\cpw.mods\modlauncher\8.0.9\bb848f57758808692b9108df61c909c0a961ba81\modlauncher-8.0.9.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-commons\9.0\5a34a3a9ac44f362f35d1b27932380b0031a3334\asm-commons-9.0.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-util\9.0\7c059a94ab5eed3347bf954e27fab58e52968848\asm-util-9.0.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-analysis\9.0\4630afefbb43939c739445dde0af1a5729a0fb4e\asm-analysis-9.0.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-tree\9.0\9df939f25c556b0c7efe00701d47e77a49837f24\asm-tree-9.0.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm\9.0\af582ff60bc567c42d931500c3fdc20e0141ddf9\asm-9.0.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\cpw.mods\grossjava9hacks\1.3.3\e49222512ea6cabdd8b49761cef1d5a207b1f0d9\grossjava9hacks-1.3.3.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\net.minecraftforge\accesstransformers\3.0.1\6d23c1b9cb0607fddc38d09730796f68db96f546\accesstransformers-3.0.1.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.antlr\antlr4-runtime\4.9.1\428664f05d2b7f7b7610204b5aa7c1763f62011a\antlr4-runtime-4.9.1.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\net.minecraftforge\eventbus\4.0.0\260e34800723e4c098c4e247cf2b900535e01b6d\eventbus-4.0.0.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\net.minecraftforge\forgespi\3.2.0\c6ca4e4e4a0343701407c760e642537b613b543\forgespi-3.2.0.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\net.minecraftforge\coremods\4.0.6\d6d761379c841e2610abebcbf70ed20b65f728f0\coremods-4.0.6.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\net.minecraftforge\unsafe\0.2.0\54d7a0a5e8fdb71b973025caa46f341ae5904f39\unsafe-0.2.0.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\com.electronwill.night-config\toml\3.6.3\2b05b4d606c517da4d1a7b6d2b97d751c92887d7\toml-3.6.3.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\com.electronwill.night-config\core\3.6.3\c601bfeaeb2c0abe7aaa901b0bbe6d1beff49281\core-3.6.3.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.jline\jline\3.12.1\de2bd909cb9f8eaa741bd03df4a1bd3f6eb593c7\jline-3.12.1.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.apache.maven\maven-artifact\3.6.3\f8ff8032903882376e8d000c51e3e16d20fc7df7\maven-artifact-3.6.3.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\net.jodah\typetools\0.8.3\98f84f353457629e81cc6827224871b1a8faa7af\typetools-0.8.3.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\net.minecrell\terminalconsoleappender\1.2.0\96d02cd3b384ff015a8fef4223bcb4ccf1717c95\terminalconsoleappender-1.2.0.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.11.2\6c2fb3f5b7cd27504726aef1b674b542a0c9cf53\log4j-core-2.11.2.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.11.2\f5e9a2ffca496057d6891a3de65128efc636e26e\log4j-api-2.11.2.jar;C:\Users\Jahan\.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\Jahan\.gradle\caches\modules-2\files-2.1\org.spongepowered\mixin\0.8.2\1cf212283d26f706fd3074318870bebd14d2a9ed\mixin-0.8.2.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\net.minecraftforge\nashorn-core-compat\15.1.1.1\1817deb38a5a8811148dca0d23161d92bdbd6184\nashorn-core-compat-15.1.1.1.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\com.mojang\patchy\1.2.3\e3107ca512d704a434076a153a6e1149e3787275\patchy-1.2.3.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\4.4.0\cb208278274bf12ebdb56c61bd7407e6f774d65a\jna-4.4.0.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j\66.1\72c7519b6d91f7a1f993bd44a99fe95d67211b27\icu4j-66.1.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\com.mojang\javabridge\1.0.22\6aa6453aa99a52a5cd91749da1af6ab70e082ab3\javabridge-1.0.22.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.1.25.Final\d0626cd3108294d1d58c05859add27b4ef21f83b\netty-all-4.1.25.Final.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\21.0\3a3d111be1be1b745edfa7d91678a12d7ed38709\guava-21.0.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.8.1\6505a72a097d9270f7a9e7bf42c4238283247755\commons-lang3-3.8.1.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.5\2852e6e05fbb95076fc091f6d1780f1f8fe35e0f\commons-io-2.5.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.10\4b95f4897fa13f2cd904aee711aeafc0c5295cd8\commons-codec-1.10.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\com.mojang\brigadier\1.0.17\c6b7dc51dd44379cc751b7504816006e9be4b1e6\brigadier-1.0.17.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\com.mojang\datafixerupper\4.0.26\ebd6690f33871ccee9b6132c6480668ee2e35020\datafixerupper-4.0.26.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.8.0\c4ba5371a29ac9b2ad6129b1d39ea38750043eff\gson-2.8.0.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\2.1.28\ad54da276bf59983d02d5ed16fc14541354c71fd\authlib-2.1.28.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\it.unimi.dsi\fastutil\8.2.1\5ad88f325e424f8dbc2be5459e21ea5cab3864e9\fastutil-8.2.1.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-jemalloc\3.2.2\ee8e57a79300f78294576d87c4a587f8c99402e2\lwjgl-jemalloc-3.2.2.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-openal\3.2.2\2b772a102b0a11ee5f2109a5b136f4dc7c630827\lwjgl-openal-3.2.2.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-opengl\3.2.2\6ac5bb88b44c43ea195a570aab059f63da004cd8\lwjgl-opengl-3.2.2.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-glfw\3.2.2\d3ad4df38e400b8afba1de63f84338809399df5b\lwjgl-glfw-3.2.2.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-stb\3.2.2\3b8e6ebc5851dd3d17e37e5cadce2eff2a429f0f\lwjgl-stb-3.2.2.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-tinyfd\3.2.2\fcbe606c8f8da6f8f9a05e2c540eb1ee8632b0e9\lwjgl-tinyfd-3.2.2.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl\3.2.2\8ad6294407e15780b43e84929c40e4c5e997972e\lwjgl-3.2.2.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\com.mojang\text2speech\1.11.3\f378f889797edd7df8d32272c06ca80a1b6b0f58\text2speech-1.11.3.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.codehaus.plexus\plexus-utils\3.2.1\13b015768e0d04849d2794e4c47eb02d01a0de32\plexus-utils-3.2.1.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.jline\jline-reader\3.12.1\4382ab1382c7b6f379377ed5f665dc2f6e1218bc\jline-reader-3.12.1.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.jline\jline-terminal\3.12.1\c777448314e050d980a6b697c140f3bfe9eb7416\jline-terminal-3.12.1.jar;C:\Users\Jahan\.gradle\caches\forge_gradle\deobf_dependencies\mezz\jei\jei-1.16.5\7.6.1.75_mapped_official_1.16.5\jei-1.16.5-7.6.1.75_mapped_official_1.16.5.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\cpw.mods\modlauncher\8.0.9\476a62d2a2ebd3573134b8bcd8f0bc21bbdf29ac\modlauncher-8.0.9-api.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\3.0.2\25ea2e8b0c338a877313bd4672d3fe056ea78f0d\jsr305-3.0.2.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-jemalloc\3.2.2\338b25b99da3ba5f441f6492f2ce2a9c608860ed\lwjgl-jemalloc-3.2.2-natives-windows.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-openal\3.2.2\ec20a7d42a2438528fca87e60b1705f1e2339ddb\lwjgl-openal-3.2.2-natives-windows.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-opengl\3.2.2\d8dcdc91066cae2d2d8279cb4a9f9f05d9525826\lwjgl-opengl-3.2.2-natives-windows.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-glfw\3.2.2\dc6826d636bf796b33a49038c354210e661bfc17\lwjgl-glfw-3.2.2-natives-windows.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-stb\3.2.2\811f705cbb29e8ae8d60bdf8fdd38c0c123ad3ef\lwjgl-stb-3.2.2-natives-windows.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-tinyfd\3.2.2\e9115958773644e863332a6a06488d26f9e1fc9f\lwjgl-tinyfd-3.2.2-natives-windows.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl\3.2.2\5359f3aa50d36352815fc662ea73e1c00d22170\lwjgl-3.2.2-natives-windows.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\com.mojang\text2speech\1.11.3\c0b242c0091be5acbf303263c7eeeaedd70544c7\text2speech-1.11.3-natives-windows.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\7ff832a6eb9ab6a767f1ade2b548092d0fa64795\jinput-platform-2.0.5-natives-linux.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\53f9c919f34d2ca9de8c51fc4e1e8282029a9232\jinput-platform-2.0.5-natives-osx.jar;C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput-platform\2.0.5\385ee093e01f587f30ee1c8a2ee7d408fd732e16\jinput-platform-2.0.5-natives-windows.jar" net.minecraftforge.userdev.LaunchTesting
[16:40:57] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--gameDir, ., --launchTarget, fmluserdevclient, --fml.mcpVersion, 20210115.111550, --fml.mcVersion, 1.16.5, --fml.forgeGroup, net.minecraftforge, --fml.forgeVersion, 36.1.32, --version, MOD_DEV, --assetIndex, 1.16, --assetsDir, C:\Users\Jahan\.gradle\caches\forge_gradle\assets, --username, Dev, --accessToken, ❄❄❄❄❄❄❄❄, --userProperties, {}]
[16:40:57] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 8.0.9+86+master.3cf110c starting: java version 1.8.0_281 by Oracle Corporation
[16:40:57] [main/DEBUG] [cp.mo.mo.LaunchServiceHandler/MODLAUNCHER]: Found launch services [minecraft,fmldevdata,fmldevclient,fmldevserver,fmluserdevserver,testharness,fmluserdevdata,fmlclient,fmluserdevclient,fmlserver]
[16:40:57] [main/DEBUG] [cp.mo.mo.NameMappingServiceHandler/MODLAUNCHER]: Found naming services : [srgtomcp]
[16:40:57] [main/DEBUG] [cp.mo.mo.LaunchPluginHandler/MODLAUNCHER]: Found launch plugins: [mixin,eventbus,object_holder_definalize,runtime_enum_extender,accesstransformer,capability_inject_definalize,runtimedistcleaner]
[16:40:57] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Discovering transformation services
[16:40:57] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Found additional transformation services from discovery services: []
[16:40:58] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Found transformer services : [mixin,fml]
[16:40:58] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading
[16:40:58] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loading service mixin
[16:40:58] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loaded service mixin
[16:40:58] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loading service fml
[16:40:58] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/]: Injecting tracing printstreams for STDOUT/STDERR.
[16:40:58] [main/DEBUG] [ne.mi.fm.lo.LauncherVersion/CORE]: Found FMLLauncher version 36.1
[16:40:58] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML 36.1 loading
[16:40:58] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found ModLauncher version : 8.0.9+86+master.3cf110c
[16:40:58] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Initializing modjar URL handler
[16:40:58] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found AccessTransformer version : 3.0.1+61+master.47bca0e
[16:40:58] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found EventBus version : 4.0.0+65+master.6080a3f
[16:40:58] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Found Runtime Dist Cleaner
[16:40:58] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: FML found CoreMod version : 4.0.6+14+master.c21a551
[16:40:58] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Found ForgeSPI package implementation version 3.2.0+13+master.8ddb2cc
[16:40:58] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Found ForgeSPI package specification 3
[16:41:03] [main/INFO] [ne.mi.fm.lo.FixSSL/CORE]: Added Lets Encrypt root certificates as additional trust
[16:41:03] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Loaded service fml
[16:41:03] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Configuring option handling for services
[16:41:03] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services initializing
[16:41:03] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service mixin
[16:41:03] [main/DEBUG] [mixin/]: Mixin bootstrap service org.spongepowered.asm.service.mojang.MixinServiceLaunchWrapperBootstrap is not available: LaunchWrapper is not available
[16:41:03] [main/DEBUG] [mixin/]: MixinService [ModLauncher] was successfully booted in sun.misc.Launcher$AppClassLoader@18b4aac2
[16:41:03] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.2 Source=file:/C:/Users/Jahan/.gradle/caches/modules-2/files-2.1/org.spongepowered/mixin/0.8.2/1cf212283d26f706fd3074318870bebd14d2a9ed/mixin-0.8.2.jar Service=ModLauncher Env=CLIENT
[16:41:03] [main/DEBUG] [mixin/]: Initialising Mixin Platform Manager
[16:41:03] [main/DEBUG] [mixin/]: Adding mixin platform agents for container ModLauncher Root Container(4f56a0a2)
[16:41:03] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for ModLauncher Root Container(4f56a0a2)
[16:41:03] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container ModLauncher Root Container(4f56a0a2)
[16:41:03] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for ModLauncher Root Container(4f56a0a2)
[16:41:03] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container ModLauncher Root Container(4f56a0a2)
[16:41:03] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service mixin
[16:41:03] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service fml
[16:41:03] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Setting up basic FML game directories
[16:41:03] [main/DEBUG] [ne.mi.fm.lo.FileUtils/CORE]: Found existing GAMEDIR directory : D:\danmachimod\v1.16.5\run
[16:41:03] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path GAMEDIR is D:\danmachimod\v1.16.5\run
[16:41:03] [main/DEBUG] [ne.mi.fm.lo.FileUtils/CORE]: Found existing MODSDIR directory : D:\danmachimod\v1.16.5\run\mods
[16:41:03] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path MODSDIR is D:\danmachimod\v1.16.5\run\mods
[16:41:03] [main/DEBUG] [ne.mi.fm.lo.FileUtils/CORE]: Found existing CONFIGDIR directory : D:\danmachimod\v1.16.5\run\config
[16:41:03] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path CONFIGDIR is D:\danmachimod\v1.16.5\run\config
[16:41:03] [main/DEBUG] [ne.mi.fm.lo.FMLPaths/CORE]: Path FMLCONFIG is D:\danmachimod\v1.16.5\run\config\fml.toml
[16:41:03] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Loading configuration
[16:41:04] [main/DEBUG] [ne.mi.fm.lo.FileUtils/CORE]: Found existing default config directory directory : D:\danmachimod\v1.16.5\run\defaultconfigs
[16:41:04] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Preparing ModFile
[16:41:04] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Preparing launch handler
[16:41:04] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Using fmluserdevclient as launch service
[16:41:06] [main/DEBUG] [ne.mi.fm.lo.FMLLoader/CORE]: Received command line version data  : MC Version: '1.16.5' MCP Version: '20210115.111550' Forge Version: '36.1.32' Forge group: 'net.minecraftforge'
[16:41:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR forge at path D:\danmachimod\v1.16.5\build\fg_cache\net\minecraftforge\forge\1.16.5-36.1.32_mapped_official_1.16.5\forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar
[16:41:06] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR mcdata at path C:\Users\Jahan\.gradle\caches\forge_gradle\minecraft_repo\versions\1.16.5\client-extra.jar
[16:41:06] [main/DEBUG] [ne.mi.us.FMLUserdevLaunchProvider/CORE]: Injecting maven path D:\danmachimod\v1.16.5\build\fg_cache
[16:41:06] [main/DEBUG] [ne.mi.fm.lo.FMLCommonLaunchHandler/CORE]: Got mod coordinates examplemod%%D:/danmachimod/v1.16.5\out\production\resources;examplemod%%D:/danmachimod/v1.16.5\out\production\classes from env
[16:41:06] [main/DEBUG] [ne.mi.fm.lo.FMLCommonLaunchHandler/CORE]: Found supplied mod coordinates [{examplemod=[D:\danmachimod\v1.16.5\out\production\resources, D:\danmachimod\v1.16.5\out\production\classes]}]
[16:41:07] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found 2 language providers
[16:41:07] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found language provider javafml, version 36.1
[16:41:07] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Found language provider minecraft, version 1
[16:41:07] [main/DEBUG] [ne.mi.fm.lo.LanguageLoadingProvider/CORE]: Skipping adding forge jar - javafml is already present
[16:41:07] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service fml
[16:41:07] [main/DEBUG] [cp.mo.mo.NameMappingServiceHandler/MODLAUNCHER]: Current naming domain is 'mcp'
[16:41:07] [main/DEBUG] [cp.mo.mo.NameMappingServiceHandler/MODLAUNCHER]: Identified name mapping providers {srg=srgtomcp:1234}
[16:41:07] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services begin scanning
[16:41:07] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service mixin
[16:41:07] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service mixin
[16:41:07] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service fml
[16:41:07] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Initiating mod scan
[16:41:07] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR classpath_mod at path D:\danmachimod\v1.16.5\out\production\resources
[16:41:07] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR classpath_mod at path D:\danmachimod\v1.16.5\build\fg_cache\net\minecraftforge\forge\1.16.5-36.1.32_mapped_official_1.16.5\forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar
[16:41:07] [main/DEBUG] [ne.mi.us.ClasspathLocator/CORE]: Found classpath mod: D:\danmachimod\v1.16.5\build\fg_cache\net\minecraftforge\forge\1.16.5-36.1.32_mapped_official_1.16.5\forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar
[16:41:07] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR classpath_mod at path C:\Users\Jahan\.gradle\caches\forge_gradle\deobf_dependencies\mezz\jei\jei-1.16.5\7.6.1.75_mapped_official_1.16.5\jei-1.16.5-7.6.1.75_mapped_official_1.16.5.jar
[16:41:07] [main/DEBUG] [ne.mi.us.ClasspathLocator/CORE]: Found classpath mod: C:\Users\Jahan\.gradle\caches\forge_gradle\deobf_dependencies\mezz\jei\jei-1.16.5\7.6.1.75_mapped_official_1.16.5\jei-1.16.5-7.6.1.75_mapped_official_1.16.5.jar
[16:41:07] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Program Files\Java\jdk1.8.0_281\jre\lib\charsets.jar
[16:41:07] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Program Files\Java\jdk1.8.0_281\jre\lib\deploy.jar
[16:41:07] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Program Files\Java\jdk1.8.0_281\jre\lib\javaws.jar
[16:41:07] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Program Files\Java\jdk1.8.0_281\jre\lib\jce.jar
[16:41:07] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Program Files\Java\jdk1.8.0_281\jre\lib\jfr.jar
[16:41:07] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Program Files\Java\jdk1.8.0_281\jre\lib\jfxswt.jar
[16:41:07] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Program Files\Java\jdk1.8.0_281\jre\lib\jsse.jar
[16:41:07] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Program Files\Java\jdk1.8.0_281\jre\lib\management-agent.jar
[16:41:07] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Program Files\Java\jdk1.8.0_281\jre\lib\plugin.jar
[16:41:07] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Program Files\Java\jdk1.8.0_281\jre\lib\resources.jar
[16:41:07] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Program Files\Java\jdk1.8.0_281\jre\lib\rt.jar
[16:41:07] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path D:\danmachimod\v1.16.5\build\fg_cache\net\minecraftforge\forge\1.16.5-36.1.32_mapped_official_1.16.5\forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar
[16:41:08] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path D:\danmachimod\v1.16.5\build\fg_cache\net\minecraftforge\forge\1.16.5-36.1.32_mapped_official_1.16.5\forge-1.16.5-36.1.32_mapped_official_1.16.5-launcher.jar
[16:41:08] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\forge_gradle\minecraft_repo\versions\1.16.5\client-extra.jar
[16:41:08] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\net.minecraftforge\mergetool\1.0.9\d1e1ba354a40b5703340b5cb02fdca489cff3646\mergetool-1.0.9-api.jar
[16:41:08] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\cpw.mods\modlauncher\8.0.9\bb848f57758808692b9108df61c909c0a961ba81\modlauncher-8.0.9.jar
[16:41:08] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-commons\9.0\5a34a3a9ac44f362f35d1b27932380b0031a3334\asm-commons-9.0.jar
[16:41:08] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-util\9.0\7c059a94ab5eed3347bf954e27fab58e52968848\asm-util-9.0.jar
[16:41:08] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-analysis\9.0\4630afefbb43939c739445dde0af1a5729a0fb4e\asm-analysis-9.0.jar
[16:41:08] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm-tree\9.0\9df939f25c556b0c7efe00701d47e77a49837f24\asm-tree-9.0.jar
[16:41:08] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.ow2.asm\asm\9.0\af582ff60bc567c42d931500c3fdc20e0141ddf9\asm-9.0.jar
[16:41:08] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\cpw.mods\grossjava9hacks\1.3.3\e49222512ea6cabdd8b49761cef1d5a207b1f0d9\grossjava9hacks-1.3.3.jar
[16:41:08] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\net.minecraftforge\accesstransformers\3.0.1\6d23c1b9cb0607fddc38d09730796f68db96f546\accesstransformers-3.0.1.jar
[16:41:08] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.antlr\antlr4-runtime\4.9.1\428664f05d2b7f7b7610204b5aa7c1763f62011a\antlr4-runtime-4.9.1.jar
[16:41:08] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\net.minecraftforge\eventbus\4.0.0\260e34800723e4c098c4e247cf2b900535e01b6d\eventbus-4.0.0.jar
[16:41:08] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\net.minecraftforge\forgespi\3.2.0\c6ca4e4e4a0343701407c760e642537b613b543\forgespi-3.2.0.jar
[16:41:08] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\net.minecraftforge\coremods\4.0.6\d6d761379c841e2610abebcbf70ed20b65f728f0\coremods-4.0.6.jar
[16:41:08] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\net.minecraftforge\unsafe\0.2.0\54d7a0a5e8fdb71b973025caa46f341ae5904f39\unsafe-0.2.0.jar
[16:41:08] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\com.electronwill.night-config\toml\3.6.3\2b05b4d606c517da4d1a7b6d2b97d751c92887d7\toml-3.6.3.jar
[16:41:08] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\com.electronwill.night-config\core\3.6.3\c601bfeaeb2c0abe7aaa901b0bbe6d1beff49281\core-3.6.3.jar
[16:41:08] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.jline\jline\3.12.1\de2bd909cb9f8eaa741bd03df4a1bd3f6eb593c7\jline-3.12.1.jar
[16:41:08] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.apache.maven\maven-artifact\3.6.3\f8ff8032903882376e8d000c51e3e16d20fc7df7\maven-artifact-3.6.3.jar
[16:41:08] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\net.jodah\typetools\0.8.3\98f84f353457629e81cc6827224871b1a8faa7af\typetools-0.8.3.jar
[16:41:08] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\net.minecrell\terminalconsoleappender\1.2.0\96d02cd3b384ff015a8fef4223bcb4ccf1717c95\terminalconsoleappender-1.2.0.jar
[16:41:08] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-core\2.11.2\6c2fb3f5b7cd27504726aef1b674b542a0c9cf53\log4j-core-2.11.2.jar
[16:41:08] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.apache.logging.log4j\log4j-api\2.11.2\f5e9a2ffca496057d6891a3de65128efc636e26e\log4j-api-2.11.2.jar
[16:41:08] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\net.sf.jopt-simple\jopt-simple\5.0.4\4fdac2fbe92dfad86aa6e9301736f6b4342a3f5c\jopt-simple-5.0.4.jar
[16:41:08] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.spongepowered\mixin\0.8.2\1cf212283d26f706fd3074318870bebd14d2a9ed\mixin-0.8.2.jar
[16:41:08] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\net.minecraftforge\nashorn-core-compat\15.1.1.1\1817deb38a5a8811148dca0d23161d92bdbd6184\nashorn-core-compat-15.1.1.1.jar
[16:41:08] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\com.mojang\patchy\1.2.3\e3107ca512d704a434076a153a6e1149e3787275\patchy-1.2.3.jar
[16:41:08] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\oshi-project\oshi-core\1.1\9ddf7b048a8d701be231c0f4f95fd986198fd2d8\oshi-core-1.1.jar
[16:41:08] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\jna\4.4.0\cb208278274bf12ebdb56c61bd7407e6f774d65a\jna-4.4.0.jar
[16:41:08] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\net.java.dev.jna\platform\3.4.0\e3f70017be8100d3d6923f50b3d2ee17714e9c13\platform-3.4.0.jar
[16:41:08] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\com.ibm.icu\icu4j\66.1\72c7519b6d91f7a1f993bd44a99fe95d67211b27\icu4j-66.1.jar
[16:41:08] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\com.mojang\javabridge\1.0.22\6aa6453aa99a52a5cd91749da1af6ab70e082ab3\javabridge-1.0.22.jar
[16:41:08] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\io.netty\netty-all\4.1.25.Final\d0626cd3108294d1d58c05859add27b4ef21f83b\netty-all-4.1.25.Final.jar
[16:41:08] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\com.google.guava\guava\21.0\3a3d111be1be1b745edfa7d91678a12d7ed38709\guava-21.0.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-lang3\3.8.1\6505a72a097d9270f7a9e7bf42c4238283247755\commons-lang3-3.8.1.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\commons-io\commons-io\2.5\2852e6e05fbb95076fc091f6d1780f1f8fe35e0f\commons-io-2.5.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpclient\4.3.3\18f4247ff4572a074444572cee34647c43e7c9c7\httpclient-4.3.3.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\commons-codec\commons-codec\1.10\4b95f4897fa13f2cd904aee711aeafc0c5295cd8\commons-codec-1.10.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\net.java.jinput\jinput\2.0.5\39c7796b469a600f72380316f6b1f11db6c2c7c4\jinput-2.0.5.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\net.java.jutils\jutils\1.0.0\e12fe1fda814bd348c1579329c86943d2cd3c6a6\jutils-1.0.0.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\com.mojang\brigadier\1.0.17\c6b7dc51dd44379cc751b7504816006e9be4b1e6\brigadier-1.0.17.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\com.mojang\datafixerupper\4.0.26\ebd6690f33871ccee9b6132c6480668ee2e35020\datafixerupper-4.0.26.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\com.google.code.gson\gson\2.8.0\c4ba5371a29ac9b2ad6129b1d39ea38750043eff\gson-2.8.0.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\com.mojang\authlib\2.1.28\ad54da276bf59983d02d5ed16fc14541354c71fd\authlib-2.1.28.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.apache.commons\commons-compress\1.8.1\a698750c16740fd5b3871425f4cb3bbaa87f529d\commons-compress-1.8.1.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\commons-logging\commons-logging\1.1.3\f6f66e966c70a83ffbdb6f17a0919eaf7c8aca7f\commons-logging-1.1.3.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.apache.httpcomponents\httpcore\4.3.2\31fbbff1ddbf98f3aa7377c94d33b0447c646b6e\httpcore-4.3.2.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\it.unimi.dsi\fastutil\8.2.1\5ad88f325e424f8dbc2be5459e21ea5cab3864e9\fastutil-8.2.1.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-jemalloc\3.2.2\ee8e57a79300f78294576d87c4a587f8c99402e2\lwjgl-jemalloc-3.2.2.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-openal\3.2.2\2b772a102b0a11ee5f2109a5b136f4dc7c630827\lwjgl-openal-3.2.2.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-opengl\3.2.2\6ac5bb88b44c43ea195a570aab059f63da004cd8\lwjgl-opengl-3.2.2.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-glfw\3.2.2\d3ad4df38e400b8afba1de63f84338809399df5b\lwjgl-glfw-3.2.2.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-stb\3.2.2\3b8e6ebc5851dd3d17e37e5cadce2eff2a429f0f\lwjgl-stb-3.2.2.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-tinyfd\3.2.2\fcbe606c8f8da6f8f9a05e2c540eb1ee8632b0e9\lwjgl-tinyfd-3.2.2.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl\3.2.2\8ad6294407e15780b43e84929c40e4c5e997972e\lwjgl-3.2.2.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\com.mojang\text2speech\1.11.3\f378f889797edd7df8d32272c06ca80a1b6b0f58\text2speech-1.11.3.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.codehaus.plexus\plexus-utils\3.2.1\13b015768e0d04849d2794e4c47eb02d01a0de32\plexus-utils-3.2.1.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.jline\jline-reader\3.12.1\4382ab1382c7b6f379377ed5f665dc2f6e1218bc\jline-reader-3.12.1.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.jline\jline-terminal\3.12.1\c777448314e050d980a6b697c140f3bfe9eb7416\jline-terminal-3.12.1.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\forge_gradle\deobf_dependencies\mezz\jei\jei-1.16.5\7.6.1.75_mapped_official_1.16.5\jei-1.16.5-7.6.1.75_mapped_official_1.16.5.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\cpw.mods\modlauncher\8.0.9\476a62d2a2ebd3573134b8bcd8f0bc21bbdf29ac\modlauncher-8.0.9-api.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\com.google.code.findbugs\jsr305\3.0.2\25ea2e8b0c338a877313bd4672d3fe056ea78f0d\jsr305-3.0.2.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-jemalloc\3.2.2\338b25b99da3ba5f441f6492f2ce2a9c608860ed\lwjgl-jemalloc-3.2.2-natives-windows.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-openal\3.2.2\ec20a7d42a2438528fca87e60b1705f1e2339ddb\lwjgl-openal-3.2.2-natives-windows.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-opengl\3.2.2\d8dcdc91066cae2d2d8279cb4a9f9f05d9525826\lwjgl-opengl-3.2.2-natives-windows.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-glfw\3.2.2\dc6826d636bf796b33a49038c354210e661bfc17\lwjgl-glfw-3.2.2-natives-windows.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-stb\3.2.2\811f705cbb29e8ae8d60bdf8fdd38c0c123ad3ef\lwjgl-stb-3.2.2-natives-windows.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl-tinyfd\3.2.2\e9115958773644e863332a6a06488d26f9e1fc9f\lwjgl-tinyfd-3.2.2-natives-windows.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\org.lwjgl\lwjgl\3.2.2\5359f3aa50d36352815fc662ea73e1c00d22170\lwjgl-3.2.2-natives-windows.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path C:\Users\Jahan\.gradle\caches\modules-2\files-2.1\com.mojang\text2speech\1.11.3\c0b242c0091be5acbf303263c7eeeaedd70544c7\text2speech-1.11.3-natives-windows.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.LibraryFinder/CORE]: Found JAR manifest_jar at path D:\Apps\JetBrains\IntelliJ IDEA 2021.2.1\lib\idea_rt.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.mo.ModListHandler/CORE]: Found mod coordinates from lists: []
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.mo.ModDiscoverer/CORE]: Found Mod Locators : (userdev classpath:null),(mods folder:null),(maven libs:null),(exploded directory:null),(minecraft:null)
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.mo.ExplodedDirectoryLocator/LOADING]: Found exploded directory mod manifest at D:\danmachimod\v1.16.5\out\production\resources\META-INF\mods.toml
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate D:\danmachimod\v1.16.5\build\fg_cache\net\minecraftforge\forge\1.16.5-36.1.32_mapped_official_1.16.5\forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar
[16:41:09] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar with {forge} mods - versions {36.1.32}
[16:41:10] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Loading mod file D:\danmachimod\v1.16.5\build\fg_cache\net\minecraftforge\forge\1.16.5-36.1.32_mapped_official_1.16.5\forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar with language javafml
[16:41:10] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Found coremod fieldtomethodtransformers with Javascript path META-INF/fieldtomethodtransformers.js
[16:41:10] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Found coremod field_to_instanceof with Javascript path coremods/field_to_instanceof.js
[16:41:10] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Found coremod add_bouncer_method with Javascript path coremods/add_bouncer_method.js
[16:41:10] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Found coremod META-INF/fieldtomethodtransformers.js
[16:41:10] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Found coremod coremods/field_to_instanceof.js
[16:41:10] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Found coremod coremods/add_bouncer_method.js
[16:41:10] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\Jahan\.gradle\caches\forge_gradle\deobf_dependencies\mezz\jei\jei-1.16.5\7.6.1.75_mapped_official_1.16.5\jei-1.16.5-7.6.1.75_mapped_official_1.16.5.jar
[16:41:10] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file jei-1.16.5-7.6.1.75_mapped_official_1.16.5.jar with {jei} mods - versions {7.6.1.75}
[16:41:10] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Loading mod file C:\Users\Jahan\.gradle\caches\forge_gradle\deobf_dependencies\mezz\jei\jei-1.16.5\7.6.1.75_mapped_official_1.16.5\jei-1.16.5-7.6.1.75_mapped_official_1.16.5.jar with language javafml
[16:41:10] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate D:\danmachimod\v1.16.5\out\production\resources
[16:41:10] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file resources with {danmachi} mods - versions {1.0.0}
[16:41:10] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Loading mod file D:\danmachimod\v1.16.5\out\production\resources with language javafml
[16:41:10] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Considering mod file candidate C:\Users\Jahan\.gradle\caches\forge_gradle\minecraft_repo\versions\1.16.5\client-extra.jar
[16:41:10] [main/DEBUG] [ne.mi.fm.lo.mo.ModFileInfo/LOADING]: Found valid mod file client-extra.jar with {minecraft} mods - versions {1.16.5}
[16:41:11] [main/DEBUG] [ne.mi.fm.lo.mo.ModFile/LOADING]: Loading mod file C:\Users\Jahan\.gradle\caches\forge_gradle\minecraft_repo\versions\1.16.5\client-extra.jar with language minecraft
[16:41:11] [main/DEBUG] [ne.mi.fm.lo.ModSorter/LOADING]: Found 2 mod requirements (2 mandatory, 0 optional)
[16:41:11] [main/DEBUG] [ne.mi.fm.lo.ModSorter/LOADING]: Found 0 mod requirements missing (0 mandatory, 0 optional)
[16:41:13] [main/DEBUG] [ne.mi.us.MCPNamingService/CORE]: Loaded 23212 method mappings from methods.csv
[16:41:13] [main/DEBUG] [ne.mi.us.MCPNamingService/CORE]: Loaded 19841 field mappings from fields.csv
[16:41:13] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service fml
[16:41:13] [main/DEBUG] [cp.mo.mo.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading transformers
[16:41:13] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service mixin
[16:41:13] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service mixin
[16:41:13] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service fml
[16:41:13] [main/DEBUG] [ne.mi.fm.lo.FMLServiceProvider/CORE]: Loading coremod transformers
[16:41:13] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: Loading CoreMod from META-INF/fieldtomethodtransformers.js
[16:41:14] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: CoreMod loaded successfully
[16:41:14] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_instanceof.js
[16:41:14] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: CoreMod loaded successfully
[16:41:14] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: Loading CoreMod from coremods/add_bouncer_method.js
[16:41:14] [main/DEBUG] [ne.mi.co.CoreModEngine/COREMOD]: CoreMod loaded successfully
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@3e7dfd44 to Target : METHOD {Lnet/minecraft/client/entity/player/AbstractClientPlayerEntity;} {getFieldOfViewModifier} {()F}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@773e2eb5 to Target : METHOD {Lnet/minecraft/client/renderer/FirstPersonRenderer;} {renderHandsWithItems} {(FLcom/mojang/blaze3d/matrix/MatrixStack;Lnet/minecraft/client/renderer/IRenderTypeBuffer$Impl;Lnet/minecraft/client/entity/player/ClientPlayerEntity;I)V}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@d8948cd to Target : METHOD {Lnet/minecraft/client/renderer/entity/model/SkeletonModel;} {prepareMobModel} {(Lnet/minecraft/entity/MobEntity;FFF)V}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@1436a7ab to Target : METHOD {Lnet/minecraft/client/renderer/entity/model/SkeletonModel;} {setupAnim} {(Lnet/minecraft/entity/MobEntity;FFFFF)V}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@3b7b05a8 to Target : METHOD {Lnet/minecraft/entity/monster/AbstractSkeletonEntity;} {canFireProjectileWeapon} {(Lnet/minecraft/item/ShootableItem;)Z}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@3d36dff4 to Target : METHOD {Lnet/minecraft/entity/monster/AbstractSkeletonEntity;} {reassessWeaponGoal} {()V}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@7abe27bf to Target : METHOD {Lnet/minecraft/client/renderer/FirstPersonRenderer;} {renderHandsWithItems} {(FLcom/mojang/blaze3d/matrix/MatrixStack;Lnet/minecraft/client/renderer/IRenderTypeBuffer$Impl;Lnet/minecraft/client/entity/player/ClientPlayerEntity;I)V}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@5b94ccbc to Target : METHOD {Lnet/minecraft/client/renderer/FirstPersonRenderer;} {renderArmWithItem} {(Lnet/minecraft/client/entity/player/AbstractClientPlayerEntity;FFLnet/minecraft/util/Hand;FLnet/minecraft/item/ItemStack;FLcom/mojang/blaze3d/matrix/MatrixStack;Lnet/minecraft/client/renderer/IRenderTypeBuffer;I)V}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@38a1c423 to Target : METHOD {Lnet/minecraft/client/renderer/entity/PlayerRenderer;} {getArmPose} {(Lnet/minecraft/client/entity/player/AbstractClientPlayerEntity;Lnet/minecraft/util/Hand;)Lnet/minecraft/client/renderer/entity/model/BipedModel$ArmPose;}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@336365bc to Target : METHOD {Lnet/minecraft/entity/monster/PillagerEntity;} {canFireProjectileWeapon} {(Lnet/minecraft/item/ShootableItem;)Z}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@38eb2fb0 to Target : METHOD {Lnet/minecraft/entity/monster/PillagerEntity;} {enchantSpawnedWeapon} {(F)V}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@4567e53d to Target : METHOD {Lnet/minecraft/entity/monster/piglin/PiglinEntity;} {canReplaceCurrentItem} {(Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;)Z}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@7351a16e to Target : METHOD {Lnet/minecraft/entity/monster/piglin/PiglinEntity;} {canFireProjectileWeapon} {(Lnet/minecraft/item/ShootableItem;)Z}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@5bb7643d to Target : METHOD {Lnet/minecraft/item/CrossbowItem;} {getShootingPower} {(Lnet/minecraft/item/ItemStack;)F}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@3ac04654 to Target : METHOD {Lnet/minecraft/item/Item;} {useOnRelease} {(Lnet/minecraft/item/ItemStack;)Z}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@4074023c to Target : METHOD {Lnet/minecraft/client/renderer/FirstPersonRenderer;} {renderArmWithItem} {(Lnet/minecraft/client/entity/player/AbstractClientPlayerEntity;FFLnet/minecraft/util/Hand;FLnet/minecraft/item/ItemStack;FLcom/mojang/blaze3d/matrix/MatrixStack;Lnet/minecraft/client/renderer/IRenderTypeBuffer;I)V}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@3ed0918d to Target : METHOD {Lnet/minecraft/entity/item/ItemFrameEntity;} {removeFramedMap} {(Lnet/minecraft/item/ItemStack;)V}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@5e268ce6 to Target : METHOD {Lnet/minecraft/inventory/container/CartographyContainer$3;} {mayPlace} {(Lnet/minecraft/item/ItemStack;)Z}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@66ec9390 to Target : METHOD {Lnet/minecraft/inventory/container/CartographyContainer;} {quickMoveStack} {(Lnet/minecraft/entity/player/PlayerEntity;I)Lnet/minecraft/item/ItemStack;}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@6e91893 to Target : METHOD {Lnet/minecraft/item/ItemStack;} {getTooltipLines} {(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/client/util/ITooltipFlag;)Ljava/util/List;}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@3c0fbd3a to Target : METHOD {Lnet/minecraft/client/renderer/entity/FishRenderer;} {render} {(Lnet/minecraft/entity/projectile/FishingBobberEntity;FFLcom/mojang/blaze3d/matrix/MatrixStack;Lnet/minecraft/client/renderer/IRenderTypeBuffer;I)V}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@562457e1 to Target : METHOD {Lnet/minecraft/entity/projectile/FishingBobberEntity;} {shouldStopFishing} {(Lnet/minecraft/entity/player/PlayerEntity;)Z}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@54562ea6 to Target : METHOD {Lnet/minecraft/block/BeehiveBlock;} {use} {(Lnet/minecraft/block/BlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/util/Hand;Lnet/minecraft/util/math/BlockRayTraceResult;)Lnet/minecraft/util/ActionResultType;}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@1a35993f to Target : METHOD {Lnet/minecraft/block/PumpkinBlock;} {use} {(Lnet/minecraft/block/BlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/util/Hand;Lnet/minecraft/util/math/BlockRayTraceResult;)Lnet/minecraft/util/ActionResultType;}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@5b12012e to Target : METHOD {Lnet/minecraft/block/TripWireBlock;} {playerWillDestroy} {(Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/BlockState;Lnet/minecraft/entity/player/PlayerEntity;)V}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@2f7dcef2 to Target : METHOD {Lnet/minecraft/enchantment/EfficiencyEnchantment;} {canEnchant} {(Lnet/minecraft/item/ItemStack;)Z}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@4a3be6a5 to Target : METHOD {Lnet/minecraft/entity/passive/MooshroomEntity;} {mobInteract} {(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/util/Hand;)Lnet/minecraft/util/ActionResultType;}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@7cf162bc to Target : METHOD {Lnet/minecraft/entity/passive/SheepEntity;} {mobInteract} {(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/util/Hand;)Lnet/minecraft/util/ActionResultType;}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModMethodTransformer@3721177d to Target : METHOD {Lnet/minecraft/entity/passive/SnowGolemEntity;} {mobInteract} {(Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/util/Hand;)Lnet/minecraft/util/ActionResultType;}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@63718b93 to Target : CLASS {Lnet/minecraft/potion/EffectInstance;} {} {V}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@14e2e1c3 to Target : CLASS {Lnet/minecraft/block/FlowingFluidBlock;} {} {V}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@2b4786dd to Target : CLASS {Lnet/minecraft/item/BucketItem;} {} {V}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@f202d6d to Target : CLASS {Lnet/minecraft/block/StairsBlock;} {} {V}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@60e21209 to Target : CLASS {Lnet/minecraft/block/FlowerPotBlock;} {} {V}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@630d1b2f to Target : CLASS {Lnet/minecraft/item/FishBucketItem;} {} {V}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@746b18fd to Target : CLASS {Lnet/minecraft/item/ItemStack;} {} {V}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@7a2e0858 to Target : CLASS {Lnet/minecraft/network/play/client/CClientSettingsPacket;} {} {V}
[16:41:14] [main/DEBUG] [cp.mo.mo.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service fml
[16:41:15] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(4f56a0a2)]
[16:41:15] [main/DEBUG] [mixin/]: Processing launch tasks for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(4f56a0a2)]
[16:41:15] [main/DEBUG] [mixin/]: Adding mixin platform agents for container ContainerHandleModLauncher.Resource(client-extra.jar:C:\Users\Jahan\.gradle\caches\forge_gradle\minecraft_repo\versions\1.16.5\client-extra.jar)
[16:41:15] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for ContainerHandleModLauncher.Resource(client-extra.jar:C:\Users\Jahan\.gradle\caches\forge_gradle\minecraft_repo\versions\1.16.5\client-extra.jar)
[16:41:15] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container ContainerHandleModLauncher.Resource(client-extra.jar:C:\Users\Jahan\.gradle\caches\forge_gradle\minecraft_repo\versions\1.16.5\client-extra.jar)
[16:41:15] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for ContainerHandleModLauncher.Resource(client-extra.jar:C:\Users\Jahan\.gradle\caches\forge_gradle\minecraft_repo\versions\1.16.5\client-extra.jar)
[16:41:15] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container ContainerHandleModLauncher.Resource(client-extra.jar:C:\Users\Jahan\.gradle\caches\forge_gradle\minecraft_repo\versions\1.16.5\client-extra.jar)
[16:41:15] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ContainerHandleModLauncher.Resource(client-extra.jar:C:\Users\Jahan\.gradle\caches\forge_gradle\minecraft_repo\versions\1.16.5\client-extra.jar)]
[16:41:15] [main/DEBUG] [mixin/]: Adding mixin platform agents for container ContainerHandleModLauncher.Resource(forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:D:\danmachimod\v1.16.5\build\fg_cache\net\minecraftforge\forge\1.16.5-36.1.32_mapped_official_1.16.5\forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar)
[16:41:15] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for ContainerHandleModLauncher.Resource(forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:D:\danmachimod\v1.16.5\build\fg_cache\net\minecraftforge\forge\1.16.5-36.1.32_mapped_official_1.16.5\forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar)
[16:41:15] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container ContainerHandleModLauncher.Resource(forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:D:\danmachimod\v1.16.5\build\fg_cache\net\minecraftforge\forge\1.16.5-36.1.32_mapped_official_1.16.5\forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar)
[16:41:15] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for ContainerHandleModLauncher.Resource(forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:D:\danmachimod\v1.16.5\build\fg_cache\net\minecraftforge\forge\1.16.5-36.1.32_mapped_official_1.16.5\forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar)
[16:41:15] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container ContainerHandleModLauncher.Resource(forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:D:\danmachimod\v1.16.5\build\fg_cache\net\minecraftforge\forge\1.16.5-36.1.32_mapped_official_1.16.5\forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar)
[16:41:15] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ContainerHandleModLauncher.Resource(forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:D:\danmachimod\v1.16.5\build\fg_cache\net\minecraftforge\forge\1.16.5-36.1.32_mapped_official_1.16.5\forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar)]
[16:41:15] [main/DEBUG] [mixin/]: Adding mixin platform agents for container ContainerHandleModLauncher.Resource(resources:D:\danmachimod\v1.16.5\out\production\resources)
[16:41:15] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for ContainerHandleModLauncher.Resource(resources:D:\danmachimod\v1.16.5\out\production\resources)
[16:41:15] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container ContainerHandleModLauncher.Resource(resources:D:\danmachimod\v1.16.5\out\production\resources)
[16:41:15] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for ContainerHandleModLauncher.Resource(resources:D:\danmachimod\v1.16.5\out\production\resources)
[16:41:15] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container ContainerHandleModLauncher.Resource(resources:D:\danmachimod\v1.16.5\out\production\resources)
[16:41:15] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ContainerHandleModLauncher.Resource(resources:D:\danmachimod\v1.16.5\out\production\resources)]
[16:41:15] [main/DEBUG] [mixin/]: Adding mixin platform agents for container ContainerHandleModLauncher.Resource(jei-1.16.5-7.6.1.75_mapped_official_1.16.5.jar:C:\Users\Jahan\.gradle\caches\forge_gradle\deobf_dependencies\mezz\jei\jei-1.16.5\7.6.1.75_mapped_official_1.16.5\jei-1.16.5-7.6.1.75_mapped_official_1.16.5.jar)
[16:41:15] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for ContainerHandleModLauncher.Resource(jei-1.16.5-7.6.1.75_mapped_official_1.16.5.jar:C:\Users\Jahan\.gradle\caches\forge_gradle\deobf_dependencies\mezz\jei\jei-1.16.5\7.6.1.75_mapped_official_1.16.5\jei-1.16.5-7.6.1.75_mapped_official_1.16.5.jar)
[16:41:15] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container ContainerHandleModLauncher.Resource(jei-1.16.5-7.6.1.75_mapped_official_1.16.5.jar:C:\Users\Jahan\.gradle\caches\forge_gradle\deobf_dependencies\mezz\jei\jei-1.16.5\7.6.1.75_mapped_official_1.16.5\jei-1.16.5-7.6.1.75_mapped_official_1.16.5.jar)
[16:41:15] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for ContainerHandleModLauncher.Resource(jei-1.16.5-7.6.1.75_mapped_official_1.16.5.jar:C:\Users\Jahan\.gradle\caches\forge_gradle\deobf_dependencies\mezz\jei\jei-1.16.5\7.6.1.75_mapped_official_1.16.5\jei-1.16.5-7.6.1.75_mapped_official_1.16.5.jar)
[16:41:15] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container ContainerHandleModLauncher.Resource(jei-1.16.5-7.6.1.75_mapped_official_1.16.5.jar:C:\Users\Jahan\.gradle\caches\forge_gradle\deobf_dependencies\mezz\jei\jei-1.16.5\7.6.1.75_mapped_official_1.16.5\jei-1.16.5-7.6.1.75_mapped_official_1.16.5.jar)
[16:41:15] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ContainerHandleModLauncher.Resource(jei-1.16.5-7.6.1.75_mapped_official_1.16.5.jar:C:\Users\Jahan\.gradle\caches\forge_gradle\deobf_dependencies\mezz\jei\jei-1.16.5\7.6.1.75_mapped_official_1.16.5\jei-1.16.5-7.6.1.75_mapped_official_1.16.5.jar)]
[16:41:15] [main/DEBUG] [mixin/]: inject() running with 5 agents
[16:41:15] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(4f56a0a2)]
[16:41:15] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:ContainerHandleModLauncher.Resource(client-extra.jar:C:\Users\Jahan\.gradle\caches\forge_gradle\minecraft_repo\versions\1.16.5\client-extra.jar)]
[16:41:15] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:ContainerHandleModLauncher.Resource(forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:D:\danmachimod\v1.16.5\build\fg_cache\net\minecraftforge\forge\1.16.5-36.1.32_mapped_official_1.16.5\forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar)]
[16:41:15] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:ContainerHandleModLauncher.Resource(resources:D:\danmachimod\v1.16.5\out\production\resources)]
[16:41:15] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:ContainerHandleModLauncher.Resource(jei-1.16.5-7.6.1.75_mapped_official_1.16.5.jar:C:\Users\Jahan\.gradle\caches\forge_gradle\deobf_dependencies\mezz\jei\jei-1.16.5\7.6.1.75_mapped_official_1.16.5\jei-1.16.5-7.6.1.75_mapped_official_1.16.5.jar)]
[16:41:15] [main/INFO] [cp.mo.mo.LaunchServiceHandler/MODLAUNCHER]: Launching target 'fmluserdevclient' with arguments [--version, MOD_DEV, --gameDir, ., --assetsDir, C:\Users\Jahan\.gradle\caches\forge_gradle\assets, --assetIndex, 1.16, --username, Dev, --accessToken, ❄❄❄❄❄❄❄❄, --userProperties, {}]
[16:41:15] [main/DEBUG] [ne.mi.us.FMLUserdevClientLaunchProvider/CORE]: Launching minecraft in cpw.mods.modlauncher.TransformingClassLoader@3bb8aabc with arguments [--version, MOD_DEV, --gameDir, ., --assetsDir, C:\Users\Jahan\.gradle\caches\forge_gradle\assets, --assetIndex, 1.16, --username, Dev, --accessToken, DONT_CRASH, --userProperties, {}]
[16:41:15] [main/DEBUG] [mixin/]: Error cleaning class output directory: .mixin.out\class: failed to delete one or more files; see suppressed exceptions for details
[16:41:15] [main/DEBUG] [mixin/]: Preparing mixins for MixinEnvironment[DEFAULT]
[16:41:19] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming useOnRelease with desc (Lnet/minecraft/item/ItemStack;)Z
[16:41:19] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/block/FlowingFluidBlock
[16:41:20] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/block/StairsBlock
[16:41:20] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming use with desc (Lnet/minecraft/block/BlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/util/Hand;Lnet/minecraft/util/math/BlockRayTraceResult;)Lnet/minecraft/util/ActionResultType;
[16:41:21] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming playerWillDestroy with desc (Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/block/BlockState;Lnet/minecraft/entity/player/PlayerEntity;)V
[16:41:21] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/block/FlowerPotBlock
[16:41:22] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming use with desc (Lnet/minecraft/block/BlockState;Lnet/minecraft/world/World;Lnet/minecraft/util/math/BlockPos;Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/util/Hand;Lnet/minecraft/util/math/BlockRayTraceResult;)Lnet/minecraft/util/ActionResultType;
[16:41:25] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming mobInteract with desc (Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/util/Hand;)Lnet/minecraft/util/ActionResultType;
[16:41:27] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming quickMoveStack with desc (Lnet/minecraft/entity/player/PlayerEntity;I)Lnet/minecraft/item/ItemStack;
[16:41:34] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming getTooltipLines with desc (Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/client/util/ITooltipFlag;)Ljava/util/List;
[16:41:34] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/item/ItemStack
[16:41:34] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming removeFramedMap with desc (Lnet/minecraft/item/ItemStack;)V
[16:41:35] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming mobInteract with desc (Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/util/Hand;)Lnet/minecraft/util/ActionResultType;
[16:41:35] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming canFireProjectileWeapon with desc (Lnet/minecraft/item/ShootableItem;)Z
[16:41:35] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming canReplaceCurrentItem with desc (Lnet/minecraft/item/ItemStack;Lnet/minecraft/item/ItemStack;)Z
[16:41:36] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming canFireProjectileWeapon with desc (Lnet/minecraft/item/ShootableItem;)Z
[16:41:36] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming enchantSpawnedWeapon with desc (F)V
[16:41:36] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming mobInteract with desc (Lnet/minecraft/entity/player/PlayerEntity;Lnet/minecraft/util/Hand;)Lnet/minecraft/util/ActionResultType;
[16:41:36] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming reassessWeaponGoal with desc ()V
[16:41:36] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming canFireProjectileWeapon with desc (Lnet/minecraft/item/ShootableItem;)Z
[16:41:42] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming canEnchant with desc (Lnet/minecraft/item/ItemStack;)Z
[16:41:43] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/item/BucketItem
[16:41:43] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/item/FishBucketItem
[16:41:43] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming getShootingPower with desc (Lnet/minecraft/item/ItemStack;)F
[16:41:45] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/potion/EffectInstance
[16:41:45] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming shouldStopFishing with desc (Lnet/minecraft/entity/player/PlayerEntity;)Z
[16:41:45] [pool-3-thread-1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming mayPlace with desc (Lnet/minecraft/item/ItemStack;)Z
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Creating vanilla freeze snapshot
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Block Sync: VANILLA -> ACTIVE
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Fluid Sync: VANILLA -> ACTIVE
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item Sync: VANILLA -> ACTIVE
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Effect Sync: VANILLA -> ACTIVE
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry SoundEvent Sync: VANILLA -> ACTIVE
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Potion Sync: VANILLA -> ACTIVE
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Enchantment Sync: VANILLA -> ACTIVE
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry EntityType Sync: VANILLA -> ACTIVE
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry TileEntityType Sync: VANILLA -> ACTIVE
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry ParticleType Sync: VANILLA -> ACTIVE
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry ContainerType Sync: VANILLA -> ACTIVE
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry PaintingType Sync: VANILLA -> ACTIVE
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry IRecipeSerializer Sync: VANILLA -> ACTIVE
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Attribute Sync: VANILLA -> ACTIVE
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry StatType Sync: VANILLA -> ACTIVE
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry VillagerProfession Sync: VANILLA -> ACTIVE
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry PointOfInterestType Sync: VANILLA -> ACTIVE
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry MemoryModuleType Sync: VANILLA -> ACTIVE
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry SensorType Sync: VANILLA -> ACTIVE
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Schedule Sync: VANILLA -> ACTIVE
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Activity Sync: VANILLA -> ACTIVE
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry WorldCarver Sync: VANILLA -> ACTIVE
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry SurfaceBuilder Sync: VANILLA -> ACTIVE
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Feature Sync: VANILLA -> ACTIVE
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Placement Sync: VANILLA -> ACTIVE
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry ChunkStatus Sync: VANILLA -> ACTIVE
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Structure Sync: VANILLA -> ACTIVE
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry BlockStateProviderType Sync: VANILLA -> ACTIVE
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry BlockPlacerType Sync: VANILLA -> ACTIVE
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry FoliagePlacerType Sync: VANILLA -> ACTIVE
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry TreeDecoratorType Sync: VANILLA -> ACTIVE
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Biome Sync: VANILLA -> ACTIVE
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry DataSerializerEntry Sync: VANILLA -> ACTIVE
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry GlobalLootModifierSerializer Sync: VANILLA -> ACTIVE
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry ForgeWorldType Sync: VANILLA -> ACTIVE
[16:41:48] [pool-3-thread-1/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Vanilla freeze snapshot created
[16:41:49] [Render thread/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming getFieldOfViewModifier with desc ()F
[16:41:51] [Render thread/INFO] [mojang/YggdrasilAuthenticationService]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[16:41:53] [Render thread/ERROR] [minecraft/Minecraft]: Failed to verify authentication
com.mojang.authlib.exceptions.AuthenticationUnavailableException: null
	at com.mojang.authlib.yggdrasil.YggdrasilSocialInteractionsService.checkPrivileges(YggdrasilSocialInteractionsService.java:97) ~[authlib-2.1.28.jar:?] {}
	at com.mojang.authlib.yggdrasil.YggdrasilSocialInteractionsService.<init>(YggdrasilSocialInteractionsService.java:40) ~[authlib-2.1.28.jar:?] {}
	at com.mojang.authlib.yggdrasil.YggdrasilAuthenticationService.createSocialInteractionsService(YggdrasilAuthenticationService.java:152) ~[authlib-2.1.28.jar:?] {re:classloading}
	at net.minecraft.client.Minecraft.createSocialInteractions(Minecraft.java:551) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.<init>(Minecraft.java:383) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:149) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:41:53] [Render thread/INFO] [minecraft/Minecraft]: Setting user: Dev
[16:41:56] [Render thread/INFO] [minecraft/Minecraft]: Backend library: LWJGL version 3.2.2 build 10
[16:42:19] [Render thread/DEBUG] [ne.mi.fm.ForgeI18n/CORE]: Loading I18N data entries: 4980
[16:42:21] [Render thread/DEBUG] [ne.mi.fm.ModLoader/CORE]: Loading Network data for FML net version: FML2
[16:42:21] [Render thread/DEBUG] [ne.mi.fm.ModWorkManager/LOADING]: Using 8 threads for parallel mod-loading
[16:42:21] [Render thread/DEBUG] [ne.mi.fm.ja.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3bb8aabc - got cpw.mods.modlauncher.TransformingClassLoader@3bb8aabc
[16:42:21] [Render thread/DEBUG] [ne.mi.fm.ja.FMLModContainer/LOADING]: Creating FMLModContainer instance for net.minecraftforge.common.ForgeMod with classLoader cpw.mods.modlauncher.TransformingClassLoader@3bb8aabc & cpw.mods.modlauncher.TransformingClassLoader@3bb8aabc
[16:42:22] [Render thread/DEBUG] [ne.mi.fm.ja.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3bb8aabc - got cpw.mods.modlauncher.TransformingClassLoader@3bb8aabc
[16:42:22] [Render thread/DEBUG] [ne.mi.fm.ja.FMLModContainer/LOADING]: Creating FMLModContainer instance for imnotjahan.mod.danmachi.Main with classLoader cpw.mods.modlauncher.TransformingClassLoader@3bb8aabc & cpw.mods.modlauncher.TransformingClassLoader@3bb8aabc
[16:42:22] [Render thread/DEBUG] [ne.mi.fm.ja.FMLJavaModLanguageProvider/LOADING]: Loading FMLModContainer from classloader cpw.mods.modlauncher.TransformingClassLoader@3bb8aabc - got cpw.mods.modlauncher.TransformingClassLoader@3bb8aabc
[16:42:22] [Render thread/DEBUG] [ne.mi.fm.ja.FMLModContainer/LOADING]: Creating FMLModContainer instance for mezz.jei.JustEnoughItems with classLoader cpw.mods.modlauncher.TransformingClassLoader@3bb8aabc & cpw.mods.modlauncher.TransformingClassLoader@3bb8aabc
[16:42:22] [modloading-worker-3/DEBUG] [ne.mi.ve.fo.ForgeVersion/CORE]: Forge Version package package net.minecraftforge.versions.forge, Forge, version 36.1 from cpw.mods.modlauncher.TransformingClassLoader@3bb8aabc
[16:42:22] [modloading-worker-3/DEBUG] [ne.mi.ve.fo.ForgeVersion/CORE]: Found Forge version 36.1.32
[16:42:22] [modloading-worker-3/DEBUG] [ne.mi.ve.fo.ForgeVersion/CORE]: Found Forge spec 36.1
[16:42:22] [modloading-worker-3/DEBUG] [ne.mi.ve.fo.ForgeVersion/CORE]: Found Forge group net.minecraftforge
[16:42:22] [modloading-worker-3/DEBUG] [ne.mi.ve.mc.MCPVersion/CORE]: Found MC version information 1.16.5
[16:42:22] [modloading-worker-3/DEBUG] [ne.mi.ve.mc.MCPVersion/CORE]: Found MCP version information 20210115.111550
[16:42:22] [modloading-worker-3/INFO] [ne.mi.co.ForgeMod/FORGEMOD]: Forge mod loading, version 36.1.32, for MC 1.16.5 with MCP 20210115.111550
[16:42:22] [modloading-worker-3/INFO] [ne.mi.co.MinecraftForge/FORGE]: MinecraftForge v36.1.32 Initialized
[16:42:23] [modloading-worker-1/DEBUG] [ne.mi.fm.co.ConfigTracker/CONFIG]: Config file jei-client.toml for jei tracking
[16:42:23] [modloading-worker-3/DEBUG] [ne.mi.fm.co.ConfigTracker/CONFIG]: Config file forge-client.toml for forge tracking
[16:42:23] [modloading-worker-3/DEBUG] [ne.mi.fm.co.ConfigTracker/CONFIG]: Config file forge-server.toml for forge tracking
[16:42:23] [modloading-worker-3/DEBUG] [ne.mi.fm.co.ConfigTracker/CONFIG]: Config file forge-common.toml for forge tracking
[16:42:23] [modloading-worker-1/DEBUG] [ne.mi.fm.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for jei
[16:42:23] [modloading-worker-1/DEBUG] [ne.mi.fm.AutomaticEventSubscriber/LOADING]: Auto-subscribing mezz.jei.vote.GoVoteHandler to FORGE
[16:42:23] [modloading-worker-3/DEBUG] [ne.mi.fm.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for forge
[16:42:23] [modloading-worker-3/DEBUG] [ne.mi.fm.AutomaticEventSubscriber/LOADING]: Auto-subscribing net.minecraftforge.client.model.ModelDataManager to FORGE
[16:42:26] [modloading-worker-2/DEBUG] [ne.mi.fm.co.ConfigTracker/CONFIG]: Config file danmachi-common.toml for danmachi tracking
[16:42:26] [modloading-worker-2/DEBUG] [ne.mi.fm.AutomaticEventSubscriber/LOADING]: Attempting to inject @EventBusSubscriber classes into the eventbus for danmachi
[16:42:26] [modloading-worker-2/DEBUG] [ne.mi.fm.AutomaticEventSubscriber/LOADING]: Auto-subscribing imnotjahan.mod.danmachi.util.events.EventSubscriber to MOD
[16:42:26] [modloading-worker-2/DEBUG] [ne.mi.fm.AutomaticEventSubscriber/LOADING]: Auto-subscribing imnotjahan.mod.danmachi.util.events.ClientForgeEventSubscriber to FORGE
[16:42:26] [modloading-worker-2/DEBUG] [ne.mi.fm.AutomaticEventSubscriber/LOADING]: Auto-subscribing imnotjahan.mod.danmachi.util.events.ForgeEventSubscriber to FORGE
[16:42:26] [modloading-worker-2/DEBUG] [ne.mi.fm.AutomaticEventSubscriber/LOADING]: Auto-subscribing imnotjahan.mod.danmachi.util.events.ClientEventSubscriber to MOD
[16:42:27] [modloading-worker-2/DEBUG] [ne.mi.fm.AutomaticEventSubscriber/LOADING]: Auto-subscribing imnotjahan.mod.danmachi.world.OreGen to FORGE
[16:42:27] [modloading-worker-2/DEBUG] [ne.mi.fm.AutomaticEventSubscriber/LOADING]: Auto-subscribing imnotjahan.mod.danmachi.world.dimension.Dimensions to FORGE
[16:42:27] [Render thread/DEBUG] [ne.mi.re.ObjectHolderRegistry/REGISTRIES]: Processing ObjectHolder annotations
[16:42:27] [Render thread/DEBUG] [ne.mi.re.ObjectHolderRegistry/REGISTRIES]: Found 2939 ObjectHolder annotations
[16:42:27] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Registering custom tag type for: minecraft:potion
[16:42:27] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Registering custom tag type for: minecraft:enchantment
[16:42:27] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Registering custom tag type for: minecraft:block_entity_type
[16:42:27] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:block
[16:42:27] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:block
[16:42:29] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:item
[16:42:29] [Render thread/DEBUG] [ne.mi.re.ObjectHolderRef/]: Unable to lookup danmachi:unicorn_horn for public static net.minecraft.item.Item imnotjahan.mod.danmachi.init.Items.UNICORN_HORN. This means the object wasn't registered. It's likely just mod options.
[16:42:29] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:item
[16:42:29] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: forge:loot_modifier_serializers
[16:42:29] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: forge:loot_modifier_serializers
[16:42:29] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: forge:world_types
[16:42:29] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: forge:world_types
[16:42:29] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:activity
[16:42:29] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:activity
[16:42:29] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:attribute
[16:42:29] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:attribute
[16:42:30] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:block_entity_type
[16:42:30] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:block_entity_type
[16:42:30] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:chunk_status
[16:42:30] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:chunk_status
[16:42:30] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:data_serializers
[16:42:30] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:data_serializers
[16:42:30] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:enchantment
[16:42:30] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:enchantment
[16:42:30] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:entity_type
[16:42:30] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:entity_type
[16:42:30] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:fluid
[16:42:30] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:fluid
[16:42:30] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:memory_module_type
[16:42:30] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:memory_module_type
[16:42:30] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:menu
[16:42:30] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:menu
[16:42:30] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:mob_effect
[16:42:30] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:mob_effect
[16:42:30] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:motive
[16:42:30] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:motive
[16:42:30] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:particle_type
[16:42:30] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:particle_type
[16:42:30] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:point_of_interest_type
[16:42:30] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:point_of_interest_type
[16:42:30] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:potion
[16:42:30] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:potion
[16:42:31] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:recipe_serializer
[16:42:31] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:recipe_serializer
[16:42:31] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:schedule
[16:42:31] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:schedule
[16:42:31] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:sensor_type
[16:42:31] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:sensor_type
[16:42:31] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:sound_event
[16:42:31] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:sound_event
[16:42:31] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:stat_type
[16:42:31] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:stat_type
[16:42:31] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:villager_profession
[16:42:31] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:villager_profession
[16:42:31] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/biome
[16:42:31] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/biome
[16:42:31] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/block_placer_type
[16:42:31] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/block_placer_type
[16:42:31] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/block_state_provider_type
[16:42:31] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/block_state_provider_type
[16:42:31] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/carver
[16:42:31] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/carver
[16:42:31] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/decorator
[16:42:31] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/decorator
[16:42:31] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/feature
[16:42:31] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/feature
[16:42:31] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/foliage_placer_type
[16:42:31] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/foliage_placer_type
[16:42:31] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/structure_feature
[16:42:31] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/structure_feature
[16:42:31] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/surface_builder
[16:42:31] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/surface_builder
[16:42:31] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Applying holder lookups: minecraft:worldgen/tree_decorator_type
[16:42:31] [Render thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Holder lookups applied: minecraft:worldgen/tree_decorator_type
[16:42:33] [Render thread/DEBUG] [ne.mi.fm.cl.ClientModLoader/CORE]: Generating PackInfo named mod:forge for mod file D:\danmachimod\v1.16.5\build\fg_cache\net\minecraftforge\forge\1.16.5-36.1.32_mapped_official_1.16.5\forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar
[16:42:33] [Render thread/DEBUG] [ne.mi.fm.cl.ClientModLoader/CORE]: Generating PackInfo named mod:danmachi for mod file D:\danmachimod\v1.16.5\out\production\resources
[16:42:33] [Render thread/DEBUG] [ne.mi.fm.cl.ClientModLoader/CORE]: Generating PackInfo named mod:jei for mod file C:\Users\Jahan\.gradle\caches\forge_gradle\deobf_dependencies\mezz\jei\jei-1.16.5\7.6.1.75_mapped_official_1.16.5\jei-1.16.5-7.6.1.75_mapped_official_1.16.5.jar
[16:42:34] [Render thread/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming getArmPose with desc (Lnet/minecraft/client/entity/player/AbstractClientPlayerEntity;Lnet/minecraft/util/Hand;)Lnet/minecraft/client/renderer/entity/model/BipedModel$ArmPose;
[16:42:34] [Render thread/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming render with desc (Lnet/minecraft/entity/projectile/FishingBobberEntity;FFLcom/mojang/blaze3d/matrix/MatrixStack;Lnet/minecraft/client/renderer/IRenderTypeBuffer;I)V
[16:42:36] [Render thread/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming prepareMobModel with desc (Lnet/minecraft/entity/MobEntity;FFF)V
[16:42:36] [Render thread/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming setupAnim with desc (Lnet/minecraft/entity/MobEntity;FFFFF)V
[16:42:37] [Render thread/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming renderHandsWithItems with desc (FLcom/mojang/blaze3d/matrix/MatrixStack;Lnet/minecraft/client/renderer/IRenderTypeBuffer$Impl;Lnet/minecraft/client/entity/player/ClientPlayerEntity;I)V
[16:42:37] [Render thread/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming renderHandsWithItems with desc (FLcom/mojang/blaze3d/matrix/MatrixStack;Lnet/minecraft/client/renderer/IRenderTypeBuffer$Impl;Lnet/minecraft/client/entity/player/ClientPlayerEntity;I)V
[16:42:37] [Render thread/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming renderArmWithItem with desc (Lnet/minecraft/client/entity/player/AbstractClientPlayerEntity;FFLnet/minecraft/util/Hand;FLnet/minecraft/item/ItemStack;FLcom/mojang/blaze3d/matrix/MatrixStack;Lnet/minecraft/client/renderer/IRenderTypeBuffer;I)V
[16:42:38] [Render thread/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming renderArmWithItem with desc (Lnet/minecraft/client/entity/player/AbstractClientPlayerEntity;FFLnet/minecraft/util/Hand;FLnet/minecraft/item/ItemStack;FLcom/mojang/blaze3d/matrix/MatrixStack;Lnet/minecraft/client/renderer/IRenderTypeBuffer;I)V
[16:42:42] [Render thread/INFO] [mojang/NarratorWindows]: Narrator library for x64 successfully loaded
[16:42:43] [Render thread/INFO] [minecraft/SimpleReloadableResourceManager]: Reloading ResourceManager: Default, Mod Resources
[16:42:43] [modloading-worker-3/DEBUG] [ne.mi.fm.co.ConfigTracker/CONFIG]: Loading configs type CLIENT
[16:42:43] [modloading-worker-3/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Built TOML config for D:\danmachimod\v1.16.5\run\config\jei-client.toml
[16:42:43] [modloading-worker-3/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Loaded TOML config file D:\danmachimod\v1.16.5\run\config\jei-client.toml
[16:42:43] [modloading-worker-3/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Watching TOML config file D:\danmachimod\v1.16.5\run\config\jei-client.toml for changes
[16:42:43] [Thread-1/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Config file jei-client.toml changed, sending notifies
[16:42:43] [modloading-worker-3/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Built TOML config for D:\danmachimod\v1.16.5\run\config\forge-client.toml
[16:42:43] [modloading-worker-3/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Loaded TOML config file D:\danmachimod\v1.16.5\run\config\forge-client.toml
[16:42:43] [modloading-worker-3/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Watching TOML config file D:\danmachimod\v1.16.5\run\config\forge-client.toml for changes
[16:42:43] [modloading-worker-3/DEBUG] [ne.mi.co.ForgeConfig/FORGEMOD]: Loaded forge config file forge-client.toml
[16:42:43] [modloading-worker-3/DEBUG] [ne.mi.fm.co.ConfigTracker/CONFIG]: Loading configs type COMMON
[16:42:43] [modloading-worker-3/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Built TOML config for D:\danmachimod\v1.16.5\run\config\forge-common.toml
[16:42:43] [modloading-worker-3/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Loaded TOML config file D:\danmachimod\v1.16.5\run\config\forge-common.toml
[16:42:43] [modloading-worker-3/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Watching TOML config file D:\danmachimod\v1.16.5\run\config\forge-common.toml for changes
[16:42:43] [modloading-worker-3/DEBUG] [ne.mi.co.ForgeConfig/FORGEMOD]: Loaded forge config file forge-common.toml
[16:42:43] [modloading-worker-3/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Built TOML config for D:\danmachimod\v1.16.5\run\config\danmachi-common.toml
[16:42:43] [modloading-worker-3/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Loaded TOML config file D:\danmachimod\v1.16.5\run\config\danmachi-common.toml
[16:42:43] [modloading-worker-3/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Watching TOML config file D:\danmachimod\v1.16.5\run\config\danmachi-common.toml for changes
[16:42:44] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [forge] Starting version check at https://files.minecraftforge.net/net/minecraftforge/forge/promotions_slim.json
[16:42:45] [Forge Version Check/DEBUG] [ne.mi.fm.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_pre4-latest": "10.12.2.1149",
    "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.2855",
    "1.12.2-recommended": "14.23.5.2855",
    "1.13.2-latest": "25.0.219",
    "1.14.2-latest": "26.0.63",
    "1.14.3-latest": "27.0.60",
    "1.14.4-latest": "28.2.23",
    "1.14.4-recommended": "28.2.0",
    "1.15-latest": "29.0.4",
    "1.15.1-latest": "30.0.51",
    "1.15.2-latest": "31.2.55",
    "1.15.2-recommended": "31.2.0",
    "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.5",
    "1.16.5-recommended": "36.2.0",
    "1.17.1-latest": "37.0.70"
  }
}
[16:42:45] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [forge] Found status: OUTDATED Current: 36.1.32 Target: 36.2.0
[16:42:45] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [danmachi] Starting version check at https://raw.githubusercontent.com/ImNotJahan/danmachi-mod/master/update.json
[16:42:46] [Forge Version Check/DEBUG] [ne.mi.fm.VersionChecker/]: [danmachi] Received version check data:
{
  "homepage": "https://www.curseforge.com/minecraft/mc-mods/danmachi-mod/files",
  "promos": 
  {
    "1.16.5-latest": "1.0.0",
    "1.16.5-recommended": "1.0.0",
    "1.12.2-latest": "1.2.3",
    "1.12.2-recommended": "1.2.3"
  }
}

[16:42:46] [Forge Version Check/INFO] [ne.mi.fm.VersionChecker/]: [danmachi] Found status: UP_TO_DATE Current: 1.0.0 Target: null
[16:42:47] [Render thread/DEBUG] [ne.mi.fm.DeferredWorkQueue/LOADING]: Dispatching synchronous work after COMMON_SETUP: 1 jobs
[16:42:47] [Render thread/DEBUG] [ne.mi.fm.DeferredWorkQueue/LOADING]: Synchronous work queue completed in 00:00:00.013
[16:42:48] [Render thread/DEBUG] [ne.mi.fm.cl.ClientModLoader/LOADING]: Running pre client event work
[16:42:50] [Render thread/DEBUG] [ne.mi.fm.cl.ClientModLoader/LOADING]: Running post client event work
[16:42:50] [Render thread/DEBUG] [ne.mi.fm.DeferredWorkQueue/LOADING]: Dispatching synchronous work after SIDED_SETUP: 1 jobs
[16:42:50] [Render thread/DEBUG] [ne.mi.fm.DeferredWorkQueue/LOADING]: Synchronous work queue completed in 00:00:00.570
[16:43:10] [Worker-Main-10/WARN] [minecraft/ModelBakery]: Exception loading blockstate definition: 'danmachi:blockstates/smithing_anvil.json' in resourcepack: 'Mod Resources' for variant: 'damage=0,facing=east': Unknown blockstate property: 'damage'
[16:43:10] [Worker-Main-10/WARN] [minecraft/ModelBakery]: Exception loading blockstate definition: 'danmachi:blockstates/smithing_anvil.json' in resourcepack: 'Mod Resources' for variant: 'damage=0,facing=south': Unknown blockstate property: 'damage'
[16:43:10] [Worker-Main-10/WARN] [minecraft/ModelBakery]: Exception loading blockstate definition: 'danmachi:blockstates/smithing_anvil.json' in resourcepack: 'Mod Resources' for variant: 'damage=0,facing=west': Unknown blockstate property: 'damage'
[16:43:10] [Worker-Main-10/WARN] [minecraft/ModelBakery]: Exception loading blockstate definition: 'danmachi:blockstates/smithing_anvil.json' in resourcepack: 'Mod Resources' for variant: 'damage=0,facing=north': Unknown blockstate property: 'damage'
[16:43:10] [Worker-Main-10/WARN] [minecraft/ModelBakery]: Exception loading blockstate definition: 'danmachi:blockstates/smithing_anvil.json' missing model for variant: 'danmachi:smithing_anvil#'
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Freezing registries
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Block Sync: FROZEN -> ACTIVE
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Fluid Sync: FROZEN -> ACTIVE
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item Sync: FROZEN -> ACTIVE
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Effect Sync: FROZEN -> ACTIVE
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry SoundEvent Sync: FROZEN -> ACTIVE
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Potion Sync: FROZEN -> ACTIVE
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Enchantment Sync: FROZEN -> ACTIVE
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry EntityType Sync: FROZEN -> ACTIVE
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry TileEntityType Sync: FROZEN -> ACTIVE
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry ParticleType Sync: FROZEN -> ACTIVE
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry ContainerType Sync: FROZEN -> ACTIVE
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry PaintingType Sync: FROZEN -> ACTIVE
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry IRecipeSerializer Sync: FROZEN -> ACTIVE
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Attribute Sync: FROZEN -> ACTIVE
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry StatType Sync: FROZEN -> ACTIVE
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry VillagerProfession Sync: FROZEN -> ACTIVE
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry PointOfInterestType Sync: FROZEN -> ACTIVE
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry MemoryModuleType Sync: FROZEN -> ACTIVE
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry SensorType Sync: FROZEN -> ACTIVE
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Schedule Sync: FROZEN -> ACTIVE
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Activity Sync: FROZEN -> ACTIVE
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry WorldCarver Sync: FROZEN -> ACTIVE
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry SurfaceBuilder Sync: FROZEN -> ACTIVE
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Feature Sync: FROZEN -> ACTIVE
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Placement Sync: FROZEN -> ACTIVE
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry ChunkStatus Sync: FROZEN -> ACTIVE
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Structure Sync: FROZEN -> ACTIVE
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry BlockStateProviderType Sync: FROZEN -> ACTIVE
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry BlockPlacerType Sync: FROZEN -> ACTIVE
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry FoliagePlacerType Sync: FROZEN -> ACTIVE
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry TreeDecoratorType Sync: FROZEN -> ACTIVE
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Biome Sync: FROZEN -> ACTIVE
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry DataSerializerEntry Sync: FROZEN -> ACTIVE
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry GlobalLootModifierSerializer Sync: FROZEN -> ACTIVE
[16:43:27] [modloading-worker-5/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry ForgeWorldType Sync: FROZEN -> ACTIVE
[16:43:32] [modloading-worker-5/DEBUG] [ne.mi.re.GameData/REGISTRIES]: All registries frozen
[16:43:32] [Render thread/DEBUG] [ne.mi.fm.ForgeI18n/CORE]: Loading I18N data entries: 5572
[16:43:33] [Render thread/INFO] [minecraft/SoundSystem]: OpenAL initialized.
[16:43:33] [Render thread/INFO] [minecraft/SoundEngine]: Sound engine started
[16:43:35] [Render thread/INFO] [minecraft/AtlasTexture]: Created: 256x128x0 jei:textures/atlas/gui.png-atlas
[16:43:35] [Render thread/INFO] [minecraft/AtlasTexture]: Created: 1024x512x4 minecraft:textures/atlas/blocks.png-atlas
[16:43:36] [Render thread/INFO] [minecraft/AtlasTexture]: Created: 256x128x4 minecraft:textures/atlas/signs.png-atlas
[16:43:36] [Render thread/INFO] [minecraft/AtlasTexture]: Created: 512x512x4 minecraft:textures/atlas/banner_patterns.png-atlas
[16:43:36] [Render thread/INFO] [minecraft/AtlasTexture]: Created: 512x512x4 minecraft:textures/atlas/shield_patterns.png-atlas
[16:43:36] [Render thread/INFO] [minecraft/AtlasTexture]: Created: 256x256x4 minecraft:textures/atlas/chest.png-atlas
[16:43:36] [Render thread/INFO] [minecraft/AtlasTexture]: Created: 512x256x4 minecraft:textures/atlas/beds.png-atlas
[16:43:36] [Render thread/INFO] [minecraft/AtlasTexture]: Created: 512x256x4 minecraft:textures/atlas/shulker_boxes.png-atlas
[16:43:40] [Render thread/INFO] [minecraft/AtlasTexture]: Created: 256x256x0 minecraft:textures/atlas/particles.png-atlas
[16:43:40] [Render thread/INFO] [minecraft/AtlasTexture]: Created: 256x256x0 minecraft:textures/atlas/paintings.png-atlas
[16:43:40] [Render thread/INFO] [minecraft/AtlasTexture]: Created: 128x128x0 minecraft:textures/atlas/mob_effects.png-atlas
[16:43:41] [Realms Notification Availability checker #1/INFO] [mojang/RealmsClient]: Could not authorize you against Realms server: Invalid session id
[16:46:14] [Render thread/DEBUG] [ne.mi.co.ForgeTagHandler/]: Populated the TagCollectionManager with 3 extra types
[16:46:16] [Render thread/DEBUG] [ne.mi.fm.se.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:forge for mod file D:\danmachimod\v1.16.5\build\fg_cache\net\minecraftforge\forge\1.16.5-36.1.32_mapped_official_1.16.5\forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar
[16:46:16] [Render thread/DEBUG] [ne.mi.fm.se.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:danmachi for mod file D:\danmachimod\v1.16.5\out\production\resources
[16:46:16] [Render thread/DEBUG] [ne.mi.fm.se.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:jei for mod file C:\Users\Jahan\.gradle\caches\forge_gradle\deobf_dependencies\mezz\jei\jei-1.16.5\7.6.1.75_mapped_official_1.16.5\jei-1.16.5-7.6.1.75_mapped_official_1.16.5.jar
[16:46:16] [Render thread/DEBUG] [ne.mi.co.ForgeTagHandler/]: Gathering custom tag collection reader from types.
[16:46:17] [Render thread/WARN] [minecraft/Commands]: Ambiguity between arguments [teleport, destination] and [teleport, targets] with inputs: [Player, 0123, @e, dd12be42-52a9-4a91-a8a1-11c01849e498]
[16:46:17] [Render thread/WARN] [minecraft/Commands]: Ambiguity between arguments [teleport, location] and [teleport, destination] with inputs: [0.1 -0.5 .9, 0 0 0]
[16:46:17] [Render thread/WARN] [minecraft/Commands]: Ambiguity between arguments [teleport, location] and [teleport, targets] with inputs: [0.1 -0.5 .9, 0 0 0]
[16:46:17] [Render thread/WARN] [minecraft/Commands]: Ambiguity between arguments [teleport, targets] and [teleport, destination] with inputs: [Player, 0123, dd12be42-52a9-4a91-a8a1-11c01849e498]
[16:46:17] [Render thread/WARN] [minecraft/Commands]: Ambiguity between arguments [teleport, targets, location] and [teleport, targets, destination] with inputs: [0.1 -0.5 .9, 0 0 0]
[16:46:17] [Render thread/INFO] [minecraft/SimpleReloadableResourceManager]: Reloading ResourceManager: Default, forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar, resources, jei-1.16.5-7.6.1.75_mapped_official_1.16.5.jar
[16:46:25] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:smelted_damascus_ingot
com.google.gson.JsonSyntaxException: Unknown item tag 'danmachi:damascus_ore'
	at net.minecraft.item.crafting.Ingredient.valueFromJson(Ingredient.java:223) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraftforge.common.crafting.VanillaIngredientSerializer.parse(VanillaIngredientSerializer.java:41) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:155) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.Ingredient.fromJson(Ingredient.java:189) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:23) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:11) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1712) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadLevel(Minecraft.java:1681) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.loadWorld(WorldSelectionList.java:364) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.joinWorld(WorldSelectionList.java:273) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.mouseClicked(WorldSelectionList.java:225) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.list.AbstractList.mouseClicked(AbstractList.java:309) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:46:25] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:orichalcum_wall_1
com.google.gson.JsonSyntaxException: Unknown ingredient type: forge:ore_dict
	at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:153) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.Ingredient.fromJson(Ingredient.java:189) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.ShapedRecipe.keyFromJson(ShapedRecipe.java:252) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe.access$000(ShapedRecipe.java:24) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe$Serializer.fromJson(ShapedRecipe.java:276) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe$Serializer.fromJson(ShapedRecipe.java:272) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1712) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadLevel(Minecraft.java:1681) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.loadWorld(WorldSelectionList.java:364) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.joinWorld(WorldSelectionList.java:273) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.mouseClicked(WorldSelectionList.java:225) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.list.AbstractList.mouseClicked(AbstractList.java:309) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:46:25] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:desperate
com.google.gson.JsonSyntaxException: Invalid or unsupported recipe type 'danmachi:smithing'
	at net.minecraft.item.crafting.RecipeManager.lambda$fromJson$9(RecipeManager.java:140) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at java.util.Optional.orElseThrow(Optional.java:290) ~[?:1.8.0_281] {}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:139) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1712) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadLevel(Minecraft.java:1681) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.loadWorld(WorldSelectionList.java:364) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.joinWorld(WorldSelectionList.java:273) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.mouseClicked(WorldSelectionList.java:225) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.list.AbstractList.mouseClicked(AbstractList.java:309) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:46:25] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:smelted_orichalcum_ingot
com.google.gson.JsonSyntaxException: Unknown item tag 'danmachi:orichalcum_ore'
	at net.minecraft.item.crafting.Ingredient.valueFromJson(Ingredient.java:223) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraftforge.common.crafting.VanillaIngredientSerializer.parse(VanillaIngredientSerializer.java:41) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:155) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.Ingredient.fromJson(Ingredient.java:189) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:23) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:11) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1712) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadLevel(Minecraft.java:1681) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.loadWorld(WorldSelectionList.java:364) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.joinWorld(WorldSelectionList.java:273) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.mouseClicked(WorldSelectionList.java:225) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.list.AbstractList.mouseClicked(AbstractList.java:309) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:46:25] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:orichalcum_wall
com.google.gson.JsonSyntaxException: Unknown ingredient type: forge:ore_dict
	at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:153) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.Ingredient.fromJson(Ingredient.java:189) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.ShapedRecipe.keyFromJson(ShapedRecipe.java:252) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe.access$000(ShapedRecipe.java:24) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe$Serializer.fromJson(ShapedRecipe.java:276) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe$Serializer.fromJson(ShapedRecipe.java:272) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1712) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadLevel(Minecraft.java:1681) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.loadWorld(WorldSelectionList.java:364) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.joinWorld(WorldSelectionList.java:273) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.mouseClicked(WorldSelectionList.java:225) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.list.AbstractList.mouseClicked(AbstractList.java:309) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:46:25] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:orichalcum_ingot
com.google.gson.JsonSyntaxException: Unknown ingredient type: forge:ore_dict
	at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:153) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.Ingredient.fromJson(Ingredient.java:189) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.ShapedRecipe.keyFromJson(ShapedRecipe.java:252) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe.access$000(ShapedRecipe.java:24) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe$Serializer.fromJson(ShapedRecipe.java:276) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe$Serializer.fromJson(ShapedRecipe.java:272) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1712) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadLevel(Minecraft.java:1681) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.loadWorld(WorldSelectionList.java:364) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.joinWorld(WorldSelectionList.java:273) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.mouseClicked(WorldSelectionList.java:225) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.list.AbstractList.mouseClicked(AbstractList.java:309) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:46:25] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:smelted_mythril_ingot
com.google.gson.JsonSyntaxException: Unknown item tag 'danmachi:mythril_ore'
	at net.minecraft.item.crafting.Ingredient.valueFromJson(Ingredient.java:223) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraftforge.common.crafting.VanillaIngredientSerializer.parse(VanillaIngredientSerializer.java:41) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:155) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.Ingredient.fromJson(Ingredient.java:189) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:23) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:11) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1712) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadLevel(Minecraft.java:1681) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.loadWorld(WorldSelectionList.java:364) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.joinWorld(WorldSelectionList.java:273) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.mouseClicked(WorldSelectionList.java:225) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.list.AbstractList.mouseClicked(AbstractList.java:309) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:46:25] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:smelted_adamantite_ingot
com.google.gson.JsonSyntaxException: Unknown item tag 'danmachi:adamantite_ore'
	at net.minecraft.item.crafting.Ingredient.valueFromJson(Ingredient.java:223) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraftforge.common.crafting.VanillaIngredientSerializer.parse(VanillaIngredientSerializer.java:41) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:155) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.Ingredient.fromJson(Ingredient.java:189) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:23) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:11) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1712) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadLevel(Minecraft.java:1681) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.loadWorld(WorldSelectionList.java:364) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.joinWorld(WorldSelectionList.java:273) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.mouseClicked(WorldSelectionList.java:225) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.list.AbstractList.mouseClicked(AbstractList.java:309) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:46:25] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:magic_stone_compass
com.google.gson.JsonSyntaxException: Unknown item 'danmachi:compass'
	at net.minecraft.item.crafting.ShapedRecipe.lambda$itemFromJson$0(ShapedRecipe.java:262) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.Optional.orElseThrow(Optional.java:290) ~[?:1.8.0_281] {}
	at net.minecraft.item.crafting.ShapedRecipe.itemFromJson(ShapedRecipe.java:261) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe$Serializer.fromJson(ShapedRecipe.java:281) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe$Serializer.fromJson(ShapedRecipe.java:272) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1712) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadLevel(Minecraft.java:1681) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.loadWorld(WorldSelectionList.java:364) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.joinWorld(WorldSelectionList.java:273) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.mouseClicked(WorldSelectionList.java:225) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.list.AbstractList.mouseClicked(AbstractList.java:309) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:46:25] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:smelted_nosteel_ingot
com.google.gson.JsonSyntaxException: Unknown item tag 'danmachi:nosteel_ore'
	at net.minecraft.item.crafting.Ingredient.valueFromJson(Ingredient.java:223) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraftforge.common.crafting.VanillaIngredientSerializer.parse(VanillaIngredientSerializer.java:41) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:155) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.Ingredient.fromJson(Ingredient.java:189) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:23) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:11) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1712) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadLevel(Minecraft.java:1681) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.loadWorld(WorldSelectionList.java:364) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.joinWorld(WorldSelectionList.java:273) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.mouseClicked(WorldSelectionList.java:225) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.list.AbstractList.mouseClicked(AbstractList.java:309) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:46:25] [Render thread/INFO] [minecraft/RecipeManager]: Loaded 7 recipes
[16:46:29] [Render thread/INFO] [minecraft/AdvancementList]: Loaded 927 advancements
[16:46:31] [Render thread/INFO] [ne.mi.re.GameData/REGISTRIES]: Injecting existing registry data into this CLIENT instance
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:adamantite_block: 1034 (init) -> 1047 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:adamantite_ingot: 977 (init) -> 990 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:adamantite_ore: 1037 (init) -> 1050 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:adamantite_wall: 1042 (init) -> 1055 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:alfs_lumina: 1014 (init) -> 1027 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:almiraj_fur: 983 (init) -> 996 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:almiraj_spawn_egg: 1048 (init) -> 978 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:amazon_armor_boots: 1024 (init) -> 1037 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:amazon_armor_chest: 1022 (init) -> 1035 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:amazon_armor_leggings: 1023 (init) -> 1036 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:armor_dress_boots: 1021 (init) -> 1034 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:armor_dress_chest: 1019 (init) -> 1032 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:armor_dress_helmet: 1018 (init) -> 1031 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:armor_dress_leggings: 1020 (init) -> 1033 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:bugbear_nail: 987 (init) -> 1000 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:bugbear_spawn_egg: 1050 (init) -> 980 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:crystal_drop: 1030 (init) -> 1043 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:dagger: 1001 (init) -> 1014 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:damascus_block: 1043 (init) -> 1056 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:damascus_ore: 1039 (init) -> 1052 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:damascus_steel: 979 (init) -> 992 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:desperate: 1002 (init) -> 1015 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:fire_magic_sword: 1004 (init) -> 1017 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:fire_salamander_wool: 1026 (init) -> 1039 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:fortia_spear: 1011 (init) -> 1024 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:goblin_fang: 981 (init) -> 994 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:goblin_spawn_egg: 1046 (init) -> 976 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:great_podao_zaga: 1009 (init) -> 1022 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:greatsword: 1006 (init) -> 1019 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:grimoire: 995 (init) -> 1008 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:guide_book: 994 (init) -> 1007 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:guild_spawn_egg: 1058 (init) -> 988 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:hades_head: 1025 (init) -> 1038 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:hakugen: 998 (init) -> 1011 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:hellhound_spawn_egg: 1051 (init) -> 981 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:hermes_spawn_egg: 1055 (init) -> 985 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:hestia_knife: 997 (init) -> 1010 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:hestia_spawn_egg: 1054 (init) -> 984 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:ice_magic_sword: 1005 (init) -> 1018 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:ichor: 992 (init) -> 1005 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:jagamarukun: 1029 (init) -> 1042 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:kings_blade: 1012 (init) -> 1025 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:kobold_nail: 982 (init) -> 995 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:kobold_spawn_egg: 1053 (init) -> 983 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:kodachi_futaba: 1008 (init) -> 1021 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:kotetsu: 1007 (init) -> 1020 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:loki_spawn_egg: 1057 (init) -> 987 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:lygerfang_fang: 984 (init) -> 997 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:lygerfang_fur: 985 (init) -> 998 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:magic_stone: 990 (init) -> 1003 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:mermaid_blood: 1032 (init) -> 1045 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:metal_rabbit_fur: 988 (init) -> 1001 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:metal_rabbit_spawn_egg: 1049 (init) -> 979 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:minotaur_horn: 986 (init) -> 999 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:minotaur_spawn_egg: 1047 (init) -> 977 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:mythril_block: 1035 (init) -> 1048 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:mythril_ingot: 978 (init) -> 991 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:mythril_ore: 1038 (init) -> 1051 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:needle: 996 (init) -> 1009 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:nosteel_block: 1044 (init) -> 1057 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:nosteel_ingot: 980 (init) -> 993 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:nosteel_ore: 1040 (init) -> 1053 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:orichalcum_block: 1033 (init) -> 1046 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:orichalcum_ingot: 976 (init) -> 989 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:orichalcum_ore: 1036 (init) -> 1049 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:orichalcum_wall: 1041 (init) -> 1054 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:poison_salamander_wool: 1028 (init) -> 1041 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:protagonista: 1010 (init) -> 1023 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:rabbit_armor_boots: 1017 (init) -> 1030 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:rabbit_armor_chestplate: 1015 (init) -> 1028 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:rabbit_armor_leggings: 1016 (init) -> 1029 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:smithing_anvil: 1045 (init) -> 1058 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:soma: 1031 (init) -> 1044 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:soma_spawn_egg: 1056 (init) -> 986 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:special_magic_stone: 991 (init) -> 1004 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:supreme_black_sword: 1013 (init) -> 1026 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:sword_air: 1000 (init) -> 1013 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:sword_stag_antler: 989 (init) -> 1002 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:unicorn_spawn_egg: 1052 (init) -> 982 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:urga: 1003 (init) -> 1016 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:urga_blade: 993 (init) -> 1006 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:ushiwakamaru: 999 (init) -> 1012 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item: Fixed minecraft:item id mismatch danmachi:water_salamander_wool: 1027 (init) -> 1040 (map).
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Block Sync: ACTIVE -> STAGING
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Fluid Sync: ACTIVE -> STAGING
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item Sync: ACTIVE -> STAGING
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Effect Sync: ACTIVE -> STAGING
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry SoundEvent Sync: ACTIVE -> STAGING
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Potion Sync: ACTIVE -> STAGING
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Enchantment Sync: ACTIVE -> STAGING
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry EntityType Sync: ACTIVE -> STAGING
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry TileEntityType Sync: ACTIVE -> STAGING
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry ParticleType Sync: ACTIVE -> STAGING
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry ContainerType Sync: ACTIVE -> STAGING
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry PaintingType Sync: ACTIVE -> STAGING
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry IRecipeSerializer Sync: ACTIVE -> STAGING
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Attribute Sync: ACTIVE -> STAGING
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry StatType Sync: ACTIVE -> STAGING
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry VillagerProfession Sync: ACTIVE -> STAGING
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry PointOfInterestType Sync: ACTIVE -> STAGING
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry MemoryModuleType Sync: ACTIVE -> STAGING
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry SensorType Sync: ACTIVE -> STAGING
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Schedule Sync: ACTIVE -> STAGING
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Activity Sync: ACTIVE -> STAGING
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry WorldCarver Sync: ACTIVE -> STAGING
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry SurfaceBuilder Sync: ACTIVE -> STAGING
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Feature Sync: ACTIVE -> STAGING
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Placement Sync: ACTIVE -> STAGING
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry ChunkStatus Sync: ACTIVE -> STAGING
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Structure Sync: ACTIVE -> STAGING
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry BlockStateProviderType Sync: ACTIVE -> STAGING
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry BlockPlacerType Sync: ACTIVE -> STAGING
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry FoliagePlacerType Sync: ACTIVE -> STAGING
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry TreeDecoratorType Sync: ACTIVE -> STAGING
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Biome Sync: ACTIVE -> STAGING
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry DataSerializerEntry Sync: ACTIVE -> STAGING
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry GlobalLootModifierSerializer Sync: ACTIVE -> STAGING
[16:46:31] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry ForgeWorldType Sync: ACTIVE -> STAGING
[16:46:33] [Render thread/DEBUG] [ne.mi.re.ObjectHolderRegistry/REGISTRIES]: Applying holder lookups
[16:46:33] [Render thread/DEBUG] [ne.mi.re.ObjectHolderRef/]: Unable to lookup danmachi:unicorn_horn for public static net.minecraft.item.Item imnotjahan.mod.danmachi.init.Items.UNICORN_HORN. This means the object wasn't registered. It's likely just mod options.
[16:46:33] [Render thread/DEBUG] [ne.mi.re.ObjectHolderRegistry/REGISTRIES]: Holder lookups applied
[16:46:34] [Render thread/DEBUG] [ne.mi.fm.se.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:forge for mod file D:\danmachimod\v1.16.5\build\fg_cache\net\minecraftforge\forge\1.16.5-36.1.32_mapped_official_1.16.5\forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar
[16:46:34] [Render thread/DEBUG] [ne.mi.fm.se.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:danmachi for mod file D:\danmachimod\v1.16.5\out\production\resources
[16:46:34] [Render thread/DEBUG] [ne.mi.fm.se.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:jei for mod file C:\Users\Jahan\.gradle\caches\forge_gradle\deobf_dependencies\mezz\jei\jei-1.16.5\7.6.1.75_mapped_official_1.16.5\jei-1.16.5-7.6.1.75_mapped_official_1.16.5.jar
[16:46:34] [Render thread/DEBUG] [ne.mi.co.ForgeTagHandler/]: Gathering custom tag collection reader from types.
[16:46:34] [Render thread/WARN] [minecraft/Commands]: Ambiguity between arguments [teleport, destination] and [teleport, targets] with inputs: [Player, 0123, @e, dd12be42-52a9-4a91-a8a1-11c01849e498]
[16:46:34] [Render thread/WARN] [minecraft/Commands]: Ambiguity between arguments [teleport, location] and [teleport, destination] with inputs: [0.1 -0.5 .9, 0 0 0]
[16:46:34] [Render thread/WARN] [minecraft/Commands]: Ambiguity between arguments [teleport, location] and [teleport, targets] with inputs: [0.1 -0.5 .9, 0 0 0]
[16:46:34] [Render thread/WARN] [minecraft/Commands]: Ambiguity between arguments [teleport, targets] and [teleport, destination] with inputs: [Player, 0123, dd12be42-52a9-4a91-a8a1-11c01849e498]
[16:46:34] [Render thread/WARN] [minecraft/Commands]: Ambiguity between arguments [teleport, targets, location] and [teleport, targets, destination] with inputs: [0.1 -0.5 .9, 0 0 0]
[16:46:34] [Render thread/INFO] [minecraft/SimpleReloadableResourceManager]: Reloading ResourceManager: Default, forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar, resources, jei-1.16.5-7.6.1.75_mapped_official_1.16.5.jar
[16:46:40] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:smelted_damascus_ingot
com.google.gson.JsonSyntaxException: Unknown item tag 'danmachi:damascus_ore'
	at net.minecraft.item.crafting.Ingredient.valueFromJson(Ingredient.java:223) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraftforge.common.crafting.VanillaIngredientSerializer.parse(VanillaIngredientSerializer.java:41) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:155) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.Ingredient.fromJson(Ingredient.java:189) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:23) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:11) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1715) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadLevel(Minecraft.java:1681) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.loadWorld(WorldSelectionList.java:364) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.joinWorld(WorldSelectionList.java:273) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.mouseClicked(WorldSelectionList.java:225) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.list.AbstractList.mouseClicked(AbstractList.java:309) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:46:40] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:orichalcum_wall_1
com.google.gson.JsonSyntaxException: Unknown ingredient type: forge:ore_dict
	at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:153) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.Ingredient.fromJson(Ingredient.java:189) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.ShapedRecipe.keyFromJson(ShapedRecipe.java:252) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe.access$000(ShapedRecipe.java:24) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe$Serializer.fromJson(ShapedRecipe.java:276) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe$Serializer.fromJson(ShapedRecipe.java:272) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1715) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadLevel(Minecraft.java:1681) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.loadWorld(WorldSelectionList.java:364) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.joinWorld(WorldSelectionList.java:273) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.mouseClicked(WorldSelectionList.java:225) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.list.AbstractList.mouseClicked(AbstractList.java:309) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:46:40] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:desperate
com.google.gson.JsonSyntaxException: Invalid or unsupported recipe type 'danmachi:smithing'
	at net.minecraft.item.crafting.RecipeManager.lambda$fromJson$9(RecipeManager.java:140) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at java.util.Optional.orElseThrow(Optional.java:290) ~[?:1.8.0_281] {}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:139) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1715) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadLevel(Minecraft.java:1681) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.loadWorld(WorldSelectionList.java:364) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.joinWorld(WorldSelectionList.java:273) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.mouseClicked(WorldSelectionList.java:225) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.list.AbstractList.mouseClicked(AbstractList.java:309) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:46:40] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:smelted_orichalcum_ingot
com.google.gson.JsonSyntaxException: Unknown item tag 'danmachi:orichalcum_ore'
	at net.minecraft.item.crafting.Ingredient.valueFromJson(Ingredient.java:223) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraftforge.common.crafting.VanillaIngredientSerializer.parse(VanillaIngredientSerializer.java:41) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:155) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.Ingredient.fromJson(Ingredient.java:189) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:23) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:11) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1715) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadLevel(Minecraft.java:1681) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.loadWorld(WorldSelectionList.java:364) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.joinWorld(WorldSelectionList.java:273) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.mouseClicked(WorldSelectionList.java:225) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.list.AbstractList.mouseClicked(AbstractList.java:309) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:46:40] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:orichalcum_wall
com.google.gson.JsonSyntaxException: Unknown ingredient type: forge:ore_dict
	at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:153) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.Ingredient.fromJson(Ingredient.java:189) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.ShapedRecipe.keyFromJson(ShapedRecipe.java:252) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe.access$000(ShapedRecipe.java:24) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe$Serializer.fromJson(ShapedRecipe.java:276) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe$Serializer.fromJson(ShapedRecipe.java:272) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1715) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadLevel(Minecraft.java:1681) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.loadWorld(WorldSelectionList.java:364) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.joinWorld(WorldSelectionList.java:273) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.mouseClicked(WorldSelectionList.java:225) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.list.AbstractList.mouseClicked(AbstractList.java:309) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:46:40] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:orichalcum_ingot
com.google.gson.JsonSyntaxException: Unknown ingredient type: forge:ore_dict
	at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:153) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.Ingredient.fromJson(Ingredient.java:189) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.ShapedRecipe.keyFromJson(ShapedRecipe.java:252) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe.access$000(ShapedRecipe.java:24) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe$Serializer.fromJson(ShapedRecipe.java:276) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe$Serializer.fromJson(ShapedRecipe.java:272) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1715) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadLevel(Minecraft.java:1681) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.loadWorld(WorldSelectionList.java:364) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.joinWorld(WorldSelectionList.java:273) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.mouseClicked(WorldSelectionList.java:225) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.list.AbstractList.mouseClicked(AbstractList.java:309) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:46:40] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:smelted_mythril_ingot
com.google.gson.JsonSyntaxException: Unknown item tag 'danmachi:mythril_ore'
	at net.minecraft.item.crafting.Ingredient.valueFromJson(Ingredient.java:223) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraftforge.common.crafting.VanillaIngredientSerializer.parse(VanillaIngredientSerializer.java:41) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:155) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.Ingredient.fromJson(Ingredient.java:189) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:23) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:11) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1715) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadLevel(Minecraft.java:1681) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.loadWorld(WorldSelectionList.java:364) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.joinWorld(WorldSelectionList.java:273) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.mouseClicked(WorldSelectionList.java:225) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.list.AbstractList.mouseClicked(AbstractList.java:309) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:46:40] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:smelted_adamantite_ingot
com.google.gson.JsonSyntaxException: Unknown item tag 'danmachi:adamantite_ore'
	at net.minecraft.item.crafting.Ingredient.valueFromJson(Ingredient.java:223) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraftforge.common.crafting.VanillaIngredientSerializer.parse(VanillaIngredientSerializer.java:41) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:155) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.Ingredient.fromJson(Ingredient.java:189) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:23) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:11) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1715) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadLevel(Minecraft.java:1681) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.loadWorld(WorldSelectionList.java:364) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.joinWorld(WorldSelectionList.java:273) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.mouseClicked(WorldSelectionList.java:225) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.list.AbstractList.mouseClicked(AbstractList.java:309) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:46:40] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:magic_stone_compass
com.google.gson.JsonSyntaxException: Unknown item 'danmachi:compass'
	at net.minecraft.item.crafting.ShapedRecipe.lambda$itemFromJson$0(ShapedRecipe.java:262) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.Optional.orElseThrow(Optional.java:290) ~[?:1.8.0_281] {}
	at net.minecraft.item.crafting.ShapedRecipe.itemFromJson(ShapedRecipe.java:261) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe$Serializer.fromJson(ShapedRecipe.java:281) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe$Serializer.fromJson(ShapedRecipe.java:272) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1715) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadLevel(Minecraft.java:1681) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.loadWorld(WorldSelectionList.java:364) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.joinWorld(WorldSelectionList.java:273) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.mouseClicked(WorldSelectionList.java:225) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.list.AbstractList.mouseClicked(AbstractList.java:309) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:46:40] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:smelted_nosteel_ingot
com.google.gson.JsonSyntaxException: Unknown item tag 'danmachi:nosteel_ore'
	at net.minecraft.item.crafting.Ingredient.valueFromJson(Ingredient.java:223) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraftforge.common.crafting.VanillaIngredientSerializer.parse(VanillaIngredientSerializer.java:41) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:155) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.Ingredient.fromJson(Ingredient.java:189) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:23) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:11) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1715) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadLevel(Minecraft.java:1681) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.loadWorld(WorldSelectionList.java:364) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.joinWorld(WorldSelectionList.java:273) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.WorldSelectionList$Entry.mouseClicked(WorldSelectionList.java:225) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.list.AbstractList.mouseClicked(AbstractList.java:309) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:46:40] [Render thread/INFO] [minecraft/RecipeManager]: Loaded 7 recipes
[16:46:43] [Render thread/INFO] [minecraft/AdvancementList]: Loaded 927 advancements
[16:46:45] [Render thread/INFO] [ne.mi.re.GameData/REGISTRIES]: Injecting existing registry data into this CLIENT instance
[16:46:45] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Block Sync: ACTIVE -> STAGING
[16:46:45] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Fluid Sync: ACTIVE -> STAGING
[16:46:45] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item Sync: ACTIVE -> STAGING
[16:46:45] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Effect Sync: ACTIVE -> STAGING
[16:46:45] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry SoundEvent Sync: ACTIVE -> STAGING
[16:46:45] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Potion Sync: ACTIVE -> STAGING
[16:46:45] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Enchantment Sync: ACTIVE -> STAGING
[16:46:45] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry EntityType Sync: ACTIVE -> STAGING
[16:46:45] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry TileEntityType Sync: ACTIVE -> STAGING
[16:46:45] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry ParticleType Sync: ACTIVE -> STAGING
[16:46:45] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry ContainerType Sync: ACTIVE -> STAGING
[16:46:45] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry PaintingType Sync: ACTIVE -> STAGING
[16:46:45] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry IRecipeSerializer Sync: ACTIVE -> STAGING
[16:46:45] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Attribute Sync: ACTIVE -> STAGING
[16:46:45] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry StatType Sync: ACTIVE -> STAGING
[16:46:45] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry VillagerProfession Sync: ACTIVE -> STAGING
[16:46:45] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry PointOfInterestType Sync: ACTIVE -> STAGING
[16:46:45] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry MemoryModuleType Sync: ACTIVE -> STAGING
[16:46:45] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry SensorType Sync: ACTIVE -> STAGING
[16:46:45] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Schedule Sync: ACTIVE -> STAGING
[16:46:45] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Activity Sync: ACTIVE -> STAGING
[16:46:45] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry WorldCarver Sync: ACTIVE -> STAGING
[16:46:45] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry SurfaceBuilder Sync: ACTIVE -> STAGING
[16:46:45] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Feature Sync: ACTIVE -> STAGING
[16:46:45] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Placement Sync: ACTIVE -> STAGING
[16:46:45] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry ChunkStatus Sync: ACTIVE -> STAGING
[16:46:45] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Structure Sync: ACTIVE -> STAGING
[16:46:45] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry BlockStateProviderType Sync: ACTIVE -> STAGING
[16:46:45] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry BlockPlacerType Sync: ACTIVE -> STAGING
[16:46:45] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry FoliagePlacerType Sync: ACTIVE -> STAGING
[16:46:45] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry TreeDecoratorType Sync: ACTIVE -> STAGING
[16:46:45] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Biome Sync: ACTIVE -> STAGING
[16:46:45] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry DataSerializerEntry Sync: ACTIVE -> STAGING
[16:46:45] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry GlobalLootModifierSerializer Sync: ACTIVE -> STAGING
[16:46:45] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry ForgeWorldType Sync: ACTIVE -> STAGING
[16:46:47] [Render thread/DEBUG] [ne.mi.re.ObjectHolderRegistry/REGISTRIES]: Applying holder lookups
[16:46:47] [Render thread/DEBUG] [ne.mi.re.ObjectHolderRef/]: Unable to lookup danmachi:unicorn_horn for public static net.minecraft.item.Item imnotjahan.mod.danmachi.init.Items.UNICORN_HORN. This means the object wasn't registered. It's likely just mod options.
[16:46:47] [Render thread/DEBUG] [ne.mi.re.ObjectHolderRegistry/REGISTRIES]: Holder lookups applied
[16:50:01] [Render thread/DEBUG] [ne.mi.fm.se.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:forge for mod file D:\danmachimod\v1.16.5\build\fg_cache\net\minecraftforge\forge\1.16.5-36.1.32_mapped_official_1.16.5\forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar
[16:50:01] [Render thread/DEBUG] [ne.mi.fm.se.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:danmachi for mod file D:\danmachimod\v1.16.5\out\production\resources
[16:50:01] [Render thread/DEBUG] [ne.mi.fm.se.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:jei for mod file C:\Users\Jahan\.gradle\caches\forge_gradle\deobf_dependencies\mezz\jei\jei-1.16.5\7.6.1.75_mapped_official_1.16.5\jei-1.16.5-7.6.1.75_mapped_official_1.16.5.jar
[16:50:01] [Render thread/DEBUG] [ne.mi.co.ForgeTagHandler/]: Gathering custom tag collection reader from types.
[16:50:01] [Render thread/WARN] [minecraft/Commands]: Ambiguity between arguments [teleport, destination] and [teleport, targets] with inputs: [Player, 0123, @e, dd12be42-52a9-4a91-a8a1-11c01849e498]
[16:50:01] [Render thread/WARN] [minecraft/Commands]: Ambiguity between arguments [teleport, location] and [teleport, destination] with inputs: [0.1 -0.5 .9, 0 0 0]
[16:50:01] [Render thread/WARN] [minecraft/Commands]: Ambiguity between arguments [teleport, location] and [teleport, targets] with inputs: [0.1 -0.5 .9, 0 0 0]
[16:50:01] [Render thread/WARN] [minecraft/Commands]: Ambiguity between arguments [teleport, targets] and [teleport, destination] with inputs: [Player, 0123, dd12be42-52a9-4a91-a8a1-11c01849e498]
[16:50:01] [Render thread/WARN] [minecraft/Commands]: Ambiguity between arguments [teleport, targets, location] and [teleport, targets, destination] with inputs: [0.1 -0.5 .9, 0 0 0]
[16:50:01] [Render thread/INFO] [minecraft/SimpleReloadableResourceManager]: Reloading ResourceManager: Default, forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar, resources, jei-1.16.5-7.6.1.75_mapped_official_1.16.5.jar
[16:50:08] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:smelted_damascus_ingot
com.google.gson.JsonSyntaxException: Unknown item tag 'danmachi:damascus_ore'
	at net.minecraft.item.crafting.Ingredient.valueFromJson(Ingredient.java:223) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraftforge.common.crafting.VanillaIngredientSerializer.parse(VanillaIngredientSerializer.java:41) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:155) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.Ingredient.fromJson(Ingredient.java:189) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:23) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:11) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1712) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$loadWorld$29(Minecraft.java:1804) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$displayExperimentalConfirmationDialog$30(Minecraft.java:1834) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.ConfirmBackupScreen.lambda$init$1(ConfirmBackupScreen.java:40) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.Button.onPress(Button.java:26) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.AbstractButton.onClick(AbstractButton.java:18) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.Widget.mouseClicked(Widget.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:50:08] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:orichalcum_wall_1
com.google.gson.JsonSyntaxException: Unknown ingredient type: forge:ore_dict
	at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:153) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.Ingredient.fromJson(Ingredient.java:189) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.ShapedRecipe.keyFromJson(ShapedRecipe.java:252) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe.access$000(ShapedRecipe.java:24) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe$Serializer.fromJson(ShapedRecipe.java:276) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe$Serializer.fromJson(ShapedRecipe.java:272) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1712) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$loadWorld$29(Minecraft.java:1804) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$displayExperimentalConfirmationDialog$30(Minecraft.java:1834) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.ConfirmBackupScreen.lambda$init$1(ConfirmBackupScreen.java:40) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.Button.onPress(Button.java:26) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.AbstractButton.onClick(AbstractButton.java:18) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.Widget.mouseClicked(Widget.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:50:08] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:desperate
com.google.gson.JsonSyntaxException: Invalid or unsupported recipe type 'danmachi:smithing'
	at net.minecraft.item.crafting.RecipeManager.lambda$fromJson$9(RecipeManager.java:140) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at java.util.Optional.orElseThrow(Optional.java:290) ~[?:1.8.0_281] {}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:139) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1712) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$loadWorld$29(Minecraft.java:1804) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$displayExperimentalConfirmationDialog$30(Minecraft.java:1834) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.ConfirmBackupScreen.lambda$init$1(ConfirmBackupScreen.java:40) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.Button.onPress(Button.java:26) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.AbstractButton.onClick(AbstractButton.java:18) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.Widget.mouseClicked(Widget.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:50:08] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:smelted_orichalcum_ingot
com.google.gson.JsonSyntaxException: Unknown item tag 'danmachi:orichalcum_ore'
	at net.minecraft.item.crafting.Ingredient.valueFromJson(Ingredient.java:223) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraftforge.common.crafting.VanillaIngredientSerializer.parse(VanillaIngredientSerializer.java:41) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:155) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.Ingredient.fromJson(Ingredient.java:189) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:23) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:11) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1712) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$loadWorld$29(Minecraft.java:1804) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$displayExperimentalConfirmationDialog$30(Minecraft.java:1834) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.ConfirmBackupScreen.lambda$init$1(ConfirmBackupScreen.java:40) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.Button.onPress(Button.java:26) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.AbstractButton.onClick(AbstractButton.java:18) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.Widget.mouseClicked(Widget.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:50:08] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:orichalcum_wall
com.google.gson.JsonSyntaxException: Unknown ingredient type: forge:ore_dict
	at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:153) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.Ingredient.fromJson(Ingredient.java:189) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.ShapedRecipe.keyFromJson(ShapedRecipe.java:252) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe.access$000(ShapedRecipe.java:24) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe$Serializer.fromJson(ShapedRecipe.java:276) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe$Serializer.fromJson(ShapedRecipe.java:272) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1712) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$loadWorld$29(Minecraft.java:1804) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$displayExperimentalConfirmationDialog$30(Minecraft.java:1834) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.ConfirmBackupScreen.lambda$init$1(ConfirmBackupScreen.java:40) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.Button.onPress(Button.java:26) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.AbstractButton.onClick(AbstractButton.java:18) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.Widget.mouseClicked(Widget.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:50:08] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:orichalcum_ingot
com.google.gson.JsonSyntaxException: Unknown ingredient type: forge:ore_dict
	at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:153) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.Ingredient.fromJson(Ingredient.java:189) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.ShapedRecipe.keyFromJson(ShapedRecipe.java:252) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe.access$000(ShapedRecipe.java:24) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe$Serializer.fromJson(ShapedRecipe.java:276) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe$Serializer.fromJson(ShapedRecipe.java:272) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1712) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$loadWorld$29(Minecraft.java:1804) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$displayExperimentalConfirmationDialog$30(Minecraft.java:1834) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.ConfirmBackupScreen.lambda$init$1(ConfirmBackupScreen.java:40) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.Button.onPress(Button.java:26) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.AbstractButton.onClick(AbstractButton.java:18) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.Widget.mouseClicked(Widget.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:50:08] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:smelted_mythril_ingot
com.google.gson.JsonSyntaxException: Unknown item tag 'danmachi:mythril_ore'
	at net.minecraft.item.crafting.Ingredient.valueFromJson(Ingredient.java:223) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraftforge.common.crafting.VanillaIngredientSerializer.parse(VanillaIngredientSerializer.java:41) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:155) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.Ingredient.fromJson(Ingredient.java:189) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:23) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:11) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1712) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$loadWorld$29(Minecraft.java:1804) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$displayExperimentalConfirmationDialog$30(Minecraft.java:1834) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.ConfirmBackupScreen.lambda$init$1(ConfirmBackupScreen.java:40) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.Button.onPress(Button.java:26) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.AbstractButton.onClick(AbstractButton.java:18) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.Widget.mouseClicked(Widget.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:50:08] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:smelted_adamantite_ingot
com.google.gson.JsonSyntaxException: Unknown item tag 'danmachi:adamantite_ore'
	at net.minecraft.item.crafting.Ingredient.valueFromJson(Ingredient.java:223) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraftforge.common.crafting.VanillaIngredientSerializer.parse(VanillaIngredientSerializer.java:41) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:155) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.Ingredient.fromJson(Ingredient.java:189) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:23) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:11) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1712) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$loadWorld$29(Minecraft.java:1804) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$displayExperimentalConfirmationDialog$30(Minecraft.java:1834) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.ConfirmBackupScreen.lambda$init$1(ConfirmBackupScreen.java:40) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.Button.onPress(Button.java:26) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.AbstractButton.onClick(AbstractButton.java:18) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.Widget.mouseClicked(Widget.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:50:08] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:magic_stone_compass
com.google.gson.JsonSyntaxException: Unknown item 'danmachi:compass'
	at net.minecraft.item.crafting.ShapedRecipe.lambda$itemFromJson$0(ShapedRecipe.java:262) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.Optional.orElseThrow(Optional.java:290) ~[?:1.8.0_281] {}
	at net.minecraft.item.crafting.ShapedRecipe.itemFromJson(ShapedRecipe.java:261) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe$Serializer.fromJson(ShapedRecipe.java:281) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe$Serializer.fromJson(ShapedRecipe.java:272) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1712) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$loadWorld$29(Minecraft.java:1804) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$displayExperimentalConfirmationDialog$30(Minecraft.java:1834) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.ConfirmBackupScreen.lambda$init$1(ConfirmBackupScreen.java:40) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.Button.onPress(Button.java:26) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.AbstractButton.onClick(AbstractButton.java:18) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.Widget.mouseClicked(Widget.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:50:08] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:smelted_nosteel_ingot
com.google.gson.JsonSyntaxException: Unknown item tag 'danmachi:nosteel_ore'
	at net.minecraft.item.crafting.Ingredient.valueFromJson(Ingredient.java:223) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraftforge.common.crafting.VanillaIngredientSerializer.parse(VanillaIngredientSerializer.java:41) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:155) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.Ingredient.fromJson(Ingredient.java:189) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:23) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:11) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1712) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$loadWorld$29(Minecraft.java:1804) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$displayExperimentalConfirmationDialog$30(Minecraft.java:1834) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.ConfirmBackupScreen.lambda$init$1(ConfirmBackupScreen.java:40) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.Button.onPress(Button.java:26) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.AbstractButton.onClick(AbstractButton.java:18) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.Widget.mouseClicked(Widget.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:50:08] [Render thread/INFO] [minecraft/RecipeManager]: Loaded 7 recipes
[16:50:11] [Render thread/INFO] [minecraft/AdvancementList]: Loaded 927 advancements
[16:50:12] [Render thread/INFO] [ne.mi.re.GameData/REGISTRIES]: Injecting existing registry data into this CLIENT instance
[16:50:13] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Block Sync: ACTIVE -> STAGING
[16:50:13] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Fluid Sync: ACTIVE -> STAGING
[16:50:13] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item Sync: ACTIVE -> STAGING
[16:50:13] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Effect Sync: ACTIVE -> STAGING
[16:50:13] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry SoundEvent Sync: ACTIVE -> STAGING
[16:50:13] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Potion Sync: ACTIVE -> STAGING
[16:50:13] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Enchantment Sync: ACTIVE -> STAGING
[16:50:13] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry EntityType Sync: ACTIVE -> STAGING
[16:50:13] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry TileEntityType Sync: ACTIVE -> STAGING
[16:50:13] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry ParticleType Sync: ACTIVE -> STAGING
[16:50:13] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry ContainerType Sync: ACTIVE -> STAGING
[16:50:13] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry PaintingType Sync: ACTIVE -> STAGING
[16:50:13] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry IRecipeSerializer Sync: ACTIVE -> STAGING
[16:50:13] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Attribute Sync: ACTIVE -> STAGING
[16:50:13] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry StatType Sync: ACTIVE -> STAGING
[16:50:13] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry VillagerProfession Sync: ACTIVE -> STAGING
[16:50:13] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry PointOfInterestType Sync: ACTIVE -> STAGING
[16:50:13] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry MemoryModuleType Sync: ACTIVE -> STAGING
[16:50:13] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry SensorType Sync: ACTIVE -> STAGING
[16:50:13] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Schedule Sync: ACTIVE -> STAGING
[16:50:13] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Activity Sync: ACTIVE -> STAGING
[16:50:13] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry WorldCarver Sync: ACTIVE -> STAGING
[16:50:13] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry SurfaceBuilder Sync: ACTIVE -> STAGING
[16:50:13] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Feature Sync: ACTIVE -> STAGING
[16:50:13] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Placement Sync: ACTIVE -> STAGING
[16:50:13] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry ChunkStatus Sync: ACTIVE -> STAGING
[16:50:13] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Structure Sync: ACTIVE -> STAGING
[16:50:13] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry BlockStateProviderType Sync: ACTIVE -> STAGING
[16:50:13] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry BlockPlacerType Sync: ACTIVE -> STAGING
[16:50:13] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry FoliagePlacerType Sync: ACTIVE -> STAGING
[16:50:13] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry TreeDecoratorType Sync: ACTIVE -> STAGING
[16:50:13] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Biome Sync: ACTIVE -> STAGING
[16:50:13] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry DataSerializerEntry Sync: ACTIVE -> STAGING
[16:50:13] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry GlobalLootModifierSerializer Sync: ACTIVE -> STAGING
[16:50:13] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry ForgeWorldType Sync: ACTIVE -> STAGING
[16:50:14] [Render thread/DEBUG] [ne.mi.re.ObjectHolderRegistry/REGISTRIES]: Applying holder lookups
[16:50:14] [Render thread/DEBUG] [ne.mi.re.ObjectHolderRef/]: Unable to lookup danmachi:unicorn_horn for public static net.minecraft.item.Item imnotjahan.mod.danmachi.init.Items.UNICORN_HORN. This means the object wasn't registered. It's likely just mod options.
[16:50:14] [Render thread/DEBUG] [ne.mi.re.ObjectHolderRegistry/REGISTRIES]: Holder lookups applied
[16:50:15] [Render thread/DEBUG] [ne.mi.fm.se.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:forge for mod file D:\danmachimod\v1.16.5\build\fg_cache\net\minecraftforge\forge\1.16.5-36.1.32_mapped_official_1.16.5\forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar
[16:50:15] [Render thread/DEBUG] [ne.mi.fm.se.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:danmachi for mod file D:\danmachimod\v1.16.5\out\production\resources
[16:50:15] [Render thread/DEBUG] [ne.mi.fm.se.ServerLifecycleHooks/CORE]: Generating PackInfo named mod:jei for mod file C:\Users\Jahan\.gradle\caches\forge_gradle\deobf_dependencies\mezz\jei\jei-1.16.5\7.6.1.75_mapped_official_1.16.5\jei-1.16.5-7.6.1.75_mapped_official_1.16.5.jar
[16:50:15] [Render thread/DEBUG] [ne.mi.co.ForgeTagHandler/]: Gathering custom tag collection reader from types.
[16:50:15] [Render thread/WARN] [minecraft/Commands]: Ambiguity between arguments [teleport, destination] and [teleport, targets] with inputs: [Player, 0123, @e, dd12be42-52a9-4a91-a8a1-11c01849e498]
[16:50:15] [Render thread/WARN] [minecraft/Commands]: Ambiguity between arguments [teleport, location] and [teleport, destination] with inputs: [0.1 -0.5 .9, 0 0 0]
[16:50:15] [Render thread/WARN] [minecraft/Commands]: Ambiguity between arguments [teleport, location] and [teleport, targets] with inputs: [0.1 -0.5 .9, 0 0 0]
[16:50:15] [Render thread/WARN] [minecraft/Commands]: Ambiguity between arguments [teleport, targets] and [teleport, destination] with inputs: [Player, 0123, dd12be42-52a9-4a91-a8a1-11c01849e498]
[16:50:15] [Render thread/WARN] [minecraft/Commands]: Ambiguity between arguments [teleport, targets, location] and [teleport, targets, destination] with inputs: [0.1 -0.5 .9, 0 0 0]
[16:50:15] [Render thread/INFO] [minecraft/SimpleReloadableResourceManager]: Reloading ResourceManager: Default, forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar, resources, jei-1.16.5-7.6.1.75_mapped_official_1.16.5.jar
[16:50:23] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:smelted_damascus_ingot
com.google.gson.JsonSyntaxException: Unknown item tag 'danmachi:damascus_ore'
	at net.minecraft.item.crafting.Ingredient.valueFromJson(Ingredient.java:223) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraftforge.common.crafting.VanillaIngredientSerializer.parse(VanillaIngredientSerializer.java:41) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:155) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.Ingredient.fromJson(Ingredient.java:189) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:23) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:11) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1715) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$loadWorld$29(Minecraft.java:1804) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$displayExperimentalConfirmationDialog$30(Minecraft.java:1834) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.ConfirmBackupScreen.lambda$init$1(ConfirmBackupScreen.java:40) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.Button.onPress(Button.java:26) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.AbstractButton.onClick(AbstractButton.java:18) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.Widget.mouseClicked(Widget.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:50:23] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:orichalcum_wall_1
com.google.gson.JsonSyntaxException: Unknown ingredient type: forge:ore_dict
	at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:153) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.Ingredient.fromJson(Ingredient.java:189) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.ShapedRecipe.keyFromJson(ShapedRecipe.java:252) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe.access$000(ShapedRecipe.java:24) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe$Serializer.fromJson(ShapedRecipe.java:276) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe$Serializer.fromJson(ShapedRecipe.java:272) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1715) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$loadWorld$29(Minecraft.java:1804) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$displayExperimentalConfirmationDialog$30(Minecraft.java:1834) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.ConfirmBackupScreen.lambda$init$1(ConfirmBackupScreen.java:40) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.Button.onPress(Button.java:26) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.AbstractButton.onClick(AbstractButton.java:18) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.Widget.mouseClicked(Widget.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:50:23] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:desperate
com.google.gson.JsonSyntaxException: Invalid or unsupported recipe type 'danmachi:smithing'
	at net.minecraft.item.crafting.RecipeManager.lambda$fromJson$9(RecipeManager.java:140) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at java.util.Optional.orElseThrow(Optional.java:290) ~[?:1.8.0_281] {}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:139) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1715) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$loadWorld$29(Minecraft.java:1804) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$displayExperimentalConfirmationDialog$30(Minecraft.java:1834) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.ConfirmBackupScreen.lambda$init$1(ConfirmBackupScreen.java:40) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.Button.onPress(Button.java:26) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.AbstractButton.onClick(AbstractButton.java:18) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.Widget.mouseClicked(Widget.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:50:23] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:smelted_orichalcum_ingot
com.google.gson.JsonSyntaxException: Unknown item tag 'danmachi:orichalcum_ore'
	at net.minecraft.item.crafting.Ingredient.valueFromJson(Ingredient.java:223) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraftforge.common.crafting.VanillaIngredientSerializer.parse(VanillaIngredientSerializer.java:41) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:155) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.Ingredient.fromJson(Ingredient.java:189) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:23) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:11) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1715) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$loadWorld$29(Minecraft.java:1804) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$displayExperimentalConfirmationDialog$30(Minecraft.java:1834) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.ConfirmBackupScreen.lambda$init$1(ConfirmBackupScreen.java:40) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.Button.onPress(Button.java:26) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.AbstractButton.onClick(AbstractButton.java:18) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.Widget.mouseClicked(Widget.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:50:23] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:orichalcum_wall
com.google.gson.JsonSyntaxException: Unknown ingredient type: forge:ore_dict
	at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:153) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.Ingredient.fromJson(Ingredient.java:189) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.ShapedRecipe.keyFromJson(ShapedRecipe.java:252) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe.access$000(ShapedRecipe.java:24) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe$Serializer.fromJson(ShapedRecipe.java:276) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe$Serializer.fromJson(ShapedRecipe.java:272) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1715) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$loadWorld$29(Minecraft.java:1804) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$displayExperimentalConfirmationDialog$30(Minecraft.java:1834) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.ConfirmBackupScreen.lambda$init$1(ConfirmBackupScreen.java:40) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.Button.onPress(Button.java:26) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.AbstractButton.onClick(AbstractButton.java:18) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.Widget.mouseClicked(Widget.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:50:23] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:orichalcum_ingot
com.google.gson.JsonSyntaxException: Unknown ingredient type: forge:ore_dict
	at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:153) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.Ingredient.fromJson(Ingredient.java:189) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.ShapedRecipe.keyFromJson(ShapedRecipe.java:252) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe.access$000(ShapedRecipe.java:24) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe$Serializer.fromJson(ShapedRecipe.java:276) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe$Serializer.fromJson(ShapedRecipe.java:272) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1715) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$loadWorld$29(Minecraft.java:1804) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$displayExperimentalConfirmationDialog$30(Minecraft.java:1834) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.ConfirmBackupScreen.lambda$init$1(ConfirmBackupScreen.java:40) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.Button.onPress(Button.java:26) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.AbstractButton.onClick(AbstractButton.java:18) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.Widget.mouseClicked(Widget.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:50:23] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:smelted_mythril_ingot
com.google.gson.JsonSyntaxException: Unknown item tag 'danmachi:mythril_ore'
	at net.minecraft.item.crafting.Ingredient.valueFromJson(Ingredient.java:223) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraftforge.common.crafting.VanillaIngredientSerializer.parse(VanillaIngredientSerializer.java:41) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:155) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.Ingredient.fromJson(Ingredient.java:189) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:23) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:11) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1715) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$loadWorld$29(Minecraft.java:1804) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$displayExperimentalConfirmationDialog$30(Minecraft.java:1834) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.ConfirmBackupScreen.lambda$init$1(ConfirmBackupScreen.java:40) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.Button.onPress(Button.java:26) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.AbstractButton.onClick(AbstractButton.java:18) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.Widget.mouseClicked(Widget.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:50:23] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:smelted_adamantite_ingot
com.google.gson.JsonSyntaxException: Unknown item tag 'danmachi:adamantite_ore'
	at net.minecraft.item.crafting.Ingredient.valueFromJson(Ingredient.java:223) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraftforge.common.crafting.VanillaIngredientSerializer.parse(VanillaIngredientSerializer.java:41) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:155) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.Ingredient.fromJson(Ingredient.java:189) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:23) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:11) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1715) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$loadWorld$29(Minecraft.java:1804) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$displayExperimentalConfirmationDialog$30(Minecraft.java:1834) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.ConfirmBackupScreen.lambda$init$1(ConfirmBackupScreen.java:40) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.Button.onPress(Button.java:26) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.AbstractButton.onClick(AbstractButton.java:18) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.Widget.mouseClicked(Widget.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:50:23] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:magic_stone_compass
com.google.gson.JsonSyntaxException: Unknown item 'danmachi:compass'
	at net.minecraft.item.crafting.ShapedRecipe.lambda$itemFromJson$0(ShapedRecipe.java:262) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.Optional.orElseThrow(Optional.java:290) ~[?:1.8.0_281] {}
	at net.minecraft.item.crafting.ShapedRecipe.itemFromJson(ShapedRecipe.java:261) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe$Serializer.fromJson(ShapedRecipe.java:281) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.ShapedRecipe$Serializer.fromJson(ShapedRecipe.java:272) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1715) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$loadWorld$29(Minecraft.java:1804) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$displayExperimentalConfirmationDialog$30(Minecraft.java:1834) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.ConfirmBackupScreen.lambda$init$1(ConfirmBackupScreen.java:40) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.Button.onPress(Button.java:26) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.AbstractButton.onClick(AbstractButton.java:18) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.Widget.mouseClicked(Widget.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:50:23] [Render thread/ERROR] [minecraft/RecipeManager]: Parsing error loading recipe danmachi:smelted_nosteel_ingot
com.google.gson.JsonSyntaxException: Unknown item tag 'danmachi:nosteel_ore'
	at net.minecraft.item.crafting.Ingredient.valueFromJson(Ingredient.java:223) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraftforge.common.crafting.VanillaIngredientSerializer.parse(VanillaIngredientSerializer.java:41) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:155) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.Ingredient.fromJson(Ingredient.java:189) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:23) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.CookingRecipeSerializer.fromJson(CookingRecipeSerializer.java:11) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.item.crafting.RecipeManager.fromJson(RecipeManager.java:141) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:61) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.item.crafting.RecipeManager.apply(RecipeManager.java:38) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.resources.ReloadListener.lambda$reload$1(ReloadListener.java:14) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at java.util.concurrent.CompletableFuture.uniAccept(CompletableFuture.java:670) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$UniAccept.tryFire(CompletableFuture.java:646) ~[?:1.8.0_281] {}
	at java.util.concurrent.CompletableFuture$Completion.run(CompletableFuture.java:456) ~[?:1.8.0_281] {}
	at net.minecraft.resources.AsyncReloader.lambda$null$3(AsyncReloader.java:66) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.doRunTask(ThreadTaskExecutor.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.RecursiveEventLoop.doRunTask(RecursiveEventLoop.java:22) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.pollTask(ThreadTaskExecutor.java:109) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.managedBlock(ThreadTaskExecutor.java:119) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.Minecraft.makeServerStem(Minecraft.java:1863) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.loadWorld(Minecraft.java:1715) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$loadWorld$29(Minecraft.java:1804) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.lambda$displayExperimentalConfirmationDialog$30(Minecraft.java:1834) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.ConfirmBackupScreen.lambda$init$1(ConfirmBackupScreen.java:40) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.Button.onPress(Button.java:26) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.button.AbstractButton.onClick(AbstractButton.java:18) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.widget.Widget.mouseClicked(Widget.java:136) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.INestedGuiEventHandler.mouseClicked(INestedGuiEventHandler.java:28) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$onPress$0(MouseHelper.java:87) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.gui.screen.Screen.wrapScreenError(Screen.java:427) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.onPress(MouseHelper.java:85) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.MouseHelper.lambda$null$4(MouseHelper.java:175) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.util.concurrent.ThreadTaskExecutor.execute(ThreadTaskExecutor.java:86) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B}
	at net.minecraft.client.MouseHelper.lambda$setup$5(MouseHelper.java:174) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar:build 10] {}
	at org.lwjgl.glfw.GLFW.glfwWaitEventsTimeout(GLFW.java:3174) ~[lwjgl-glfw-3.2.2.jar:build 10] {}
	at com.mojang.blaze3d.systems.RenderSystem.limitDisplayFPS(RenderSystem.java:112) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.runTick(Minecraft.java:999) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.Minecraft.run(Minecraft.java:607) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:accesstransformer:B,pl:runtimedistcleaner:A}
	at net.minecraft.client.main.Main.main(Main.java:184) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {re:classloading,pl:runtimedistcleaner:A}
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_281] {}
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[?:1.8.0_281] {}
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:1.8.0_281] {}
	at java.lang.reflect.Method.invoke(Method.java:498) ~[?:1.8.0_281] {}
	at net.minecraftforge.userdev.FMLUserdevClientLaunchProvider.lambda$launchService$0(FMLUserdevClientLaunchProvider.java:52) ~[forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:54) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:72) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.run(Launcher.java:82) [modlauncher-8.0.9.jar:?] {}
	at cpw.mods.modlauncher.Launcher.main(Launcher.java:66) [modlauncher-8.0.9.jar:?] {}
	at net.minecraftforge.userdev.LaunchTesting.main(LaunchTesting.java:105) [forge-1.16.5-36.1.32_mapped_official_1.16.5-recomp.jar:?] {}
[16:50:23] [Render thread/INFO] [minecraft/RecipeManager]: Loaded 7 recipes
[16:50:26] [Render thread/INFO] [minecraft/AdvancementList]: Loaded 927 advancements
[16:50:28] [Render thread/INFO] [ne.mi.re.GameData/REGISTRIES]: Injecting existing registry data into this CLIENT instance
[16:50:28] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Block Sync: ACTIVE -> STAGING
[16:50:28] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Fluid Sync: ACTIVE -> STAGING
[16:50:28] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item Sync: ACTIVE -> STAGING
[16:50:28] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Effect Sync: ACTIVE -> STAGING
[16:50:28] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry SoundEvent Sync: ACTIVE -> STAGING
[16:50:28] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Potion Sync: ACTIVE -> STAGING
[16:50:28] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Enchantment Sync: ACTIVE -> STAGING
[16:50:28] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry EntityType Sync: ACTIVE -> STAGING
[16:50:28] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry TileEntityType Sync: ACTIVE -> STAGING
[16:50:28] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry ParticleType Sync: ACTIVE -> STAGING
[16:50:28] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry ContainerType Sync: ACTIVE -> STAGING
[16:50:28] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry PaintingType Sync: ACTIVE -> STAGING
[16:50:28] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry IRecipeSerializer Sync: ACTIVE -> STAGING
[16:50:28] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Attribute Sync: ACTIVE -> STAGING
[16:50:28] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry StatType Sync: ACTIVE -> STAGING
[16:50:28] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry VillagerProfession Sync: ACTIVE -> STAGING
[16:50:28] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry PointOfInterestType Sync: ACTIVE -> STAGING
[16:50:28] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry MemoryModuleType Sync: ACTIVE -> STAGING
[16:50:28] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry SensorType Sync: ACTIVE -> STAGING
[16:50:28] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Schedule Sync: ACTIVE -> STAGING
[16:50:28] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Activity Sync: ACTIVE -> STAGING
[16:50:28] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry WorldCarver Sync: ACTIVE -> STAGING
[16:50:28] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry SurfaceBuilder Sync: ACTIVE -> STAGING
[16:50:28] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Feature Sync: ACTIVE -> STAGING
[16:50:28] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Placement Sync: ACTIVE -> STAGING
[16:50:28] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry ChunkStatus Sync: ACTIVE -> STAGING
[16:50:28] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Structure Sync: ACTIVE -> STAGING
[16:50:28] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry BlockStateProviderType Sync: ACTIVE -> STAGING
[16:50:28] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry BlockPlacerType Sync: ACTIVE -> STAGING
[16:50:28] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry FoliagePlacerType Sync: ACTIVE -> STAGING
[16:50:28] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry TreeDecoratorType Sync: ACTIVE -> STAGING
[16:50:28] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Biome Sync: ACTIVE -> STAGING
[16:50:28] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry DataSerializerEntry Sync: ACTIVE -> STAGING
[16:50:28] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry GlobalLootModifierSerializer Sync: ACTIVE -> STAGING
[16:50:28] [Render thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry ForgeWorldType Sync: ACTIVE -> STAGING
[16:50:30] [Render thread/DEBUG] [ne.mi.re.ObjectHolderRegistry/REGISTRIES]: Applying holder lookups
[16:50:30] [Render thread/DEBUG] [ne.mi.re.ObjectHolderRef/]: Unable to lookup danmachi:unicorn_horn for public static net.minecraft.item.Item imnotjahan.mod.danmachi.init.Items.UNICORN_HORN. This means the object wasn't registered. It's likely just mod options.
[16:50:30] [Render thread/DEBUG] [ne.mi.re.ObjectHolderRegistry/REGISTRIES]: Holder lookups applied
[16:50:30] [Render thread/DEBUG] [ne.mi.fm.FMLWorldPersistenceHook/WP]: Gathering id map for writing to world save New World
[16:50:30] [Render thread/DEBUG] [ne.mi.fm.FMLWorldPersistenceHook/WP]: ID Map collection complete New World
[16:50:31] [Render thread/INFO] [mojang/YggdrasilAuthenticationService]: Environment: authHost='https://authserver.mojang.com', accountsHost='https://api.mojang.com', sessionHost='https://sessionserver.mojang.com', servicesHost='https://api.minecraftservices.com', name='PROD'
[16:50:34] [Server thread/INFO] [minecraft/IntegratedServer]: Starting integrated minecraft server version 1.16.5
[16:50:34] [Server thread/INFO] [minecraft/MinecraftServer]: Generating keypair
[16:50:34] [Server thread/DEBUG] [ne.mi.fm.lo.FileUtils/CORE]: Found existing serverconfig directory : .\saves\New World (7)\serverconfig
[16:50:34] [Server thread/DEBUG] [ne.mi.fm.co.ConfigTracker/CONFIG]: Loading configs type SERVER
[16:50:34] [Server thread/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Built TOML config for .\saves\New World (7)\serverconfig\forge-server.toml
[16:50:34] [Server thread/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Loaded TOML config file .\saves\New World (7)\serverconfig\forge-server.toml
[16:50:34] [Server thread/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Watching TOML config file .\saves\New World (7)\serverconfig\forge-server.toml for changes
[16:50:34] [Server thread/DEBUG] [ne.mi.co.ForgeConfig/FORGEMOD]: Loaded forge config file forge-server.toml
[16:50:34] [Thread-1/DEBUG] [ne.mi.fm.co.ConfigFileTypeHandler/CONFIG]: Config file forge-server.toml changed, sending notifies
[16:50:34] [Thread-1/DEBUG] [ne.mi.co.ForgeConfig/FORGEMOD]: Forge config just got changed on the file system!
[16:50:35] [Server thread/INFO] [minecraft/MinecraftServer]: Preparing start region for dimension minecraft:overworld
[16:50:39] [Render thread/INFO] [minecraft/LoggingChunkStatusListener]: Preparing spawn area: 0%
[16:50:39] [Render thread/INFO] [minecraft/LoggingChunkStatusListener]: Preparing spawn area: 0%
[16:50:39] [Render thread/INFO] [minecraft/LoggingChunkStatusListener]: Preparing spawn area: 0%
[16:50:39] [Render thread/INFO] [minecraft/LoggingChunkStatusListener]: Preparing spawn area: 0%
[16:50:39] [Render thread/INFO] [minecraft/LoggingChunkStatusListener]: Preparing spawn area: 0%
[16:50:39] [Render thread/INFO] [minecraft/LoggingChunkStatusListener]: Preparing spawn area: 0%
[16:50:39] [Render thread/INFO] [minecraft/LoggingChunkStatusListener]: Preparing spawn area: 0%
[16:50:39] [Render thread/INFO] [minecraft/LoggingChunkStatusListener]: Preparing spawn area: 0%
[16:50:39] [Render thread/INFO] [minecraft/LoggingChunkStatusListener]: Preparing spawn area: 0%
[16:50:40] [Render thread/INFO] [minecraft/LoggingChunkStatusListener]: Preparing spawn area: 0%
[16:50:40] [Render thread/INFO] [minecraft/LoggingChunkStatusListener]: Preparing spawn area: 0%
[16:50:41] [Render thread/INFO] [minecraft/LoggingChunkStatusListener]: Preparing spawn area: 38%
[16:50:41] [Render thread/INFO] [minecraft/LoggingChunkStatusListener]: Preparing spawn area: 63%
[16:50:43] [Render thread/INFO] [minecraft/LoggingChunkStatusListener]: Time elapsed: 7660 ms
[16:50:44] [Server thread/INFO] [minecraft/IntegratedServer]: Changing view distance to 7, from 10
[16:50:45] [Server thread/WARN] [minecraft/MinecraftServer]: Can't keep up! Is the server overloaded? Running 2186ms or 43 ticks behind
[16:50:51] [Netty Local Client IO #0/DEBUG] [ne.mi.fm.ne.FMLHandshakeHandler/FMLHANDSHAKE]: Starting local connection.
[16:50:51] [Netty Server IO #1/DEBUG] [ne.mi.co.tr.CoreModBaseTransformer/COREMOD]: Transforming net/minecraft/network/play/client/CClientSettingsPacket
[16:50:51] [Netty Server IO #1/DEBUG] [ne.mi.fm.ne.FMLHandshakeHandler/FMLHANDSHAKE]: Starting local connection.
[16:50:52] [Server thread/DEBUG] [ne.mi.fm.ne.FMLHandshakeHandler/FMLHANDSHAKE]: Sending ticking packet info 'net.minecraftforge.fml.network.FMLHandshakeMessages$S2CModList' to 'fml:handshake' sequence 0
[16:50:52] [Server thread/DEBUG] [ne.mi.fm.ne.FMLHandshakeHandler/FMLHANDSHAKE]: Sending ticking packet info 'Config forge-server.toml' to 'fml:handshake' sequence 1
[16:50:52] [Netty Local Client IO #0/DEBUG] [ne.mi.fm.ne.FMLLoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 0
[16:50:52] [Netty Local Client IO #0/DEBUG] [ne.mi.fm.ne.FMLHandshakeHandler/FMLHANDSHAKE]: Logging into server with mod list [minecraft, forge, danmachi, jei]
[16:50:52] [Netty Local Client IO #0/DEBUG] [ne.mi.fm.ne.NetworkRegistry/NETREGISTRY]: Channel 'fml:loginwrapper' : Version test of 'FML2' from server : ACCEPTED
[16:50:52] [Netty Local Client IO #0/DEBUG] [ne.mi.fm.ne.NetworkRegistry/NETREGISTRY]: Channel 'fml:handshake' : Version test of 'FML2' from server : ACCEPTED
[16:50:52] [Netty Local Client IO #0/DEBUG] [ne.mi.fm.ne.NetworkRegistry/NETREGISTRY]: Channel 'forge:split_11' : Version test of '1.1' from server : ACCEPTED
[16:50:52] [Netty Local Client IO #0/DEBUG] [ne.mi.fm.ne.NetworkRegistry/NETREGISTRY]: Channel 'jei:channel' : Version test of '1.0.0' from server : ACCEPTED
[16:50:52] [Netty Local Client IO #0/DEBUG] [ne.mi.fm.ne.NetworkRegistry/NETREGISTRY]: Channel 'danmachi:main' : Version test of '2' from server : ACCEPTED
[16:50:52] [Netty Local Client IO #0/DEBUG] [ne.mi.fm.ne.NetworkRegistry/NETREGISTRY]: Channel 'minecraft:unregister' : Version test of 'FML2' from server : ACCEPTED
[16:50:52] [Netty Local Client IO #0/DEBUG] [ne.mi.fm.ne.NetworkRegistry/NETREGISTRY]: Channel 'fml:play' : Version test of 'FML2' from server : ACCEPTED
[16:50:52] [Netty Local Client IO #0/DEBUG] [ne.mi.fm.ne.NetworkRegistry/NETREGISTRY]: Channel 'minecraft:register' : Version test of 'FML2' from server : ACCEPTED
[16:50:52] [Netty Local Client IO #0/DEBUG] [ne.mi.fm.ne.NetworkRegistry/NETREGISTRY]: Channel 'forge:split' : Version test of '1.0' from server : ACCEPTED
[16:50:52] [Netty Local Client IO #0/DEBUG] [ne.mi.fm.ne.NetworkRegistry/NETREGISTRY]: Accepting channel list from server
[16:50:52] [Netty Local Client IO #0/DEBUG] [ne.mi.fm.ne.FMLLoginWrapper/FMLHANDSHAKE]: Dispatching wrapped packet reply for channel fml:handshake with index 0
[16:50:52] [Netty Local Client IO #0/DEBUG] [ne.mi.fm.ne.FMLHandshakeHandler/FMLHANDSHAKE]: Accepted server connection
[16:50:52] [Netty Server IO #1/DEBUG] [ne.mi.fm.ne.FMLLoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 0
[16:50:52] [Netty Server IO #1/DEBUG] [ne.mi.fm.ne.FMLHandshakeHandler/FMLHANDSHAKE]: Received client indexed reply 0 of type net.minecraftforge.fml.network.FMLHandshakeMessages$C2SModListReply
[16:50:52] [Netty Local Client IO #0/DEBUG] [ne.mi.fm.ne.FMLHandshakeHandler/REGISTRIES]: Expecting 16 registries: [minecraft:recipe_serializer, minecraft:sound_event, minecraft:particle_type, minecraft:villager_profession, minecraft:item, minecraft:potion, minecraft:block_entity_type, minecraft:block, minecraft:data_serializers, minecraft:mob_effect, minecraft:stat_type, minecraft:menu, minecraft:enchantment, minecraft:motive, minecraft:fluid, minecraft:entity_type]
[16:50:52] [Netty Server IO #1/DEBUG] [ne.mi.fm.ne.FMLHandshakeHandler/FMLHANDSHAKE]: Received client connection with modlist [minecraft, forge, danmachi, jei]
[16:50:52] [Netty Local Client IO #0/DEBUG] [ne.mi.fm.ne.FMLLoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 1
[16:50:52] [Netty Server IO #1/DEBUG] [ne.mi.fm.ne.NetworkRegistry/NETREGISTRY]: Channel 'fml:loginwrapper' : Version test of 'FML2' from client : ACCEPTED
[16:50:52] [Netty Server IO #1/DEBUG] [ne.mi.fm.ne.NetworkRegistry/NETREGISTRY]: Channel 'fml:handshake' : Version test of 'FML2' from client : ACCEPTED
[16:50:52] [Netty Local Client IO #0/DEBUG] [ne.mi.fm.ne.FMLHandshakeHandler/FMLHANDSHAKE]: Received config sync from server
[16:50:52] [Netty Server IO #1/DEBUG] [ne.mi.fm.ne.NetworkRegistry/NETREGISTRY]: Channel 'forge:split_11' : Version test of '1.1' from client : ACCEPTED
[16:50:52] [Netty Local Client IO #0/DEBUG] [ne.mi.fm.ne.FMLLoginWrapper/FMLHANDSHAKE]: Dispatching wrapped packet reply for channel fml:handshake with index 1
[16:50:52] [Netty Server IO #1/DEBUG] [ne.mi.fm.ne.NetworkRegistry/NETREGISTRY]: Channel 'jei:channel' : Version test of '1.0.0' from client : ACCEPTED
[16:50:52] [Netty Server IO #1/DEBUG] [ne.mi.fm.ne.NetworkRegistry/NETREGISTRY]: Channel 'danmachi:main' : Version test of '2' from client : ACCEPTED
[16:50:52] [Netty Server IO #1/DEBUG] [ne.mi.fm.ne.NetworkRegistry/NETREGISTRY]: Channel 'minecraft:unregister' : Version test of 'FML2' from client : ACCEPTED
[16:50:52] [Netty Server IO #1/DEBUG] [ne.mi.fm.ne.NetworkRegistry/NETREGISTRY]: Channel 'fml:play' : Version test of 'FML2' from client : ACCEPTED
[16:50:52] [Netty Server IO #1/DEBUG] [ne.mi.fm.ne.NetworkRegistry/NETREGISTRY]: Channel 'minecraft:register' : Version test of 'FML2' from client : ACCEPTED
[16:50:52] [Netty Server IO #1/DEBUG] [ne.mi.fm.ne.NetworkRegistry/NETREGISTRY]: Channel 'forge:split' : Version test of '1.0' from client : ACCEPTED
[16:50:52] [Netty Server IO #1/DEBUG] [ne.mi.fm.ne.NetworkRegistry/NETREGISTRY]: Accepting channel list from client
[16:50:52] [Netty Server IO #1/DEBUG] [ne.mi.fm.ne.FMLHandshakeHandler/FMLHANDSHAKE]: Accepted client connection mod list
[16:50:52] [Netty Server IO #1/DEBUG] [ne.mi.fm.ne.FMLLoginWrapper/FMLHANDSHAKE]: Recieved login wrapper packet event for channel fml:handshake with index 1
[16:50:52] [Netty Server IO #1/DEBUG] [ne.mi.fm.ne.FMLHandshakeHandler/FMLHANDSHAKE]: Received client indexed reply 1 of type net.minecraftforge.fml.network.FMLHandshakeMessages$C2SAcknowledge
[16:50:52] [Netty Server IO #1/DEBUG] [ne.mi.fm.ne.FMLHandshakeHandler/FMLHANDSHAKE]: Received acknowledgement from client
[16:50:52] [Server thread/DEBUG] [ne.mi.fm.ne.FMLHandshakeHandler/FMLHANDSHAKE]: Handshake complete!
[16:50:52] [Netty Local Client IO #0/INFO] [ne.mi.fm.ne.NetworkHooks/]: Connected to a modded server.
[16:50:52] [Server thread/INFO] [ne.mi.co.AdvancementLoadFix/]: Using new advancement loading for net.minecraft.advancements.PlayerAdvancements@33cb7c71
[16:50:52] [Server thread/INFO] [minecraft/PlayerList]: Dev[local:E:64f15d68] logged in with entity id 149 at (-1.1291816272621122, 67.0, 0.35194815382889566)
[16:50:52] [Server thread/INFO] [minecraft/MinecraftServer]: Dev joined the game
[16:50:56] [Server thread/INFO] [minecraft/IntegratedServer]: Saving and pausing game...
[16:50:56] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld
[16:50:56] [Render thread/INFO] [me.je.ut.LoggedTimer/]: Starting JEI...
[16:50:56] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering item subtypes: jei:minecraft ...
[16:50:56] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering item subtypes: jei:minecraft took 5.315 ms
[16:50:56] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering item subtypes: jei:debug ...
[16:50:56] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering item subtypes: jei:debug took 46.40 μs
[16:50:56] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering item subtypes: jei:vote ...
[16:50:56] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering item subtypes: jei:vote took 21.50 μs
[16:50:56] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering item subtypes: jei:internal ...
[16:50:56] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering item subtypes: jei:internal took 24.50 μs
[16:50:56] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering ingredients: jei:minecraft ...
[16:50:56] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering ingredients: jei:minecraft took 164.3 ms
[16:50:56] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering ingredients: jei:debug ...
[16:50:56] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering ingredients: jei:debug took 122.1 μs
[16:50:56] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering ingredients: jei:vote ...
[16:50:56] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering ingredients: jei:vote took 177.5 μs
[16:50:56] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering ingredients: jei:internal ...
[16:50:56] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering ingredients: jei:internal took 24.20 μs
[16:50:56] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering categories: jei:minecraft ...
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering categories: jei:minecraft took 223.6 ms
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering categories: jei:debug ...
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering categories: jei:debug took 26.50 μs
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering categories: jei:vote ...
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering categories: jei:vote took 18.90 μs
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering categories: jei:internal ...
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering categories: jei:internal took 25.11 ms
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering vanilla category extensions: jei:minecraft ...
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering vanilla category extensions: jei:minecraft took 36.38 ms
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering vanilla category extensions: jei:debug ...
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering vanilla category extensions: jei:debug took 32.70 μs
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering vanilla category extensions: jei:vote ...
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering vanilla category extensions: jei:vote took 23.80 μs
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering vanilla category extensions: jei:internal ...
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering vanilla category extensions: jei:internal took 16.80 μs
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering recipes: jei:minecraft ...
[16:50:57] [Render thread/DEBUG] [me.je.pl.va.an.AnvilRecipeMaker/]: Registered vanilla repair recipes in 9.107 ms
[16:50:57] [Render thread/DEBUG] [me.je.pl.va.an.AnvilRecipeMaker/]: Registered enchantment recipes in 77.03 ms
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering recipes: jei:minecraft took 486.7 ms
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering recipes: jei:debug ...
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering recipes: jei:debug took 72.20 μs
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering recipes: jei:vote ...
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering recipes: jei:vote took 25.10 μs
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering recipes: jei:internal ...
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering recipes: jei:internal took 17.80 μs
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering recipes transfer handlers: jei:minecraft ...
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering recipes transfer handlers: jei:minecraft took 21.70 ms
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering recipes transfer handlers: jei:debug ...
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering recipes transfer handlers: jei:debug took 28.60 μs
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering recipes transfer handlers: jei:vote ...
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering recipes transfer handlers: jei:vote took 17.50 μs
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering recipes transfer handlers: jei:internal ...
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering recipes transfer handlers: jei:internal took 16.70 μs
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering recipe catalysts: jei:minecraft ...
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering recipe catalysts: jei:minecraft took 858.6 μs
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering recipe catalysts: jei:debug ...
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering recipe catalysts: jei:debug took 23.40 μs
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering recipe catalysts: jei:vote ...
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering recipe catalysts: jei:vote took 19.10 μs
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering recipe catalysts: jei:internal ...
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering recipe catalysts: jei:internal took 13.50 μs
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering gui handlers: jei:minecraft ...
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering gui handlers: jei:minecraft took 20.83 ms
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering gui handlers: jei:debug ...
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering gui handlers: jei:debug took 32.50 μs
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering gui handlers: jei:vote ...
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering gui handlers: jei:vote took 35.90 μs
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering gui handlers: jei:internal ...
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering gui handlers: jei:internal took 36.53 ms
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering advanced plugins: jei:minecraft ...
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering advanced plugins: jei:minecraft took 73.40 μs
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering advanced plugins: jei:debug ...
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering advanced plugins: jei:debug took 15.80 μs
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering advanced plugins: jei:vote ...
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering advanced plugins: jei:vote took 13.20 μs
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering advanced plugins: jei:internal ...
[16:50:57] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Registering advanced plugins: jei:internal took 18.70 μs
[16:50:57] [Render thread/INFO] [me.je.ut.LoggedTimer/]: Building ingredient list...
[16:50:57] [Render thread/DEBUG] [me.je.in.IngredientListElementFactory/]: Registering ingredients: ItemStack
[16:50:57] [Render thread/DEBUG] [me.je.in.IngredientListElementFactory/]: Registering ingredients: FluidStack
[16:50:57] [Render thread/INFO] [me.je.ut.LoggedTimer/]: Building ingredient list took 34.51 ms
[16:50:57] [Render thread/INFO] [me.je.ut.LoggedTimer/]: Building ingredient filter...
[16:50:58] [Render thread/INFO] [me.je.ut.LoggedTimer/]: Building ingredient filter took 1.027 s
[16:50:58] [Render thread/INFO] [me.je.ut.LoggedTimer/]: Building bookmarks...
[16:50:58] [Render thread/INFO] [me.je.ut.LoggedTimer/]: Building bookmarks took 5.755 ms
[16:50:58] [Render thread/INFO] [me.je.ut.LoggedTimer/]: Building recipe registry...
[16:50:59] [Render thread/DEBUG] [me.je.re.RecipeManager/]: Loading recipes: minecraft:brewing
[16:50:59] [Render thread/DEBUG] [me.je.re.RecipeManager/]: Loading recipes: minecraft:stonecutting
[16:50:59] [Render thread/DEBUG] [me.je.re.RecipeManager/]: Loading recipes: minecraft:crafting
[16:50:59] [Render thread/DEBUG] [me.je.re.RecipeManager/]: Loading recipes: minecraft:smoking
[16:50:59] [Render thread/DEBUG] [me.je.re.RecipeManager/]: Loading recipes: minecraft:anvil
[16:50:59] [Render thread/DEBUG] [me.je.re.RecipeManager/]: Loading recipes: minecraft:campfire
[16:50:59] [Render thread/DEBUG] [me.je.re.RecipeManager/]: Loading recipes: minecraft:furnace
[16:50:59] [Render thread/DEBUG] [me.je.re.RecipeManager/]: Loading recipes: minecraft:fuel
[16:50:59] [Render thread/DEBUG] [me.je.re.RecipeManager/]: Loading recipes: minecraft:blasting
[16:50:59] [Render thread/DEBUG] [me.je.re.RecipeManager/]: Loading recipes: minecraft:smithing
[16:50:59] [Render thread/INFO] [me.je.ut.LoggedTimer/]: Building recipe registry took 251.6 ms
[16:50:59] [Render thread/INFO] [me.je.ut.LoggedTimer/]: Building runtime...
[16:50:59] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether
[16:50:59] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end
[16:50:59] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[New World]'/danmachi:dungeon_dimension
[16:50:59] [Server thread/DEBUG] [ne.mi.fm.FMLWorldPersistenceHook/WP]: Gathering id map for writing to world save New World
[16:50:59] [Server thread/DEBUG] [ne.mi.fm.FMLWorldPersistenceHook/WP]: ID Map collection complete New World
[16:50:59] [Render thread/INFO] [me.je.ut.LoggedTimer/]: Building runtime took 292.3 ms
[16:50:59] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Sending Runtime: jei:minecraft ...
[16:50:59] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Sending Runtime: jei:minecraft took 85.70 μs
[16:50:59] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Sending Runtime: jei:debug ...
[16:50:59] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Sending Runtime: jei:debug took 49.70 μs
[16:50:59] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Sending Runtime: jei:vote ...
[16:50:59] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Sending Runtime: jei:vote took 14.60 μs
[16:50:59] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Sending Runtime: jei:internal ...
[16:50:59] [Render thread/DEBUG] [me.je.lo.PluginCaller/]: Sending Runtime: jei:internal took 62.80 μs
[16:50:59] [Render thread/INFO] [me.je.ut.LoggedTimer/]: Starting JEI took 3.053 s
[16:50:59] [Render thread/INFO] [minecraft/AdvancementList]: Loaded 20 advancements
[16:51:39] [Server thread/WARN] [minecraft/MinecraftServer]: Can't keep up! Is the server overloaded? Running 2009ms or 40 ticks behind
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:50] [Render thread/WARN] [me.je.gu.GuiEventHandler/]: GUI did not draw the dark background layer behind itself, this may result in display issues: imnotjahan.mod.danmachi.gui.screen.SmithingScreen
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:50] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:51] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:52] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:53] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:54] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:55] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:56] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:57] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:58] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:59] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:59] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:59] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:59] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:59] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:59] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:59] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:59] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:59] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:59] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:59] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:59] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:59] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:59] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:59] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:59] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:59] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:59] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:59] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:59] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:59] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:59] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:59] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:59] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:59] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:59] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:59] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:59] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:59] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:59] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:51:59] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:51:59] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:00] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:00] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:00] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:00] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:00] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:00] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:00] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:00] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:00] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:00] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:00] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:00] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:00] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:00] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:00] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:00] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:00] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:00] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:00] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:00] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:00] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:00] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:00] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:00] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:00] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:00] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:01] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:01] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:01] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:01] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:01] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:01] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:01] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:01] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:01] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:01] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:01] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:01] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:01] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:01] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:01] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:01] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:01] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:01] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:01] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:01] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:01] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:01] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:01] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:01] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:01] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:01] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:01] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:01] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:01] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:01] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:01] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:01] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:01] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:01] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:02] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:02] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:02] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:02] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:02] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:02] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:02] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:02] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:02] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:02] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:02] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:02] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:02] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:02] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:02] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:02] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:02] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:02] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:02] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:02] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:02] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:02] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:02] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:02] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:02] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:02] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:03] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:04] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:05] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:06] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:07] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:08] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:09] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:10] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:11] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:12] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:13] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:14] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:15] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:16] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:17] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:18] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:19] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:20] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:21] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:22] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:23] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:24] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:25] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:26] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:26] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:26] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:26] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:26] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:26] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:26] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:26] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:26] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:26] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:26] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:26] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:26] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:26] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:26] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:26] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:26] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:26] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:26] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:26] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:27] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:27] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:27] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:27] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:27] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:27] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:27] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:27] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:27] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:27] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:27] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:27] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:27] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:27] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:27] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:27] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:27] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:27] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:27] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:27] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:27] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:27] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:27] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:27] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:27] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:27] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:27] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:27] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:27] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:27] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:28] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:28] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:28] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:28] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:28] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:28] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:28] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:28] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:28] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:28] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:28] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:28] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:28] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:28] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:29] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:29] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:29] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:29] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:29] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:29] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:29] [Server thread/WARN] [minecraft/MinecraftServer]: Can't keep up! Is the server overloaded? Running 2238ms or 44 ticks behind
[16:52:29] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:29] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:30] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:30] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:30] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:30] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:30] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:30] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:30] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:30] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:30] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:30] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:30] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:30] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:30] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:30] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:30] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:30] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:30] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:30] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:30] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:30] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:30] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:30] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:30] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:30] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:30] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:30] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:30] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:30] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:30] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:30] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:31] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:32] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:33] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:34] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:35] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:35] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:35] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:35] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:35] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:35] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:35] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:35] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:35] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:35] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:35] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:35] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:35] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:35] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:35] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:35] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:35] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:35] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:35] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:35] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:35] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:35] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:35] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:35] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:35] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:35] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:35] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:35] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:35] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:35] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:35] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:35] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:35] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:35] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:36] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:37] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:38] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:38] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:38] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:38] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:38] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:38] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:38] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:38] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:38] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:38] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:38] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:38] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:38] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:38] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:38] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:38] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:38] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:38] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:38] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:38] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:38] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:38] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:38] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:38] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:38] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:38] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:38] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:38] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:38] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:38] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:39] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:39] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:39] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:39] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:39] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:39] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:39] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:39] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:39] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:39] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:39] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:39] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:39] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:39] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:39] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:39] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:39] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:39] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:39] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:39] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:39] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:39] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:39] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:39] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:39] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:39] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:40] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:40] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:40] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:40] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:40] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:40] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:40] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:40] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:40] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:40] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:40] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:40] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:40] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:40] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:40] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:40] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:40] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:40] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:40] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:40] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:40] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:40] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:40] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:40] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:40] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:40] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:40] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:40] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:40] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:40] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:40] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:40] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:40] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:41] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:41] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:41] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:41] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:41] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:41] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:41] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:41] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:41] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:41] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:41] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:41] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:41] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:41] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:41] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:41] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:41] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:41] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:41] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:41] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:41] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:41] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:41] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:41] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:41] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:41] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:41] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:41] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:41] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:41] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:41] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:41] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:41] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:41] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:41] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:42] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:42] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:42] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:42] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:42] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:42] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:42] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:42] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:42] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:42] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:42] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:42] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:42] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:42] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:42] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:42] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:42] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:42] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:42] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:42] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:42] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:42] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:42] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:42] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:42] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:42] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:42] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:42] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:42] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:42] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:42] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:42] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:43] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:44] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:45] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:46] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:47] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:47] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:47] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:47] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:47] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:47] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:47] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:47] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:47] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:47] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:47] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:47] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:47] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:173]: {}
[16:52:47] [Server thread/INFO] [STDOUT/]: [imnotjahan.mod.danmachi.gui.container.SmithingContainer:broadcastChanges:174]: []
[16:52:47] [Render thread/INFO] [minecraft/Minecraft]: Stopping!
[16:52:47] [Server thread/INFO] [minecraft/ServerPlayNetHandler]: Dev lost connection: Disconnected
[16:52:47] [Server thread/INFO] [minecraft/MinecraftServer]: Dev left the game
[16:52:47] [Server thread/INFO] [minecraft/ServerPlayNetHandler]: Stopping singleplayer server as player logged out
[16:52:47] [Server thread/INFO] [minecraft/MinecraftServer]: Stopping server
[16:52:47] [Server thread/INFO] [minecraft/MinecraftServer]: Saving players
[16:52:47] [Server thread/INFO] [minecraft/MinecraftServer]: Saving worlds
[16:52:47] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[New World]'/minecraft:overworld
[16:52:50] [Server thread/INFO] [minecraft/ChunkManager]: ThreadedAnvilChunkStorage (New World (7)): All chunks are saved
[16:52:50] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_nether
[16:52:50] [Server thread/INFO] [minecraft/ChunkManager]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[16:52:50] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[New World]'/minecraft:the_end
[16:52:50] [Server thread/INFO] [minecraft/ChunkManager]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[16:52:50] [Server thread/INFO] [minecraft/MinecraftServer]: Saving chunks for level 'ServerLevel[New World]'/danmachi:dungeon_dimension
[16:52:50] [Server thread/INFO] [minecraft/ChunkManager]: ThreadedAnvilChunkStorage (dungeon_dimension): All chunks are saved
[16:52:50] [Server thread/DEBUG] [ne.mi.fm.FMLWorldPersistenceHook/WP]: Gathering id map for writing to world save New World
[16:52:50] [Server thread/DEBUG] [ne.mi.fm.FMLWorldPersistenceHook/WP]: ID Map collection complete New World
[16:52:50] [Server thread/INFO] [minecraft/ChunkManager]: ThreadedAnvilChunkStorage (New World (7)): All chunks are saved
[16:52:50] [Server thread/INFO] [minecraft/ChunkManager]: ThreadedAnvilChunkStorage (DIM-1): All chunks are saved
[16:52:50] [Server thread/INFO] [minecraft/ChunkManager]: ThreadedAnvilChunkStorage (DIM1): All chunks are saved
[16:52:50] [Server thread/INFO] [minecraft/ChunkManager]: ThreadedAnvilChunkStorage (dungeon_dimension): All chunks are saved
[16:52:50] [Server thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: Reverting to FROZEN data state.
[16:52:50] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Block Sync: ACTIVE -> FROZEN
[16:52:50] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Fluid Sync: ACTIVE -> FROZEN
[16:52:50] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Item Sync: ACTIVE -> FROZEN
[16:52:50] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Effect Sync: ACTIVE -> FROZEN
[16:52:50] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry SoundEvent Sync: ACTIVE -> FROZEN
[16:52:50] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Potion Sync: ACTIVE -> FROZEN
[16:52:50] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Enchantment Sync: ACTIVE -> FROZEN
[16:52:50] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry EntityType Sync: ACTIVE -> FROZEN
[16:52:50] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry TileEntityType Sync: ACTIVE -> FROZEN
[16:52:50] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry ParticleType Sync: ACTIVE -> FROZEN
[16:52:50] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry ContainerType Sync: ACTIVE -> FROZEN
[16:52:50] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry PaintingType Sync: ACTIVE -> FROZEN
[16:52:50] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry IRecipeSerializer Sync: ACTIVE -> FROZEN
[16:52:50] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Attribute Sync: ACTIVE -> FROZEN
[16:52:50] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry StatType Sync: ACTIVE -> FROZEN
[16:52:50] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry VillagerProfession Sync: ACTIVE -> FROZEN
[16:52:50] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry PointOfInterestType Sync: ACTIVE -> FROZEN
[16:52:50] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry MemoryModuleType Sync: ACTIVE -> FROZEN
[16:52:50] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry SensorType Sync: ACTIVE -> FROZEN
[16:52:50] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Schedule Sync: ACTIVE -> FROZEN
[16:52:50] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Activity Sync: ACTIVE -> FROZEN
[16:52:50] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry WorldCarver Sync: ACTIVE -> FROZEN
[16:52:50] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry SurfaceBuilder Sync: ACTIVE -> FROZEN
[16:52:50] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Feature Sync: ACTIVE -> FROZEN
[16:52:50] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Placement Sync: ACTIVE -> FROZEN
[16:52:50] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry ChunkStatus Sync: ACTIVE -> FROZEN
[16:52:50] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Structure Sync: ACTIVE -> FROZEN
[16:52:50] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry BlockStateProviderType Sync: ACTIVE -> FROZEN
[16:52:50] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry BlockPlacerType Sync: ACTIVE -> FROZEN
[16:52:50] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry FoliagePlacerType Sync: ACTIVE -> FROZEN
[16:52:50] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry TreeDecoratorType Sync: ACTIVE -> FROZEN
[16:52:50] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry Biome Sync: ACTIVE -> FROZEN
[16:52:50] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry DataSerializerEntry Sync: ACTIVE -> FROZEN
[16:52:50] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry GlobalLootModifierSerializer Sync: ACTIVE -> FROZEN
[16:52:50] [Server thread/DEBUG] [ne.mi.re.ForgeRegistry/REGISTRIES]: Registry ForgeWorldType Sync: ACTIVE -> FROZEN
[16:52:53] [Server thread/DEBUG] [ne.mi.re.ObjectHolderRegistry/REGISTRIES]: Applying holder lookups
[16:52:53] [Server thread/DEBUG] [ne.mi.re.ObjectHolderRef/]: Unable to lookup danmachi:unicorn_horn for public static net.minecraft.item.Item imnotjahan.mod.danmachi.init.Items.UNICORN_HORN. This means the object wasn't registered. It's likely just mod options.
[16:52:53] [Server thread/DEBUG] [ne.mi.re.ObjectHolderRegistry/REGISTRIES]: Holder lookups applied
[16:52:53] [Server thread/DEBUG] [ne.mi.re.GameData/REGISTRIES]: FROZEN state restored.
[16:52:53] [Server thread/DEBUG] [ne.mi.fm.lo.FileUtils/CORE]: Found existing serverconfig directory : .\saves\New World (7)\serverconfig
[16:52:53] [Server thread/DEBUG] [ne.mi.fm.co.ConfigTracker/CONFIG]: Unloading configs type SERVER

Process finished with exit code 0

 

 

Link to comment
Share on other sites

Did you register `RECIPE_SERIALIZERS` to the mod event bus in your main constructor?

 

Also:

1. Do not static init SMITHING_RECIPE_SERIALIZER, just use the registry object.

2. You shouldn't be doing this with getRecipes. Just call the method when needed.

3. registerType and RecipeType are unnecessary, just call IRecipeType#register.

  • Thanks 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.