Jump to content

[1.15.2] ItemStack capability data lost when changing ItemStack


Recommended Posts

Posted

I have made an Item that has a Capability. I can use the capability without issues for the most part. The data persists on save/load world too. However, when I change the ItemStack (move it to another slot) when running dedicated server and client, the data just disappears. Here is the Item class:

public class LaptopItem extends Item {

    private static final ITextComponent containerName = new TranslationTextComponent("container.rubymod.laptop");

    public LaptopItem(Properties group) {
        super(group);
    }

    @Nullable
    @Override
    public ICapabilityProvider initCapabilities(ItemStack stack, @Nullable CompoundNBT nbt) {
        if (ComputerHolderProvider.CAPABILITY != null) {
            return new ComputerHolderProvider();
        }
        return super.initCapabilities(stack, nbt);
    }

    @Nullable
    @Override
    public CompoundNBT getShareTag(ItemStack stack) {
        CompoundNBT tag = new CompoundNBT();
        stack.getCapability(ComputerHolderProvider.CAPABILITY).ifPresent(cap -> {
            UUID computer = cap.getComputer();
            if (computer != null) {
                tag.putString("Computer", computer.toString());
            }
        });
        return tag;
    }

    @Override
    public void readShareTag(ItemStack stack, @Nullable CompoundNBT nbt) {
        stack.getCapability(ComputerHolderProvider.CAPABILITY).ifPresent(cap -> {
            if (nbt != null) {
                String uidString = nbt.getString("Computer");
                if (uidString.length() > 0) {
                    cap.setComputer(UUID.fromString(uidString));
                }
            }
        });
    }

    @Override
    public ActionResult<ItemStack> onItemRightClick(World worldIn, PlayerEntity player, Hand handIn) {
        if (worldIn.isRemote) {
            return ActionResult.resultSuccess(player.getHeldItem(handIn));
        } else {
            ItemStack stack = player.getHeldItem(handIn);
            stack.getCapability(ComputerHolderProvider.CAPABILITY).ifPresent(cap -> {
                UUID computer = cap.getComputer();
                INamedContainerProvider containerProvider = new SimpleNamedContainerProvider(
                        (windowId, inventory, _player) -> new ComputerContainer(windowId, inventory, computer),
                        containerName);
                NetworkHooks.openGui((ServerPlayerEntity) player, containerProvider,
                        packetBuffer -> packetBuffer.writeUniqueId(computer));
            });

            // TODO: add stats
            // player.addStat(Stats.INTERACT_WITH_LAPTOP);
            return ActionResult.resultSuccess(player.getHeldItem(handIn));
        }
    }

    @Override
    public void inventoryTick(ItemStack stack, World world, Entity entityIn, int itemSlot, boolean isSelected) {
        if (!world.isRemote) {
            stack.getCapability(ComputerHolderProvider.CAPABILITY).ifPresent(cap -> {
                world.getCapability(ComputerStorageProvider.CAPABILITY).ifPresent(cap2 -> {
                    Computer comp = cap2.getOrCreateComputer(cap.getComputer());
                    comp.clock();
                });
            });
        }
    }
}

I read in some other thread that syncing the data between client and server using getShareTag is supposed to fix this, however that didn't work for me. I suspect that something is wrong with the syncing code (it appears that the CompoundNBT in readShareTag is null.

Posted (edited)

How do I make sure Itemstack#getTag doesn't return null every time? How do I make my Item have a tag? I'm not sure what to use. Should I call getOrCreateTag somewhere?

Edited by deerangle
oopss

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



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • heres the crash report, please provide any solutions if possible    # # A fatal error has been detected by the Java Runtime Environment: # #  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007ff99e072b60, pid=29768, tid=25508 # # JRE version: OpenJDK Runtime Environment Microsoft-11369940 (21.0.7+6) (build 21.0.7+6-LTS) # Java VM: OpenJDK 64-Bit Server VM Microsoft-11369940 (21.0.7+6-LTS, mixed mode, tiered, compressed oops, compressed class ptrs, g1 gc, windows-amd64) # Problematic frame: # C  [atio6axx.dll+0x192b60] # # No core dump will be written. Minidumps are not enabled by default on client versions of Windows # # If you would like to submit a bug report, please visit: #   https://aka.ms/minecraftjavacrashes # The crash happened outside the Java Virtual Machine in native code. # See problematic frame for where to report the bug. # ---------------  S U M M A R Y ------------ Command Line: -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Djava.library.path=\curseforge\minecraft\Install\bin\df130b4c9f85663b3d4407324bb32d45dcb27512 -Djna.tmpdir=\curseforge\minecraft\Install\bin\df130b4c9f85663b3d4407324bb32d45dcb27512 -Dorg.lwjgl.system.SharedLibraryExtractPath=\curseforge\minecraft\Install\bin\df130b4c9f85663b3d4407324bb32d45dcb27512 -Dio.netty.native.workdir=\curseforge\minecraft\Install\bin\df130b4c9f85663b3d4407324bb32d45dcb27512 -Dminecraft.launcher.brand=minecraft-launcher -Dminecraft.launcher.version=3.16.17 -Djava.net.preferIPv6Addresses=system -Xmx4096m -Xms256m -Dminecraft.applet.TargetDirectory=\curseforge\minecraft\Instances\working -Dfml.ignorePatchDiscrepancies=true -Dfml.ignoreInvalidMinecraftCertificates=true -Duser.language=en -Duser.country=US -DlibraryDirectory=\curseforge\minecraft\Install\libraries -Dlog4j.configurationFile=\curseforge\minecraft\Install\assets\log_configs\client-1.12.xml net.minecraftforge.bootstrap.ForgeBootstrap --version forge-52.1.0 --gameDir \curseforge\minecraft\Instances\working --assetsDir \curseforge\minecraft\Install\assets --assetIndex 17 --userType msa --versionType release --width 1024 --height 768 --quickPlayPath \curseforge\minecraft\Install\quickPlay\java\1751570365581.json --launchTarget forge_client Host: AMD Ryzen 7 3700X 8-Core Processor             , 16 cores, 15G,  Windows 11 , 64 bit Build 22621 (10.0.22621.5415) Time: Thu Jul  3 15:19:29 2025 Eastern Daylight Time elapsed time: 3.927743 seconds (0d 0h 0m 3s) ---------------  T H R E A D  --------------- Current thread (0x0000024d890b5240):  JavaThread "main"             [_thread_in_native, id=25508, stack(0x0000005118000000,0x0000005118100000) (1024K)] Stack: [0x0000005118000000,0x0000005118100000],  sp=0x00000051180fb088,  free space=1004k Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) C  [atio6axx.dll+0x192b60] Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) j  org.lwjgl.system.JNI.invokePPPP(IIJJJJ)J+0 org.lwjgl@3.3.3+5 j  org.lwjgl.glfw.GLFW.nglfwCreateWindow(IIJJJ)J+14 org.lwjgl.glfw@3.3.3+5 j  org.lwjgl.glfw.GLFW.glfwCreateWindow(IILjava/lang/CharSequence;JJ)J+34 org.lwjgl.glfw@3.3.3+5 j  net.minecraftforge.fml.earlydisplay.DisplayWindow.initWindow(Ljava/lang/String;)V+443 net.minecraftforge.earlydisplay@1.21.1-52.1.0 j  net.minecraftforge.fml.earlydisplay.DisplayWindow.start(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/Runnable;+14 net.minecraftforge.earlydisplay@1.21.1-52.1.0 j  net.minecraftforge.fml.earlydisplay.DisplayWindow.initialize([Ljava/lang/String;)Ljava/lang/Runnable;+369 net.minecraftforge.earlydisplay@1.21.1-52.1.0 j  net.minecraftforge.fml.loading.ImmediateWindowHandler.load(Ljava/lang/String;[Ljava/lang/String;)V+198 net.minecraftforge.fmlloader@1.21.1-52.1.0 j  net.minecraftforge.fml.loading.ModDirTransformerDiscoverer.earlyInitialization(Ljava/lang/String;[Ljava/lang/String;)V+2 net.minecraftforge.fmlloader@1.21.1-52.1.0 j  cpw.mods.modlauncher.TransformationServicesHandler.discoverServices(Lcpw/mods/modlauncher/ArgumentHandler$DiscoveryData;)V+274 cpw.mods.modlauncher@10.2.4 j  cpw.mods.modlauncher.Launcher.run([Ljava/lang/String;)V+14 cpw.mods.modlauncher@10.2.4 j  cpw.mods.modlauncher.Launcher.main([Ljava/lang/String;)V+114 cpw.mods.modlauncher@10.2.4 j  cpw.mods.modlauncher.BootstrapEntry.main([Ljava/lang/String;)V+1 cpw.mods.modlauncher@10.2.4 j  net.minecraftforge.bootstrap.Bootstrap.moduleMain([Ljava/lang/String;Ljava/util/List;)V+315 net.minecraftforge.bootstrap@2.1.7 j  java.lang.invoke.LambdaForm$DMH+0x0000000800148000.invokeVirtual(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)V+14 java.base@21.0.7 j  java.lang.invoke.LambdaForm$MH+0x0000000800149000.invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;+73 java.base@21.0.7 j  java.lang.invoke.LambdaForm$MH+0x0000000800149400.invokeExact_MT(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;+22 java.base@21.0.7 j  jdk.internal.reflect.DirectMethodHandleAccessor.invokeImpl(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+72 java.base@21.0.7 j  jdk.internal.reflect.DirectMethodHandleAccessor.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+23 java.base@21.0.7 j  java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+102 java.base@21.0.7 j  net.minecraftforge.bootstrap.Bootstrap.bootstrapMain([Ljava/lang/String;Ljava/util/List;)V+211 j  net.minecraftforge.bootstrap.Bootstrap.start([Ljava/lang/String;)V+186 j  net.minecraftforge.bootstrap.ForgeBootstrap.main([Ljava/lang/String;)V+8 v  ~StubRoutines::call_stub 0x0000024d9640100d siginfo: EXCEPTION_ACCESS_VIOLATION (0xc0000005), reading address 0xffffffffffffffff Registers: RAX=0x0000000000000000, RBX=0x00007ff9a18b33b0, RCX=0x495c746661726365, RDX=0x00000000000000d1 RSP=0x00000051180fb088, RBP=0x00000051180fb1f0, RSI=0x00007ff9a17c2d40, RDI=0x00000051180fb4e0 R8 =0x00000000000001a5, R9 =0x495c746661726365, R10=0x0000000000000000, R11=0x0000000000000200 R12=0x00007ff9a18b3408, R13=0x00007ff9a18b5c08, R14=0x00007ff9a18b33b0, R15=0x0000000000000000 RIP=0x00007ff99e072b60, EFLAGS=0x0000000000010206 XMM[0]=0x000000f000000001 0x0000002d00000001 XMM[1]=0x0000000000000000 0x0000000000000000 XMM[2]=0x0000000000000000 0x0000000000000000 XMM[3]=0x0000000000000000 0x0000000000000000 XMM[4]=0x0000000000000000 0x0000000000000000 XMM[5]=0x0000000000000000 0x0000000000000000 XMM[6]=0x0000000000000000 0x0a163ef2749a403d XMM[7]=0x0000000000000000 0x7390eba5c1b044b9 XMM[8]=0x0000000000000000 0x8e8662f25c52007f XMM[9]=0x0000000000000000 0x4ea0f42c55e85ad9 XMM[10]=0x0000000000000000 0x00000000074766ad XMM[11]=0x0000000000000000 0xa9fbf020ffe44af9 XMM[12]=0x0000000000000000 0x0000000055e85ad9 XMM[13]=0x0000000000000000 0x00000000391f8821 XMM[14]=0x0000000000000000 0x461eaf6a14eb0181 XMM[15]=0x0000000000000000 0x00000000cecc5217   MXCSR=0x00001fa0 Register to memory mapping: RAX=0x0 is null RBX=0x00007ff9a18b33b0 atio6axx.dll RCX=0x495c746661726365 is an unknown value RDX=0x00000000000000d1 is an unknown value RSP=0x00000051180fb088 is pointing into the stack for thread: 0x0000024d890b5240 RBP=0x00000051180fb1f0 is pointing into the stack for thread: 0x0000024d890b5240 RSI=0x00007ff9a17c2d40 atio6axx.dll RDI=0x00000051180fb4e0 is pointing into the stack for thread: 0x0000024d890b5240 R8 =0x00000000000001a5 is an unknown value R9 =0x495c746661726365 is an unknown value R10=0x0 is null R11=0x0000000000000200 is an unknown value R12=0x00007ff9a18b3408 atio6axx.dll R13=0x00007ff9a18b5c08 atio6axx.dll R14=0x00007ff9a18b33b0 atio6axx.dll R15=0x0 is null Top of Stack: (sp=0x00000051180fb088) 0x00000051180fb088:   00007ff99e072e7c 00007ff9a18b6020 0x00000051180fb098:   0000024dadc4dde8 000000000000004a 0x00000051180fb0a8:   00007ff9a17c2d40 00000051180fb4e0 0x00000051180fb0b8:   00007ff99e02f484 00007ff9a18b33b0 0x00000051180fb0c8:   00007ff9a17c2d40 00002e776176616a 0x00000051180fb0d8:   0000bbafa91c8111 00000051180fb4e0 0x00000051180fb0e8:   00007ff99e030457 00007ff9a18b33b8 0x00000051180fb0f8:   000000000000004a 00007ff9a18b33b8 0x00000051180fb108:   0000000000000000 00007ff9a18b33b0 0x00000051180fb118:   00007ffa00000000 0000000000000009 0x00000051180fb128:   0000024daefce884 0000024daefce9d0 0x00000051180fb138:   00007ff9a18b33b8 00000051180fb4e0 0x00000051180fb148:   00000051180fb2da 00007f006176616a 0x00000051180fb158:   00007f006176616a 46676e697274535c 0x00000051180fb168:   5c6f666e49656c69 3062343039303430 0x00000051180fb178:   726556656c69465c 000000006e6f6973 0x00000051180fb188:   0000000000000000 0000000000000000 0x00000051180fb198:   0000000000000000 0000000a0000011c 0x00000051180fb1a8:   0000586700000000 0000000000000002 0x00000051180fb1b8:   0000000000000000 0000000000000000 0x00000051180fb1c8:   0000000000000000 0000000000000000 0x00000051180fb1d8:   0000000000000000 0000000000000000 0x00000051180fb1e8:   0000000000000000 0000000000000000 0x00000051180fb1f8:   0000000000000000 0000000000000000 0x00000051180fb208:   0000000000000000 0000000000000000 0x00000051180fb218:   0000000000000000 0000000000000000 0x00000051180fb228:   0000000000000000 0000000000000000 0x00000051180fb238:   0000000000000000 0000000000000000 0x00000051180fb248:   0000000000000000 0000000000000000 0x00000051180fb258:   0000000000000000 0000000000000000 0x00000051180fb268:   0000000000000000 73726573555c3a43 0x00000051180fb278:   635c6e613432685c 67726f6665737275  Instructions: (pc=0x00007ff99e072b60) 0x00007ff99e072a60:   74 09 33 c9 ff 15 e6 89 66 03 90 48 8b c3 48 83 0x00007ff99e072a70:   c4 20 5b c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff99e072a80:   48 83 ec 28 48 8b 51 08 48 85 d2 74 09 33 c9 ff 0x00007ff99e072a90:   15 bb 89 66 03 90 48 83 c4 28 c3 cc cc cc cc cc 0x00007ff99e072aa0:   48 89 11 c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff99e072ab0:   48 8b c1 c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff99e072ac0:   48 3b ca 74 10 41 8b 00 39 01 74 09 48 83 c1 04 0x00007ff99e072ad0:   48 3b ca 75 f3 48 8b c1 c3 cc cc cc cc cc cc cc 0x00007ff99e072ae0:   48 8b c1 c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff99e072af0:   48 83 39 00 0f 94 c0 c3 cc cc cc cc cc cc cc cc 0x00007ff99e072b00:   4c 8d 04 d5 00 00 00 00 33 d2 e9 c1 d0 dd 01 cc 0x00007ff99e072b10:   4c 8b 41 08 48 8b 02 49 89 00 48 83 41 08 08 c3 0x00007ff99e072b20:   48 8b c1 c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff99e072b30:   48 8b c1 c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff99e072b40:   49 8b 00 48 89 02 c3 cc cc cc cc cc cc cc cc cc 0x00007ff99e072b50:   8b 81 40 39 00 00 c3 cc cc cc cc cc cc cc cc cc 0x00007ff99e072b60:   8b 81 40 39 00 00 83 c0 f0 83 f8 67 0f 87 5a 01 0x00007ff99e072b70:   00 00 48 8d 15 87 d4 e6 ff 0f b6 84 02 f0 2c 19 0x00007ff99e072b80:   00 8b 8c 82 d0 2c 19 00 48 03 ca ff e1 48 8b 0d 0x00007ff99e072b90:   6c 6f 7e 03 83 b9 b4 34 00 00 02 0f 87 2b 01 00 0x00007ff99e072ba0:   00 48 8d 91 0c 29 00 00 c7 02 e1 00 00 00 e9 ce 0x00007ff99e072bb0:   00 00 00 48 8b 0d 46 6f 7e 03 83 b9 b4 34 00 00 0x00007ff99e072bc0:   02 0f 87 05 01 00 00 48 8d 91 0c 29 00 00 c7 02 0x00007ff99e072bd0:   f0 00 00 00 e9 a8 00 00 00 48 8b 0d 20 6f 7e 03 0x00007ff99e072be0:   83 b9 b4 34 00 00 02 0f 87 df 00 00 00 48 8d 91 0x00007ff99e072bf0:   0c 29 00 00 c7 02 00 04 00 00 e9 82 00 00 00 48 0x00007ff99e072c00:   8b 0d fa 6e 7e 03 83 b9 b4 34 00 00 02 0f 87 b9 0x00007ff99e072c10:   00 00 00 48 8d 91 0c 29 00 00 c7 02 00 08 00 00 0x00007ff99e072c20:   eb 5f 48 8b 0d d7 6e 7e 03 83 b9 b4 34 00 00 02 0x00007ff99e072c30:   0f 87 96 00 00 00 48 8d 91 0c 29 00 00 c7 02 00 0x00007ff99e072c40:   09 00 00 eb 3c 48 8b 0d b4 6e 7e 03 83 b9 b4 34 0x00007ff99e072c50:   00 00 02 77 77 48 8d 91 0c 29 00 00 c7 02 3c 0f  Stack slot to memory mapping: stack at sp + 0 slots: 0x00007ff99e072e7c atio6axx.dll stack at sp + 1 slots: 0x00007ff9a18b6020 atio6axx.dll stack at sp + 2 slots: 0x0000024dadc4dde8 points into unknown readable memory: 0x00007ff9a10bf5f0 | f0 f5 0b a1 f9 7f 00 00 stack at sp + 3 slots: 0x000000000000004a is an unknown value stack at sp + 4 slots: 0x00007ff9a17c2d40 atio6axx.dll stack at sp + 5 slots: 0x00000051180fb4e0 is pointing into the stack for thread: 0x0000024d890b5240 stack at sp + 6 slots: 0x00007ff99e02f484 atio6axx.dll stack at sp + 7 slots: 0x00007ff9a18b33b0 atio6axx.dll ---------------  P R O C E S S  --------------- Threads class SMR info: _java_thread_list=0x0000024daeee7510, length=20, elements={ 0x0000024d890b5240, 0x0000024da68f3e10, 0x0000024da68f4860, 0x0000024da68f5540, 0x0000024da68f6bb0, 0x0000024da68f7600, 0x0000024da68f8050, 0x0000024da68fa040, 0x0000024da69115e0, 0x0000024da6911cb0, 0x0000024da6abe220, 0x0000024da6ae7270, 0x0000024da6913ec0, 0x0000024da6913120, 0x0000024da6912380, 0x0000024da6914590, 0x0000024da6910f10, 0x0000024da6912a50, 0x0000024da69137f0, 0x0000024daefcdf10 } Java Threads: ( => current thread ) =>0x0000024d890b5240 JavaThread "main"                              [_thread_in_native, id=25508, stack(0x0000005118000000,0x0000005118100000) (1024K)]   0x0000024da68f3e10 JavaThread "Reference Handler"          daemon [_thread_blocked, id=23616, stack(0x0000005118800000,0x0000005118900000) (1024K)]   0x0000024da68f4860 JavaThread "Finalizer"                  daemon [_thread_blocked, id=35232, stack(0x0000005118900000,0x0000005118a00000) (1024K)]   0x0000024da68f5540 JavaThread "Signal Dispatcher"          daemon [_thread_blocked, id=28000, stack(0x0000005118a00000,0x0000005118b00000) (1024K)]   0x0000024da68f6bb0 JavaThread "Attach Listener"            daemon [_thread_blocked, id=25156, stack(0x0000005118b00000,0x0000005118c00000) (1024K)]   0x0000024da68f7600 JavaThread "Service Thread"             daemon [_thread_blocked, id=30000, stack(0x0000005118c00000,0x0000005118d00000) (1024K)]   0x0000024da68f8050 JavaThread "Monitor Deflation Thread"   daemon [_thread_blocked, id=1368, stack(0x0000005118d00000,0x0000005118e00000) (1024K)]   0x0000024da68fa040 JavaThread "C2 CompilerThread0"         daemon [_thread_blocked, id=30520, stack(0x0000005118e00000,0x0000005118f00000) (1024K)]   0x0000024da69115e0 JavaThread "C1 CompilerThread0"         daemon [_thread_blocked, id=35384, stack(0x0000005118f00000,0x0000005119000000) (1024K)]   0x0000024da6911cb0 JavaThread "C1 CompilerThread1"         daemon [_thread_blocked, id=20420, stack(0x0000005119000000,0x0000005119100000) (1024K)]   0x0000024da6abe220 JavaThread "Notification Thread"        daemon [_thread_blocked, id=7776, stack(0x0000005119100000,0x0000005119200000) (1024K)]   0x0000024da6ae7270 JavaThread "Common-Cleaner"             daemon [_thread_blocked, id=28292, stack(0x0000005119200000,0x0000005119300000) (1024K)]   0x0000024da6913ec0 JavaThread "C2 CompilerThread1"         daemon [_thread_blocked, id=1912, stack(0x0000005119300000,0x0000005119400000) (1024K)]   0x0000024da6913120 JavaThread "C2 CompilerThread2"         daemon [_thread_in_native, id=24140, stack(0x0000005119400000,0x0000005119500000) (1024K)]   0x0000024da6912380 JavaThread "C1 CompilerThread2"         daemon [_thread_blocked, id=31736, stack(0x0000005119500000,0x0000005119600000) (1024K)]   0x0000024da6914590 JavaThread "C1 CompilerThread3"         daemon [_thread_blocked, id=31580, stack(0x0000005119600000,0x0000005119700000) (1024K)]   0x0000024da6910f10 JavaThread "C2 CompilerThread3"         daemon [_thread_in_native, id=34380, stack(0x0000005119c00000,0x0000005119d00000) (1024K)]   0x0000024da6912a50 JavaThread "C2 CompilerThread4"         daemon [_thread_in_native, id=26816, stack(0x0000005119d00000,0x0000005119e00000) (1024K)]   0x0000024da69137f0 JavaThread "C2 CompilerThread5"         daemon [_thread_blocked, id=30220, stack(0x0000005119e00000,0x0000005119f00000) (1024K)]   0x0000024daefcdf10 JavaThread "EarlyDisplay"               daemon [_thread_blocked, id=10900, stack(0x000000511a800000,0x000000511a900000) (1024K)] Total: 20 Other Threads:   0x0000024da68a43a0 VMThread "VM Thread"                           [id=23400, stack(0x0000005118700000,0x0000005118800000) (1024K)]   0x0000024da64984c0 WatcherThread "VM Periodic Task Thread"        [id=25932, stack(0x0000005118600000,0x0000005118700000) (1024K)]   0x0000024d8b461d30 WorkerThread "GC Thread#0"                     [id=33132, stack(0x0000005118100000,0x0000005118200000) (1024K)]   0x0000024dab6d4a70 WorkerThread "GC Thread#1"                     [id=22280, stack(0x0000005119700000,0x0000005119800000) (1024K)]   0x0000024dab897bb0 WorkerThread "GC Thread#2"                     [id=25188, stack(0x0000005119800000,0x0000005119900000) (1024K)]   0x0000024dab898770 WorkerThread "GC Thread#3"                     [id=22352, stack(0x0000005119900000,0x0000005119a00000) (1024K)]   0x0000024dab898b10 WorkerThread "GC Thread#4"                     [id=3168, stack(0x0000005119a00000,0x0000005119b00000) (1024K)]   0x0000024dab89a270 WorkerThread "GC Thread#5"                     [id=22900, stack(0x0000005119b00000,0x0000005119c00000) (1024K)]   0x0000024dadca8640 WorkerThread "GC Thread#6"                     [id=15760, stack(0x000000511a100000,0x000000511a200000) (1024K)]   0x0000024daedc1a40 WorkerThread "GC Thread#7"                     [id=12132, stack(0x0000005119f00000,0x000000511a000000) (1024K)]   0x0000024dac949860 WorkerThread "GC Thread#8"                     [id=11516, stack(0x000000511a000000,0x000000511a100000) (1024K)]   0x0000024dac947f00 WorkerThread "GC Thread#9"                     [id=16364, stack(0x000000511a200000,0x000000511a300000) (1024K)]   0x0000024d8b473570 ConcurrentGCThread "G1 Main Marker"            [id=25124, stack(0x0000005118200000,0x0000005118300000) (1024K)]   0x0000024d8b473f80 WorkerThread "G1 Conc#0"                       [id=12920, stack(0x0000005118300000,0x0000005118400000) (1024K)]   0x0000024dac9494c0 WorkerThread "G1 Conc#1"                       [id=23012, stack(0x000000511a300000,0x000000511a400000) (1024K)]   0x0000024dac948640 WorkerThread "G1 Conc#2"                       [id=8004, stack(0x000000511a400000,0x000000511a500000) (1024K)]   0x0000024da6357f00 ConcurrentGCThread "G1 Refine#0"               [id=25436, stack(0x0000005118400000,0x0000005118500000) (1024K)]   0x0000024da6358980 ConcurrentGCThread "G1 Service"                [id=2236, stack(0x0000005118500000,0x0000005118600000) (1024K)] Total: 18 Threads with active compile tasks: C2 CompilerThread2  3984 3707       4       java.nio.file.FileTreeIterator::hasNext (35 bytes) C2 CompilerThread3  3984 3711       4       java.nio.file.FileTreeIterator::fetchNextIfNeeded (65 bytes) C2 CompilerThread4  3984 3820       4       java.lang.invoke.MethodType::makeImpl (109 bytes) Total: 3 VM state: not at safepoint (normal execution) VM Mutex/Monitor currently owned by a thread: None Heap address: 0x0000000700000000, size: 4096 MB, Compressed Oops mode: Zero based, Oop shift amount: 3 CDS archive(s) not mapped Compressed class space mapped at: 0x0000000800000000-0x0000000840000000, reserved size: 1073741824 Narrow klass base: 0x0000000800000000, Narrow klass shift: 0, Narrow klass range: 0x40000000 GC Precious Log:  CardTable entry size: 512  Card Set container configuration: InlinePtr #cards 4 size 8 Array Of Cards #cards 16 size 48 Howl #buckets 8 coarsen threshold 3686 Howl Bitmap #cards 512 size 80 coarsen threshold 460 Card regions per heap region 1 cards per card region 4096  CPUs: 16 total, 16 available  Memory: 16310M  Large Page Support: Disabled  NUMA Support: Disabled  Compressed Oops: Enabled (Zero based)  Heap Region Size: 2M  Heap Min Capacity: 256M  Heap Initial Capacity: 256M  Heap Max Capacity: 4G  Pre-touch: Disabled  Parallel Workers: 13  Concurrent Workers: 3  Concurrent Refinement Workers: 13  Periodic GC: Disabled Heap:  garbage-first heap   total 262144K, used 72746K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 20 young (40960K), 5 survivors (10240K)  Metaspace       used 27753K, committed 28160K, reserved 1114112K   class space    used 2756K, committed 2944K, reserved 1048576K Heap Regions: E=young(eden), S=young(survivor), O=old, HS=humongous(starts), HC=humongous(continues), CS=collection set, F=free, TAMS=top-at-mark-start, PB=parsable bottom |   0|0x0000000700000000, 0x0000000700200000, 0x0000000700200000|100%|HS|  |TAMS 0x0000000700000000| PB 0x0000000700000000| Complete  |   1|0x0000000700200000, 0x0000000700400000, 0x0000000700400000|100%|HC|  |TAMS 0x0000000700200000| PB 0x0000000700200000| Complete  |   2|0x0000000700400000, 0x0000000700600000, 0x0000000700600000|100%|HS|  |TAMS 0x0000000700400000| PB 0x0000000700400000| Complete  |   3|0x0000000700600000, 0x0000000700800000, 0x0000000700800000|100%|HS|  |TAMS 0x0000000700600000| PB 0x0000000700600000| Complete  |   4|0x0000000700800000, 0x0000000700a00000, 0x0000000700a00000|100%| O|  |TAMS 0x0000000700800000| PB 0x0000000700800000| Untracked  |   5|0x0000000700a00000, 0x0000000700c00000, 0x0000000700c00000|100%| O|Cm|TAMS 0x0000000700a00000| PB 0x0000000700a00000| Complete  |   6|0x0000000700c00000, 0x0000000700e00000, 0x0000000700e00000|100%|HS|  |TAMS 0x0000000700c00000| PB 0x0000000700c00000| Complete  |   7|0x0000000700e00000, 0x0000000701000000, 0x0000000701000000|100%|HC|  |TAMS 0x0000000700e00000| PB 0x0000000700e00000| Complete  |   8|0x0000000701000000, 0x0000000701200000, 0x0000000701200000|100%| O|  |TAMS 0x0000000701000000| PB 0x0000000701000000| Untracked  |   9|0x0000000701200000, 0x0000000701400000, 0x0000000701400000|100%| O|  |TAMS 0x0000000701200000| PB 0x0000000701200000| Untracked  |  10|0x0000000701400000, 0x0000000701600000, 0x0000000701600000|100%| O|  |TAMS 0x0000000701400000| PB 0x0000000701400000| Untracked  |  11|0x0000000701600000, 0x0000000701800000, 0x0000000701800000|100%|HS|  |TAMS 0x0000000701600000| PB 0x0000000701600000| Complete  |  12|0x0000000701800000, 0x0000000701a00000, 0x0000000701a00000|100%|HS|  |TAMS 0x0000000701800000| PB 0x0000000701800000| Complete  |  13|0x0000000701a00000, 0x0000000701a00000, 0x0000000701c00000|  0%| F|  |TAMS 0x0000000701a00000| PB 0x0000000701a00000| Untracked  |  14|0x0000000701c00000, 0x0000000701c00000, 0x0000000701e00000|  0%| F|  |TAMS 0x0000000701c00000| PB 0x0000000701c00000| Untracked  |  15|0x0000000701e00000, 0x0000000701e00000, 0x0000000702000000|  0%| F|  |TAMS 0x0000000701e00000| PB 0x0000000701e00000| Untracked  |  16|0x0000000702000000, 0x0000000702000000, 0x0000000702200000|  0%| F|  |TAMS 0x0000000702000000| PB 0x0000000702000000| Untracked  |  17|0x0000000702200000, 0x0000000702200000, 0x0000000702400000|  0%| F|  |TAMS 0x0000000702200000| PB 0x0000000702200000| Untracked  |  18|0x0000000702400000, 0x0000000702400000, 0x0000000702600000|  0%| F|  |TAMS 0x0000000702400000| PB 0x0000000702400000| Untracked  |  19|0x0000000702600000, 0x0000000702600000, 0x0000000702800000|  0%| F|  |TAMS 0x0000000702600000| PB 0x0000000702600000| Untracked  |  20|0x0000000702800000, 0x0000000702800000, 0x0000000702a00000|  0%| F|  |TAMS 0x0000000702800000| PB 0x0000000702800000| Untracked  |  21|0x0000000702a00000, 0x0000000702a00000, 0x0000000702c00000|  0%| F|  |TAMS 0x0000000702a00000| PB 0x0000000702a00000| Untracked  |  22|0x0000000702c00000, 0x0000000702c00000, 0x0000000702e00000|  0%| F|  |TAMS 0x0000000702c00000| PB 0x0000000702c00000| Untracked  |  23|0x0000000702e00000, 0x0000000703000000, 0x0000000703000000|100%| O|  |TAMS 0x0000000702e00000| PB 0x0000000702e00000| Untracked  |  24|0x0000000703000000, 0x0000000703200000, 0x0000000703200000|100%| O|  |TAMS 0x0000000703000000| PB 0x0000000703000000| Untracked  |  25|0x0000000703200000, 0x0000000703400000, 0x0000000703400000|100%| O|  |TAMS 0x0000000703200000| PB 0x0000000703200000| Untracked  |  26|0x0000000703400000, 0x000000070350aa40, 0x0000000703600000| 52%| O|  |TAMS 0x0000000703400000| PB 0x0000000703400000| Untracked  |  27|0x0000000703600000, 0x0000000703600000, 0x0000000703800000|  0%| F|  |TAMS 0x0000000703600000| PB 0x0000000703600000| Untracked  |  28|0x0000000703800000, 0x0000000703800000, 0x0000000703a00000|  0%| F|  |TAMS 0x0000000703800000| PB 0x0000000703800000| Untracked  |  29|0x0000000703a00000, 0x0000000703a00000, 0x0000000703c00000|  0%| F|  |TAMS 0x0000000703a00000| PB 0x0000000703a00000| Untracked  |  30|0x0000000703c00000, 0x0000000703c00000, 0x0000000703e00000|  0%| F|  |TAMS 0x0000000703c00000| PB 0x0000000703c00000| Untracked  |  31|0x0000000703e00000, 0x0000000703e00000, 0x0000000704000000|  0%| F|  |TAMS 0x0000000703e00000| PB 0x0000000703e00000| Untracked  |  32|0x0000000704000000, 0x0000000704000000, 0x0000000704200000|  0%| F|  |TAMS 0x0000000704000000| PB 0x0000000704000000| Untracked  |  33|0x0000000704200000, 0x0000000704200000, 0x0000000704400000|  0%| F|  |TAMS 0x0000000704200000| PB 0x0000000704200000| Untracked  |  34|0x0000000704400000, 0x0000000704400000, 0x0000000704600000|  0%| F|  |TAMS 0x0000000704400000| PB 0x0000000704400000| Untracked  |  35|0x0000000704600000, 0x0000000704600000, 0x0000000704800000|  0%| F|  |TAMS 0x0000000704600000| PB 0x0000000704600000| Untracked  |  36|0x0000000704800000, 0x0000000704800000, 0x0000000704a00000|  0%| F|  |TAMS 0x0000000704800000| PB 0x0000000704800000| Untracked  |  37|0x0000000704a00000, 0x0000000704a00000, 0x0000000704c00000|  0%| F|  |TAMS 0x0000000704a00000| PB 0x0000000704a00000| Untracked  |  38|0x0000000704c00000, 0x0000000704c00000, 0x0000000704e00000|  0%| F|  |TAMS 0x0000000704c00000| PB 0x0000000704c00000| Untracked  |  39|0x0000000704e00000, 0x0000000704e00000, 0x0000000705000000|  0%| F|  |TAMS 0x0000000704e00000| PB 0x0000000704e00000| Untracked  |  40|0x0000000705000000, 0x0000000705000000, 0x0000000705200000|  0%| F|  |TAMS 0x0000000705000000| PB 0x0000000705000000| Untracked  |  41|0x0000000705200000, 0x0000000705200000, 0x0000000705400000|  0%| F|  |TAMS 0x0000000705200000| PB 0x0000000705200000| Untracked  |  42|0x0000000705400000, 0x0000000705400000, 0x0000000705600000|  0%| F|  |TAMS 0x0000000705400000| PB 0x0000000705400000| Untracked  |  43|0x0000000705600000, 0x0000000705600000, 0x0000000705800000|  0%| F|  |TAMS 0x0000000705600000| PB 0x0000000705600000| Untracked  |  44|0x0000000705800000, 0x0000000705800000, 0x0000000705a00000|  0%| F|  |TAMS 0x0000000705800000| PB 0x0000000705800000| Untracked  |  45|0x0000000705a00000, 0x0000000705a00000, 0x0000000705c00000|  0%| F|  |TAMS 0x0000000705a00000| PB 0x0000000705a00000| Untracked  |  46|0x0000000705c00000, 0x0000000705c00000, 0x0000000705e00000|  0%| F|  |TAMS 0x0000000705c00000| PB 0x0000000705c00000| Untracked  |  47|0x0000000705e00000, 0x0000000705e00000, 0x0000000706000000|  0%| F|  |TAMS 0x0000000705e00000| PB 0x0000000705e00000| Untracked  |  48|0x0000000706000000, 0x0000000706000000, 0x0000000706200000|  0%| F|  |TAMS 0x0000000706000000| PB 0x0000000706000000| Untracked  |  49|0x0000000706200000, 0x0000000706200000, 0x0000000706400000|  0%| F|  |TAMS 0x0000000706200000| PB 0x0000000706200000| Untracked  |  50|0x0000000706400000, 0x0000000706400000, 0x0000000706600000|  0%| F|  |TAMS 0x0000000706400000| PB 0x0000000706400000| Untracked  |  51|0x0000000706600000, 0x0000000706600000, 0x0000000706800000|  0%| F|  |TAMS 0x0000000706600000| PB 0x0000000706600000| Untracked  |  52|0x0000000706800000, 0x0000000706800000, 0x0000000706a00000|  0%| F|  |TAMS 0x0000000706800000| PB 0x0000000706800000| Untracked  |  53|0x0000000706a00000, 0x0000000706a00000, 0x0000000706c00000|  0%| F|  |TAMS 0x0000000706a00000| PB 0x0000000706a00000| Untracked  |  54|0x0000000706c00000, 0x0000000706c00000, 0x0000000706e00000|  0%| F|  |TAMS 0x0000000706c00000| PB 0x0000000706c00000| Untracked  |  55|0x0000000706e00000, 0x0000000706e00000, 0x0000000707000000|  0%| F|  |TAMS 0x0000000706e00000| PB 0x0000000706e00000| Untracked  |  56|0x0000000707000000, 0x0000000707000000, 0x0000000707200000|  0%| F|  |TAMS 0x0000000707000000| PB 0x0000000707000000| Untracked  |  57|0x0000000707200000, 0x0000000707200000, 0x0000000707400000|  0%| F|  |TAMS 0x0000000707200000| PB 0x0000000707200000| Untracked  |  58|0x0000000707400000, 0x0000000707400000, 0x0000000707600000|  0%| F|  |TAMS 0x0000000707400000| PB 0x0000000707400000| Untracked  |  59|0x0000000707600000, 0x0000000707600000, 0x0000000707800000|  0%| F|  |TAMS 0x0000000707600000| PB 0x0000000707600000| Untracked  |  60|0x0000000707800000, 0x0000000707800000, 0x0000000707a00000|  0%| F|  |TAMS 0x0000000707800000| PB 0x0000000707800000| Untracked  |  61|0x0000000707a00000, 0x0000000707a00000, 0x0000000707c00000|  0%| F|  |TAMS 0x0000000707a00000| PB 0x0000000707a00000| Untracked  |  62|0x0000000707c00000, 0x0000000707c00000, 0x0000000707e00000|  0%| F|  |TAMS 0x0000000707c00000| PB 0x0000000707c00000| Untracked  |  63|0x0000000707e00000, 0x0000000707e00000, 0x0000000708000000|  0%| F|  |TAMS 0x0000000707e00000| PB 0x0000000707e00000| Untracked  |  64|0x0000000708000000, 0x0000000708000000, 0x0000000708200000|  0%| F|  |TAMS 0x0000000708000000| PB 0x0000000708000000| Untracked  |  65|0x0000000708200000, 0x0000000708200000, 0x0000000708400000|  0%| F|  |TAMS 0x0000000708200000| PB 0x0000000708200000| Untracked  |  66|0x0000000708400000, 0x0000000708400000, 0x0000000708600000|  0%| F|  |TAMS 0x0000000708400000| PB 0x0000000708400000| Untracked  |  67|0x0000000708600000, 0x0000000708600000, 0x0000000708800000|  0%| F|  |TAMS 0x0000000708600000| PB 0x0000000708600000| Untracked  |  68|0x0000000708800000, 0x0000000708800000, 0x0000000708a00000|  0%| F|  |TAMS 0x0000000708800000| PB 0x0000000708800000| Untracked  |  69|0x0000000708a00000, 0x0000000708a00000, 0x0000000708c00000|  0%| F|  |TAMS 0x0000000708a00000| PB 0x0000000708a00000| Untracked  |  70|0x0000000708c00000, 0x0000000708c00000, 0x0000000708e00000|  0%| F|  |TAMS 0x0000000708c00000| PB 0x0000000708c00000| Untracked  |  71|0x0000000708e00000, 0x0000000708e00000, 0x0000000709000000|  0%| F|  |TAMS 0x0000000708e00000| PB 0x0000000708e00000| Untracked  |  72|0x0000000709000000, 0x0000000709000000, 0x0000000709200000|  0%| F|  |TAMS 0x0000000709000000| PB 0x0000000709000000| Untracked  |  73|0x0000000709200000, 0x0000000709200000, 0x0000000709400000|  0%| F|  |TAMS 0x0000000709200000| PB 0x0000000709200000| Untracked  |  74|0x0000000709400000, 0x0000000709400000, 0x0000000709600000|  0%| F|  |TAMS 0x0000000709400000| PB 0x0000000709400000| Untracked  |  75|0x0000000709600000, 0x0000000709600000, 0x0000000709800000|  0%| F|  |TAMS 0x0000000709600000| PB 0x0000000709600000| Untracked  |  76|0x0000000709800000, 0x0000000709800000, 0x0000000709a00000|  0%| F|  |TAMS 0x0000000709800000| PB 0x0000000709800000| Untracked  |  77|0x0000000709a00000, 0x0000000709a00000, 0x0000000709c00000|  0%| F|  |TAMS 0x0000000709a00000| PB 0x0000000709a00000| Untracked  |  78|0x0000000709c00000, 0x0000000709c00000, 0x0000000709e00000|  0%| F|  |TAMS 0x0000000709c00000| PB 0x0000000709c00000| Untracked  |  79|0x0000000709e00000, 0x0000000709e00000, 0x000000070a000000|  0%| F|  |TAMS 0x0000000709e00000| PB 0x0000000709e00000| Untracked  |  80|0x000000070a000000, 0x000000070a000000, 0x000000070a200000|  0%| F|  |TAMS 0x000000070a000000| PB 0x000000070a000000| Untracked  |  81|0x000000070a200000, 0x000000070a200000, 0x000000070a400000|  0%| F|  |TAMS 0x000000070a200000| PB 0x000000070a200000| Untracked  |  82|0x000000070a400000, 0x000000070a400000, 0x000000070a600000|  0%| F|  |TAMS 0x000000070a400000| PB 0x000000070a400000| Untracked  |  83|0x000000070a600000, 0x000000070a600000, 0x000000070a800000|  0%| F|  |TAMS 0x000000070a600000| PB 0x000000070a600000| Untracked  |  84|0x000000070a800000, 0x000000070a800000, 0x000000070aa00000|  0%| F|  |TAMS 0x000000070a800000| PB 0x000000070a800000| Untracked  |  85|0x000000070aa00000, 0x000000070aa00000, 0x000000070ac00000|  0%| F|  |TAMS 0x000000070aa00000| PB 0x000000070aa00000| Untracked  |  86|0x000000070ac00000, 0x000000070ac00000, 0x000000070ae00000|  0%| F|  |TAMS 0x000000070ac00000| PB 0x000000070ac00000| Untracked  |  87|0x000000070ae00000, 0x000000070ae00000, 0x000000070b000000|  0%| F|  |TAMS 0x000000070ae00000| PB 0x000000070ae00000| Untracked  |  88|0x000000070b000000, 0x000000070b000000, 0x000000070b200000|  0%| F|  |TAMS 0x000000070b000000| PB 0x000000070b000000| Untracked  |  89|0x000000070b200000, 0x000000070b200000, 0x000000070b400000|  0%| F|  |TAMS 0x000000070b200000| PB 0x000000070b200000| Untracked  |  90|0x000000070b400000, 0x000000070b400000, 0x000000070b600000|  0%| F|  |TAMS 0x000000070b400000| PB 0x000000070b400000| Untracked  |  91|0x000000070b600000, 0x000000070b600000, 0x000000070b800000|  0%| F|  |TAMS 0x000000070b600000| PB 0x000000070b600000| Untracked  |  92|0x000000070b800000, 0x000000070b800000, 0x000000070ba00000|  0%| F|  |TAMS 0x000000070b800000| PB 0x000000070b800000| Untracked  |  93|0x000000070ba00000, 0x000000070ba00000, 0x000000070bc00000|  0%| F|  |TAMS 0x000000070ba00000| PB 0x000000070ba00000| Untracked  |  94|0x000000070bc00000, 0x000000070bc00000, 0x000000070be00000|  0%| F|  |TAMS 0x000000070bc00000| PB 0x000000070bc00000| Untracked  |  95|0x000000070be00000, 0x000000070be00000, 0x000000070c000000|  0%| F|  |TAMS 0x000000070be00000| PB 0x000000070be00000| Untracked  |  96|0x000000070c000000, 0x000000070c000000, 0x000000070c200000|  0%| F|  |TAMS 0x000000070c000000| PB 0x000000070c000000| Untracked  |  97|0x000000070c200000, 0x000000070c200000, 0x000000070c400000|  0%| F|  |TAMS 0x000000070c200000| PB 0x000000070c200000| Untracked  |  98|0x000000070c400000, 0x000000070c400000, 0x000000070c600000|  0%| F|  |TAMS 0x000000070c400000| PB 0x000000070c400000| Untracked  |  99|0x000000070c600000, 0x000000070c600000, 0x000000070c800000|  0%| F|  |TAMS 0x000000070c600000| PB 0x000000070c600000| Untracked  | 100|0x000000070c800000, 0x000000070c800000, 0x000000070ca00000|  0%| F|  |TAMS 0x000000070c800000| PB 0x000000070c800000| Untracked  | 101|0x000000070ca00000, 0x000000070ca00000, 0x000000070cc00000|  0%| F|  |TAMS 0x000000070ca00000| PB 0x000000070ca00000| Untracked  | 102|0x000000070cc00000, 0x000000070cc00000, 0x000000070ce00000|  0%| F|  |TAMS 0x000000070cc00000| PB 0x000000070cc00000| Untracked  | 103|0x000000070ce00000, 0x000000070ce00000, 0x000000070d000000|  0%| F|  |TAMS 0x000000070ce00000| PB 0x000000070ce00000| Untracked  | 104|0x000000070d000000, 0x000000070d000000, 0x000000070d200000|  0%| F|  |TAMS 0x000000070d000000| PB 0x000000070d000000| Untracked  | 105|0x000000070d200000, 0x000000070d200000, 0x000000070d400000|  0%| F|  |TAMS 0x000000070d200000| PB 0x000000070d200000| Untracked  | 106|0x000000070d400000, 0x000000070d400000, 0x000000070d600000|  0%| F|  |TAMS 0x000000070d400000| PB 0x000000070d400000| Untracked  | 107|0x000000070d600000, 0x000000070d600000, 0x000000070d800000|  0%| F|  |TAMS 0x000000070d600000| PB 0x000000070d600000| Untracked  | 108|0x000000070d800000, 0x000000070d9792e0, 0x000000070da00000| 73%| E|  |TAMS 0x000000070d800000| PB 0x000000070d800000| Complete  | 109|0x000000070da00000, 0x000000070dc00000, 0x000000070dc00000|100%| E|CS|TAMS 0x000000070da00000| PB 0x000000070da00000| Complete  | 110|0x000000070dc00000, 0x000000070de00000, 0x000000070de00000|100%| E|CS|TAMS 0x000000070dc00000| PB 0x000000070dc00000| Complete  | 111|0x000000070de00000, 0x000000070e000000, 0x000000070e000000|100%| E|CS|TAMS 0x000000070de00000| PB 0x000000070de00000| Complete  | 112|0x000000070e000000, 0x000000070e200000, 0x000000070e200000|100%| E|CS|TAMS 0x000000070e000000| PB 0x000000070e000000| Complete  | 113|0x000000070e200000, 0x000000070e400000, 0x000000070e400000|100%| E|CS|TAMS 0x000000070e200000| PB 0x000000070e200000| Complete  | 114|0x000000070e400000, 0x000000070e600000, 0x000000070e600000|100%| E|CS|TAMS 0x000000070e400000| PB 0x000000070e400000| Complete  | 115|0x000000070e600000, 0x000000070e800000, 0x000000070e800000|100%| S|CS|TAMS 0x000000070e600000| PB 0x000000070e600000| Complete  | 116|0x000000070e800000, 0x000000070ea00000, 0x000000070ea00000|100%| S|CS|TAMS 0x000000070e800000| PB 0x000000070e800000| Complete  | 117|0x000000070ea00000, 0x000000070ec00000, 0x000000070ec00000|100%| S|CS|TAMS 0x000000070ea00000| PB 0x000000070ea00000| Complete  | 118|0x000000070ec00000, 0x000000070ee00000, 0x000000070ee00000|100%| S|CS|TAMS 0x000000070ec00000| PB 0x000000070ec00000| Complete  | 119|0x000000070ee00000, 0x000000070f000000, 0x000000070f000000|100%| S|CS|TAMS 0x000000070ee00000| PB 0x000000070ee00000| Complete  | 120|0x000000070f000000, 0x000000070f200000, 0x000000070f200000|100%| E|CS|TAMS 0x000000070f000000| PB 0x000000070f000000| Complete  | 121|0x000000070f200000, 0x000000070f400000, 0x000000070f400000|100%| E|CS|TAMS 0x000000070f200000| PB 0x000000070f200000| Complete  | 122|0x000000070f400000, 0x000000070f600000, 0x000000070f600000|100%| E|CS|TAMS 0x000000070f400000| PB 0x000000070f400000| Complete  | 123|0x000000070f600000, 0x000000070f800000, 0x000000070f800000|100%| E|CS|TAMS 0x000000070f600000| PB 0x000000070f600000| Complete  | 124|0x000000070f800000, 0x000000070fa00000, 0x000000070fa00000|100%| E|CS|TAMS 0x000000070f800000| PB 0x000000070f800000| Complete  | 125|0x000000070fa00000, 0x000000070fc00000, 0x000000070fc00000|100%| E|CS|TAMS 0x000000070fa00000| PB 0x000000070fa00000| Complete  | 126|0x000000070fc00000, 0x000000070fe00000, 0x000000070fe00000|100%| E|CS|TAMS 0x000000070fc00000| PB 0x000000070fc00000| Complete  | 127|0x000000070fe00000, 0x0000000710000000, 0x0000000710000000|100%| E|CS|TAMS 0x000000070fe00000| PB 0x000000070fe00000| Complete  Card table byte_map: [0x0000024d9f030000,0x0000024d9f830000] _byte_map_base: 0x0000024d9b830000 Marking Bits: (CMBitMap*) 0x0000024d8b462340  Bits: [0x0000024d9f830000, 0x0000024da3830000) Polling page: 0x0000024d89260000 Metaspace: Usage:   Non-class:     24.41 MB used.       Class:      2.69 MB used.        Both:     27.10 MB used. Virtual space:   Non-class space:       64.00 MB reserved,      24.62 MB ( 38%) committed,  1 nodes.       Class space:        1.00 GB reserved,       2.88 MB ( <1%) committed,  1 nodes.              Both:        1.06 GB reserved,      27.50 MB (  3%) committed.  Chunk freelists:    Non-Class:  7.40 MB        Class:  12.97 MB         Both:  20.38 MB MaxMetaspaceSize: unlimited CompressedClassSpaceSize: 1.00 GB Initial GC threshold: 21.00 MB Current GC threshold: 35.25 MB CDS: off  - commit_granule_bytes: 65536.  - commit_granule_words: 8192.  - virtual_space_node_default_size: 8388608.  - enlarge_chunks_in_place: 1.  - use_allocation_guard: 0. Internal statistics: num_allocs_failed_limit: 3. num_arena_births: 370. num_arena_deaths: 0. num_vsnodes_births: 2. num_vsnodes_deaths: 0. num_space_committed: 440. num_space_uncommitted: 0. num_chunks_returned_to_freelist: 3. num_chunks_taken_from_freelist: 836. num_chunk_merges: 0. num_chunk_splits: 519. num_chunks_enlarged: 342. num_inconsistent_stats: 0. CodeHeap 'non-profiled nmethods': size=119168Kb used=2654Kb max_used=2654Kb free=116514Kb  bounds [0x0000024d96b50000, 0x0000024d96df0000, 0x0000024d9dfb0000] CodeHeap 'profiled nmethods': size=119104Kb used=7208Kb max_used=7208Kb free=111895Kb  bounds [0x0000024d8efb0000, 0x0000024d8f6c0000, 0x0000024d96400000] CodeHeap 'non-nmethods': size=7488Kb used=3889Kb max_used=3903Kb free=3598Kb  bounds [0x0000024d96400000, 0x0000024d967e0000, 0x0000024d96b50000]  total_blobs=4958 nmethods=3814 adapters=1045  compilation: enabled               stopped_count=0, restarted_count=0  full_count=0 Compilation events (20 events): Event: 3.805 Thread 0x0000024da69115e0 3807       3       org.lwjgl.system.MemoryUtil::write8 (19 bytes) Event: 3.805 Thread 0x0000024da6911cb0 3808       3       sun.misc.Unsafe::putByte (11 bytes) Event: 3.805 Thread 0x0000024da6914590 nmethod 3806 0x0000024d8f6b5f90 code [0x0000024d8f6b6120, 0x0000024d8f6b6220] Event: 3.805 Thread 0x0000024da6912380 3809       3       java.lang.ThreadLocal$ThreadLocalMap::nextIndex (15 bytes) Event: 3.805 Thread 0x0000024da6911cb0 nmethod 3808 0x0000024d8f6b6290 code [0x0000024d8f6b6420, 0x0000024d8f6b6530] Event: 3.805 Thread 0x0000024da69115e0 nmethod 3807 0x0000024d8f6b6610 code [0x0000024d8f6b67c0, 0x0000024d8f6b6a10] Event: 3.805 Thread 0x0000024da6912380 nmethod 3809 0x0000024d8f6b6b10 code [0x0000024d8f6b6ca0, 0x0000024d8f6b6dd8] Event: 3.806 Thread 0x0000024da6914590 3810       3       sun.misc.Unsafe::putInt (11 bytes) Event: 3.806 Thread 0x0000024da6914590 nmethod 3810 0x0000024d8f6b6e90 code [0x0000024d8f6b7020, 0x0000024d8f6b7130] Event: 3.806 Thread 0x0000024da69115e0 3811       3       org.lwjgl.system.MemoryUtil::encodeASCIIUnsafe (53 bytes) Event: 3.806 Thread 0x0000024da69115e0 nmethod 3811 0x0000024d8f6b7210 code [0x0000024d8f6b7400, 0x0000024d8f6b77f8] Event: 3.813 Thread 0x0000024da6912380 3812       3       jdk.internal.loader.NativeLibraries$NativeLibraryImpl::find (9 bytes) Event: 3.813 Thread 0x0000024da6912380 nmethod 3812 0x0000024d8f6b7990 code [0x0000024d8f6b7b40, 0x0000024d8f6b7c80] Event: 3.833 Thread 0x0000024da6912380 3813       3       jdk.internal.misc.Unsafe::ensureClassInitialized (18 bytes) Event: 3.833 Thread 0x0000024da6912380 nmethod 3813 0x0000024d8f6b7d10 code [0x0000024d8f6b7ee0, 0x0000024d8f6b8118] Event: 3.834 Thread 0x0000024da68fa040 3815       4       java.lang.invoke.MethodTypeForm::canonicalize (74 bytes) Event: 3.834 Thread 0x0000024da69115e0 3817       3       java.lang.invoke.MethodTypeForm::<init> (322 bytes) Event: 3.834 Thread 0x0000024da68fa040 nmethod 3815 0x0000024d96de6e90 code [0x0000024d96de7020, 0x0000024d96de70f8] Event: 3.835 Thread 0x0000024da6912a50 3820       4       java.lang.invoke.MethodType::makeImpl (109 bytes) Event: 3.835 Thread 0x0000024da69115e0 nmethod 3817 0x0000024d8f6b8210 code [0x0000024d8f6b8500, 0x0000024d8f6b9b78] GC Heap History (12 events): Event: 0.826 GC heap before {Heap before GC invocations=0 (full 0):  garbage-first heap   total 262144K, used 36864K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 11 young (22528K), 0 survivors (0K)  Metaspace       used 10212K, committed 10432K, reserved 1114112K   class space    used 846K, committed 960K, reserved 1048576K } Event: 0.833 GC heap after {Heap after GC invocations=1 (full 0):  garbage-first heap   total 262144K, used 21935K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 2 young (4096K), 2 survivors (4096K)  Metaspace       used 10212K, committed 10432K, reserved 1114112K   class space    used 846K, committed 960K, reserved 1048576K } Event: 0.933 GC heap before {Heap before GC invocations=1 (full 0):  garbage-first heap   total 262144K, used 42415K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 12 young (24576K), 2 survivors (4096K)  Metaspace       used 10217K, committed 10432K, reserved 1114112K   class space    used 846K, committed 960K, reserved 1048576K } Event: 0.935 GC heap after {Heap after GC invocations=2 (full 0):  garbage-first heap   total 262144K, used 25402K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 2 young (4096K), 2 survivors (4096K)  Metaspace       used 10217K, committed 10432K, reserved 1114112K   class space    used 846K, committed 960K, reserved 1048576K } Event: 1.643 GC heap before {Heap before GC invocations=2 (full 0):  garbage-first heap   total 262144K, used 76602K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 27 young (55296K), 2 survivors (4096K)  Metaspace       used 12663K, committed 12928K, reserved 1114112K   class space    used 1066K, committed 1216K, reserved 1048576K } Event: 1.648 GC heap after {Heap after GC invocations=3 (full 0):  garbage-first heap   total 262144K, used 32768K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 4 young (8192K), 4 survivors (8192K)  Metaspace       used 12663K, committed 12928K, reserved 1114112K   class space    used 1066K, committed 1216K, reserved 1048576K } Event: 2.419 GC heap before {Heap before GC invocations=3 (full 0):  garbage-first heap   total 262144K, used 202752K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 76 young (155648K), 4 survivors (8192K)  Metaspace       used 13672K, committed 13952K, reserved 1114112K   class space    used 1156K, committed 1280K, reserved 1048576K } Event: 2.427 GC heap after {Heap after GC invocations=4 (full 0):  garbage-first heap   total 262144K, used 40622K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 7 young (14336K), 7 survivors (14336K)  Metaspace       used 13672K, committed 13952K, reserved 1114112K   class space    used 1156K, committed 1280K, reserved 1048576K } Event: 3.108 GC heap before {Heap before GC invocations=4 (full 0):  garbage-first heap   total 262144K, used 202414K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 76 young (155648K), 7 survivors (14336K)  Metaspace       used 16158K, committed 16448K, reserved 1114112K   class space    used 1450K, committed 1600K, reserved 1048576K } Event: 3.117 GC heap after {Heap after GC invocations=5 (full 0):  garbage-first heap   total 262144K, used 43052K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 5 young (10240K), 5 survivors (10240K)  Metaspace       used 16158K, committed 16448K, reserved 1114112K   class space    used 1450K, committed 1600K, reserved 1048576K } Event: 3.355 GC heap before {Heap before GC invocations=5 (full 0):  garbage-first heap   total 262144K, used 57388K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 13 young (26624K), 5 survivors (10240K)  Metaspace       used 21184K, committed 21504K, reserved 1114112K   class space    used 2017K, committed 2112K, reserved 1048576K } Event: 3.359 GC heap after {Heap after GC invocations=6 (full 0):  garbage-first heap   total 262144K, used 44074K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 5 young (10240K), 5 survivors (10240K)  Metaspace       used 21184K, committed 21504K, reserved 1114112K   class space    used 2017K, committed 2112K, reserved 1048576K } Dll operation events (11 events): Event: 0.011 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\java.dll Event: 0.019 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\zip.dll Event: 0.089 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\jsvml.dll Event: 0.243 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\net.dll Event: 0.245 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\nio.dll Event: 0.256 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\zip.dll Event: 0.421 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\jimage.dll Event: 1.015 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\verify.dll Event: 3.158 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\management.dll Event: 3.160 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\management_ext.dll Event: 3.773 Loaded shared library \curseforge\minecraft\Install\bin\df130b4c9f85663b3d4407324bb32d45dcb27512\lwjgl.dll Deoptimization events (20 events): Event: 3.695 Thread 0x0000024d890b5240 DEOPT PACKING pc=0x0000024d96cabe70 sp=0x00000051180fd990 Event: 3.695 Thread 0x0000024d890b5240 DEOPT UNPACKING pc=0x0000024d964546a2 sp=0x00000051180fd850 mode 2 Event: 3.702 Thread 0x0000024d890b5240 Uncommon trap: trap_request=0xffffffde fr.pc=0x0000024d96caadac relative=0x00000000000001cc Event: 3.702 Thread 0x0000024d890b5240 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000024d96caadac method=java.nio.ByteBuffer.put(Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer; @ 10 c2 Event: 3.702 Thread 0x0000024d890b5240 DEOPT PACKING pc=0x0000024d96caadac sp=0x00000051180fdc70 Event: 3.702 Thread 0x0000024d890b5240 DEOPT UNPACKING pc=0x0000024d964546a2 sp=0x00000051180fdc50 mode 2 Event: 3.740 Thread 0x0000024d890b5240 Uncommon trap: trap_request=0xffffff45 fr.pc=0x0000024d96c28350 relative=0x0000000000000290 Event: 3.740 Thread 0x0000024d890b5240 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000024d96c28350 method=java.util.concurrent.ConcurrentHashMap.get(Ljava/lang/Object;)Ljava/lang/Object; @ 76 c2 Event: 3.740 Thread 0x0000024d890b5240 DEOPT PACKING pc=0x0000024d96c28350 sp=0x00000051180fc840 Event: 3.741 Thread 0x0000024d890b5240 DEOPT UNPACKING pc=0x0000024d964546a2 sp=0x00000051180fc7b8 mode 2 Event: 3.745 Thread 0x0000024d890b5240 Uncommon trap: trap_request=0xffffffde fr.pc=0x0000024d96caadac relative=0x00000000000001cc Event: 3.745 Thread 0x0000024d890b5240 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000024d96caadac method=java.nio.ByteBuffer.put(Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer; @ 10 c2 Event: 3.745 Thread 0x0000024d890b5240 DEOPT PACKING pc=0x0000024d96caadac sp=0x00000051180fdbb0 Event: 3.745 Thread 0x0000024d890b5240 DEOPT UNPACKING pc=0x0000024d964546a2 sp=0x00000051180fdb90 mode 2 Event: 3.746 Thread 0x0000024d890b5240 Uncommon trap: trap_request=0xffffffde fr.pc=0x0000024d96caadac relative=0x00000000000001cc Event: 3.746 Thread 0x0000024d890b5240 Uncommon trap: reason=class_check action=maybe_recompile pc=0x0000024d96caadac method=java.nio.ByteBuffer.put(Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer; @ 10 c2 Event: 3.746 Thread 0x0000024d890b5240 DEOPT PACKING pc=0x0000024d96caadac sp=0x00000051180fdbb0 Event: 3.746 Thread 0x0000024d890b5240 DEOPT UNPACKING pc=0x0000024d964546a2 sp=0x00000051180fdb90 mode 2 Event: 3.781 Thread 0x0000024d890b5240 DEOPT PACKING pc=0x0000024d8f3bfc57 sp=0x00000051180fc8d0 Event: 3.781 Thread 0x0000024d890b5240 DEOPT UNPACKING pc=0x0000024d96454e42 sp=0x00000051180fbd88 mode 0 Classes loaded (20 events): Event: 3.792 Loading class java/nio/DirectCharBufferU Event: 3.792 Loading class java/nio/DirectCharBufferU done Event: 3.792 Loading class java/nio/DirectFloatBufferU Event: 3.793 Loading class java/nio/DirectFloatBufferU done Event: 3.793 Loading class java/nio/DirectDoubleBufferU Event: 3.793 Loading class java/nio/DirectDoubleBufferU done Event: 3.794 Loading class java/util/function/LongPredicate Event: 3.794 Loading class java/util/function/LongPredicate done Event: 3.797 Loading class java/nio/InvalidMarkException Event: 3.797 Loading class java/nio/InvalidMarkException done Event: 3.797 Loading class java/nio/BufferUnderflowException Event: 3.797 Loading class java/nio/BufferUnderflowException done Event: 3.831 Loading class java/util/concurrent/ScheduledThreadPoolExecutor$ScheduledFutureTask Event: 3.831 Loading class java/util/concurrent/FutureTask Event: 3.831 Loading class java/util/concurrent/FutureTask done Event: 3.831 Loading class java/util/concurrent/ScheduledThreadPoolExecutor$ScheduledFutureTask done Event: 3.832 Loading class java/util/concurrent/FutureTask$WaitNode Event: 3.832 Loading class java/util/concurrent/FutureTask$WaitNode done Event: 3.832 Loading class java/util/concurrent/Executors$RunnableAdapter Event: 3.832 Loading class java/util/concurrent/Executors$RunnableAdapter done Classes unloaded (0 events): No events Classes redefined (0 events): No events Internal exceptions (20 events): Event: 3.632 Thread 0x0000024d890b5240 Exception <a 'java/lang/NoSuchMethodError'{0x000000070e534c08}: 'java.lang.Object java.lang.invoke.DirectMethodHandle$Holder.invokeStaticInit(java.lang.Object, java.lang.Object, java.lang.Object, java.lang.Object)'> (0x000000070e534c08)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.633 Thread 0x0000024d890b5240 Exception <a 'java/lang/IncompatibleClassChangeError'{0x000000070e53fa08}: Found class java.lang.Object, but interface was expected> (0x000000070e53fa08)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 840] Event: 3.633 Thread 0x0000024d890b5240 Exception <a 'java/lang/NoSuchMethodError'{0x000000070e549888}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeStaticInit(java.lang.Object, java.lang.Object, java.lang.Object)'> (0x000000070e549888)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.637 Thread 0x0000024d890b5240 Exception <a 'java/lang/IncompatibleClassChangeError'{0x000000070e588858}: Found class java.lang.Object, but interface was expected> (0x000000070e588858)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 840] Event: 3.658 Thread 0x0000024d890b5240 Exception <a 'java/lang/NoSuchMethodError'{0x000000070e23b578}: 'void java.lang.invoke.DirectMethodHandle$Holder.invokeStatic(java.lang.Object, java.lang.Object, int)'> (0x000000070e23b578)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.741 Thread 0x0000024d890b5240 Exception <a 'java/lang/NoSuchMethodError'{0x000000070dd79598}: method resolution failed> (0x000000070dd79598)  thrown [s\src\hotspot\share\prims\methodHandles.cpp, line 1144] Event: 3.746 Thread 0x0000024d890b5240 Exception <a 'sun/nio/fs/WindowsException'{0x000000070dda9c20}> (0x000000070dda9c20)  thrown [s\src\hotspot\share\prims\jni.cpp, line 520] Event: 3.750 Thread 0x0000024d890b5240 Exception <a 'java/lang/NoSuchMethodError'{0x000000070ddca9b8}: 'java.lang.Object java.lang.invoke.DirectMethodHandle$Holder.invokeSpecial(java.lang.Object, java.lang.Object, int, java.lang.Object, java.lang.Object)'> (0x000000070ddca9b8)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.761 Thread 0x0000024d890b5240 Exception <a 'java/lang/NoSuchMethodError'{0x000000070da9e4d0}: 'void java.lang.System.load(java.lang.String, java.lang.Class)'> (0x000000070da9e4d0)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.763 Thread 0x0000024d890b5240 Exception <a 'java/lang/NoSuchMethodError'{0x000000070dab4158}: 'void java.lang.System.loadLibrary(java.lang.String, java.lang.Class)'> (0x000000070dab4158)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.771 Thread 0x0000024d890b5240 Exception <a 'sun/nio/fs/WindowsException'{0x000000070dad57c0}> (0x000000070dad57c0)  thrown [s\src\hotspot\share\prims\jni.cpp, line 520] Event: 3.771 Thread 0x0000024d890b5240 Exception <a 'sun/nio/fs/WindowsException'{0x000000070dad5bc8}> (0x000000070dad5bc8)  thrown [s\src\hotspot\share\prims\jni.cpp, line 520] Event: 3.787 Thread 0x0000024d890b5240 Exception <a 'sun/nio/fs/WindowsException'{0x000000070db129e0}> (0x000000070db129e0)  thrown [s\src\hotspot\share\prims\jni.cpp, line 520] Event: 3.787 Thread 0x0000024d890b5240 Exception <a 'sun/nio/fs/WindowsException'{0x000000070db12e00}> (0x000000070db12e00)  thrown [s\src\hotspot\share\prims\jni.cpp, line 520] Event: 3.794 Thread 0x0000024d890b5240 Exception <a 'java/lang/NoSuchMethodError'{0x000000070db63028}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeStaticInit(java.lang.Object, java.lang.Object, int, long)'> (0x000000070db63028)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.795 Thread 0x0000024d890b5240 Exception <a 'java/lang/NoSuchMethodError'{0x000000070db68330}: 'java.lang.Object java.lang.invoke.DirectMethodHandle$Holder.newInvokeSpecial(java.lang.Object, java.lang.Object, int)'> (0x000000070db68330)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.796 Thread 0x0000024d890b5240 Exception <a 'java/lang/NoSuchMethodError'{0x000000070db790a0}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeStaticInit(java.lang.Object, java.lang.Object, long, long)'> (0x000000070db790a0)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.796 Thread 0x0000024d890b5240 Exception <a 'java/lang/NoSuchMethodError'{0x000000070db7e770}: 'java.lang.Object java.lang.invoke.DirectMethodHandle$Holder.newInvokeSpecial(java.lang.Object, java.lang.Object, long)'> (0x000000070db7e770)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.796 Thread 0x0000024d890b5240 Exception <a 'java/lang/NoSuchMethodError'{0x000000070db81f98}: 'java.lang.Object java.lang.invoke.Invokers$Holder.linkToTargetMethod(java.lang.Object, long, java.lang.Object)'> (0x000000070db81f98)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.796 Thread 0x0000024d890b5240 Exception <a 'java/lang/NoSuchMethodError'{0x000000070db89190}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeStaticInit(java.lang.Object, java.lang.Object, java.lang.Object, long)'> (0x000000070db89190)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] ZGC Phase Switch (0 events): No events VM Operations (20 events): Event: 3.355 Executing VM operation: CollectForMetadataAllocation (Metadata GC Threshold) Event: 3.359 Executing VM operation: CollectForMetadataAllocation (Metadata GC Threshold) done Event: 3.367 Executing VM operation: G1PauseRemark Event: 3.369 Executing VM operation: G1PauseRemark done Event: 3.371 Executing VM operation: G1PauseCleanup Event: 3.371 Executing VM operation: G1PauseCleanup done Event: 3.401 Executing VM operation: HandshakeAllThreads (Deoptimize) Event: 3.402 Executing VM operation: HandshakeAllThreads (Deoptimize) done Event: 3.402 Executing VM operation: HandshakeAllThreads (Deoptimize) Event: 3.402 Executing VM operation: HandshakeAllThreads (Deoptimize) done Event: 3.426 Executing VM operation: HandshakeAllThreads (Deoptimize) Event: 3.426 Executing VM operation: HandshakeAllThreads (Deoptimize) done Event: 3.559 Executing VM operation: HandshakeAllThreads (Deoptimize) Event: 3.560 Executing VM operation: HandshakeAllThreads (Deoptimize) done Event: 3.569 Executing VM operation: HandshakeAllThreads (Deoptimize) Event: 3.569 Executing VM operation: HandshakeAllThreads (Deoptimize) done Event: 3.607 Executing VM operation: HandshakeAllThreads (Deoptimize) Event: 3.607 Executing VM operation: HandshakeAllThreads (Deoptimize) done Event: 3.739 Executing VM operation: ICBufferFull Event: 3.739 Executing VM operation: ICBufferFull done Memory protections (0 events): No events Nmethod flushes (0 events): No events Events (20 events): Event: 0.088 Thread 0x0000024d890b5240 Thread added: 0x0000024da68f8050 Event: 0.088 Thread 0x0000024d890b5240 Thread added: 0x0000024da68fa040 Event: 0.088 Thread 0x0000024d890b5240 Thread added: 0x0000024da69115e0 Event: 0.219 Thread 0x0000024da69115e0 Thread added: 0x0000024da6911cb0 Event: 0.227 Thread 0x0000024d890b5240 Thread added: 0x0000024da6abe220 Event: 0.235 Thread 0x0000024d890b5240 Thread added: 0x0000024da6ae7270 Event: 0.263 Thread 0x0000024da68fa040 Thread added: 0x0000024da6913ec0 Event: 0.263 Thread 0x0000024da68fa040 Thread added: 0x0000024da6913120 Event: 0.729 Thread 0x0000024da6911cb0 Thread added: 0x0000024da6912380 Event: 0.729 Thread 0x0000024da6911cb0 Thread added: 0x0000024da6914590 Event: 0.851 Thread 0x0000024da68fa040 Thread added: 0x0000024da6910f10 Event: 0.851 Thread 0x0000024da68fa040 Thread added: 0x0000024da6912a50 Event: 0.856 Thread 0x0000024da6913ec0 Thread added: 0x0000024da69137f0 Event: 0.856 Thread 0x0000024da6913ec0 Thread added: 0x0000024dabb40e70 Event: 0.856 Thread 0x0000024da6913ec0 Thread added: 0x0000024dabb3fa00 Event: 2.634 Thread 0x0000024dabb3fa00 Thread exited: 0x0000024dabb3fa00 Event: 2.639 Thread 0x0000024dabb40e70 Thread exited: 0x0000024dabb40e70 Event: 3.410 Thread 0x0000024d890b5240 Thread added: 0x0000024daf1fbb30 Event: 3.412 Thread 0x0000024daf1fbb30 Thread exited: 0x0000024daf1fbb30 Event: 3.832 Thread 0x0000024d890b5240 Thread added: 0x0000024daefcdf10 Dynamic libraries: 0x00007ff679680000 - 0x00007ff67968e000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\javaw.exe 0x00007ffa35410000 - 0x00007ffa35627000     C:\WINDOWS\SYSTEM32\ntdll.dll 0x00007ffa332d0000 - 0x00007ffa33394000     C:\WINDOWS\System32\KERNEL32.DLL 0x00007ffa327c0000 - 0x00007ffa32b92000     C:\WINDOWS\System32\KERNELBASE.dll 0x00007ffa32d50000 - 0x00007ffa32e61000     C:\WINDOWS\System32\ucrtbase.dll 0x00007ffa07e90000 - 0x00007ffa07ead000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\VCRUNTIME140.dll 0x00007ffa100d0000 - 0x00007ffa100e8000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\jli.dll 0x00007ffa33900000 - 0x00007ffa33ab1000     C:\WINDOWS\System32\USER32.dll 0x00007ffa325d0000 - 0x00007ffa325f6000     C:\WINDOWS\System32\win32u.dll 0x00007ffa33200000 - 0x00007ffa33229000     C:\WINDOWS\System32\GDI32.dll 0x00007ffa1aa40000 - 0x00007ffa1acdb000     C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.5547_none_27104afb73855772\COMCTL32.dll 0x00007ffa32c20000 - 0x00007ffa32d43000     C:\WINDOWS\System32\gdi32full.dll 0x00007ffa32500000 - 0x00007ffa3259a000     C:\WINDOWS\System32\msvcp_win.dll 0x00007ffa343f0000 - 0x00007ffa34497000     C:\WINDOWS\System32\msvcrt.dll 0x00007ffa34ad0000 - 0x00007ffa34b01000     C:\WINDOWS\System32\IMM32.DLL 0x00007ffa20a70000 - 0x00007ffa20a7c000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\vcruntime140_1.dll 0x00007ffa00f20000 - 0x00007ffa00fad000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\msvcp140.dll 0x00007ff95f910000 - 0x00007ff9606a8000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\server\jvm.dll 0x00007ffa35310000 - 0x00007ffa353c1000     C:\WINDOWS\System32\ADVAPI32.dll 0x00007ffa334b0000 - 0x00007ffa33558000     C:\WINDOWS\System32\sechost.dll 0x00007ffa325a0000 - 0x00007ffa325c8000     C:\WINDOWS\System32\bcrypt.dll 0x00007ffa347d0000 - 0x00007ffa348e4000     C:\WINDOWS\System32\RPCRT4.dll 0x00007ffa348f0000 - 0x00007ffa34961000     C:\WINDOWS\System32\WS2_32.dll 0x00007ffa31340000 - 0x00007ffa3138d000     C:\WINDOWS\SYSTEM32\POWRPROF.dll 0x00007ffa26dc0000 - 0x00007ffa26dca000     C:\WINDOWS\SYSTEM32\VERSION.dll 0x00007ffa2c110000 - 0x00007ffa2c144000     C:\WINDOWS\SYSTEM32\WINMM.dll 0x00007ffa31320000 - 0x00007ffa31333000     C:\WINDOWS\SYSTEM32\UMPDC.dll 0x00007ffa315e0000 - 0x00007ffa315f8000     C:\WINDOWS\SYSTEM32\kernel.appcore.dll 0x00007ffa1e6a0000 - 0x00007ffa1e6aa000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\jimage.dll 0x00007ffa2fc50000 - 0x00007ffa2fe83000     C:\WINDOWS\SYSTEM32\DBGHELP.DLL 0x00007ffa33560000 - 0x00007ffa338f3000     C:\WINDOWS\System32\combase.dll 0x00007ffa349f0000 - 0x00007ffa34ac7000     C:\WINDOWS\System32\OLEAUT32.dll 0x00007ffa20c00000 - 0x00007ffa20c32000     C:\WINDOWS\SYSTEM32\dbgcore.DLL 0x00007ffa32ba0000 - 0x00007ffa32c1b000     C:\WINDOWS\System32\bcryptPrimitives.dll 0x00007ffa06470000 - 0x00007ffa06490000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\java.dll 0x00007ffa06210000 - 0x00007ffa06228000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\zip.dll 0x00007ffa33ac0000 - 0x00007ffa34362000     C:\WINDOWS\System32\SHELL32.dll 0x00007ffa32600000 - 0x00007ffa3273f000     C:\WINDOWS\System32\wintypes.dll 0x00007ffa30280000 - 0x00007ffa30b9d000     C:\WINDOWS\SYSTEM32\windows.storage.dll 0x00007ffa333a0000 - 0x00007ffa334ac000     C:\WINDOWS\System32\SHCORE.dll 0x00007ffa34970000 - 0x00007ffa349d9000     C:\WINDOWS\System32\shlwapi.dll 0x00007ffa32430000 - 0x00007ffa3245b000     C:\WINDOWS\SYSTEM32\profapi.dll 0x00007ffa00960000 - 0x00007ffa00a36000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\jsvml.dll 0x00007ffa1c880000 - 0x00007ffa1c890000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\net.dll 0x00007ffa2d4c0000 - 0x00007ffa2d5ec000     C:\WINDOWS\SYSTEM32\WINHTTP.dll 0x00007ffa31a60000 - 0x00007ffa31ac9000     C:\WINDOWS\system32\mswsock.dll 0x00007ffa020d0000 - 0x00007ffa020e6000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\nio.dll 0x00007ffa11b60000 - 0x00007ffa11b70000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\verify.dll 0x00007ffa10200000 - 0x00007ffa1020a000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\management.dll 0x00007ffa100c0000 - 0x00007ffa100cb000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\management_ext.dll 0x00007ffa349e0000 - 0x00007ffa349e8000     C:\WINDOWS\System32\PSAPI.DLL 0x00007ffa103f0000 - 0x00007ffa10407000     C:\WINDOWS\system32\napinsp.dll 0x00007ffa103d0000 - 0x00007ffa103eb000     C:\WINDOWS\system32\pnrpnsp.dll 0x00007ffa31050000 - 0x00007ffa31148000     C:\WINDOWS\SYSTEM32\DNSAPI.dll 0x00007ffa31020000 - 0x00007ffa3104d000     C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL 0x00007ffa34b10000 - 0x00007ffa34b19000     C:\WINDOWS\System32\NSI.dll 0x00007ffa103b0000 - 0x00007ffa103c1000     C:\WINDOWS\System32\winrnr.dll 0x00007ffa2c6e0000 - 0x00007ffa2c6ff000     C:\WINDOWS\system32\wshbth.dll 0x00007ffa10380000 - 0x00007ffa103a1000     C:\WINDOWS\system32\nlansp_c.dll 0x0000000070410000 - 0x0000000070436000     C:\Program Files\Bonjour\mdnsNSP.dll 0x00007ffa24670000 - 0x00007ffa2467a000     C:\Windows\System32\rasadhlp.dll 0x00007ffa2bf20000 - 0x00007ffa2bfa4000     C:\WINDOWS\System32\fwpuclnt.dll 0x00007ffa00ea0000 - 0x00007ffa00f1b000     \curseforge\minecraft\Install\bin\df130b4c9f85663b3d4407324bb32d45dcb27512\lwjgl.dll 0x00007ffa008d0000 - 0x00007ffa00952000     \curseforge\minecraft\Install\bin\df130b4c9f85663b3d4407324bb32d45dcb27512\glfw.dll 0x00007ff98c5b0000 - 0x00007ff98c5f6000     C:\WINDOWS\SYSTEM32\dinput8.dll 0x00007ffa1e7c0000 - 0x00007ffa1e7d1000     C:\WINDOWS\SYSTEM32\xinput1_4.dll 0x00007ffa321f0000 - 0x00007ffa3223e000     C:\WINDOWS\SYSTEM32\cfgmgr32.dll 0x00007ffa321c0000 - 0x00007ffa321ec000     C:\WINDOWS\SYSTEM32\DEVOBJ.dll 0x00007ffa2eb80000 - 0x00007ffa2ebae000     C:\WINDOWS\SYSTEM32\dwmapi.dll 0x00007ffa211e0000 - 0x00007ffa213f5000     C:\WINDOWS\SYSTEM32\inputhost.dll 0x00007ffa2b850000 - 0x00007ffa2b983000     C:\WINDOWS\SYSTEM32\CoreMessaging.dll 0x00007ffa2e9f0000 - 0x00007ffa2eaa4000     C:\WINDOWS\system32\uxtheme.dll 0x00007ffa31cd0000 - 0x00007ffa31cdc000     C:\WINDOWS\SYSTEM32\CRYPTBASE.DLL 0x00007ffa34670000 - 0x00007ffa347d0000     C:\WINDOWS\System32\MSCTF.dll 0x00007ff9a1b80000 - 0x00007ff9a1c80000     C:\WINDOWS\SYSTEM32\opengl32.dll 0x00007ff9a1b50000 - 0x00007ff9a1b7d000     C:\WINDOWS\SYSTEM32\GLU32.dll 0x00007ffa2eff0000 - 0x00007ffa2f027000     C:\WINDOWS\SYSTEM32\dxcore.dll 0x00007ffa350b0000 - 0x00007ffa35160000     C:\WINDOWS\System32\clbcatq.dll 0x00007ff9a1b20000 - 0x00007ff9a1b4d000     C:\WINDOWS\System32\DriverStore\FileRepository\u0390451.inf_amd64_39377efdd62734d1\B390182\atig6pxx.dll 0x00007ff99dee0000 - 0x00007ff9a1b15000     C:\WINDOWS\System32\DriverStore\FileRepository\u0390451.inf_amd64_39377efdd62734d1\B390182\atio6axx.dll 0x00007ffa34bb0000 - 0x00007ffa35024000     C:\WINDOWS\System32\SETUPAPI.dll 0x00007ffa32740000 - 0x00007ffa327bc000     C:\WINDOWS\System32\WINTRUST.dll 0x00007ffa32e70000 - 0x00007ffa32fd7000     C:\WINDOWS\System32\CRYPT32.dll 0x00007ffa31d30000 - 0x00007ffa31d42000     C:\WINDOWS\SYSTEM32\MSASN1.dll dbghelp: loaded successfully - version: 4.0.5 - missing functions: none symbol engine: initialized successfully - sym options: 0x614 - pdb path: .;\curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin;C:\WINDOWS\SYSTEM32;C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.5547_none_27104afb73855772;\curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\server;C:\Program Files\Bonjour;\curseforge\minecraft\Install\bin\df130b4c9f85663b3d4407324bb32d45dcb27512;C:\WINDOWS\System32\DriverStore\FileRepository\u0390451.inf_amd64_39377efdd62734d1\B390182 VM Arguments: jvm_args: -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Djava.library.path=\curseforge\minecraft\Install\bin\df130b4c9f85663b3d4407324bb32d45dcb27512 -Djna.tmpdir=\curseforge\minecraft\Install\bin\df130b4c9f85663b3d4407324bb32d45dcb27512 -Dorg.lwjgl.system.SharedLibraryExtractPath=\curseforge\minecraft\Install\bin\df130b4c9f85663b3d4407324bb32d45dcb27512 -Dio.netty.native.workdir=\curseforge\minecraft\Install\bin\df130b4c9f85663b3d4407324bb32d45dcb27512 -Dminecraft.launcher.brand=minecraft-launcher -Dminecraft.launcher.version=3.16.17 -Djava.net.preferIPv6Addresses=system -Xmx4096m -Xms256m -Dminecraft.applet.TargetDirectory=\curseforge\minecraft\Instances\working -Dfml.ignorePatchDiscrepancies=true -Dfml.ignoreInvalidMinecraftCertificates=true -Duser.language=en -Duser.country=US -DlibraryDirectory=\curseforge\minecraft\Install\libraries -Dlog4j.configurationFile=\curseforge\minecraft\Install\assets\log_configs\client-1.12.xml  java_command: net.minecraftforge.bootstrap.ForgeBootstrap --version forge-52.1.0 --gameDir \curseforge\minecraft\Instances\working --assetsDir \curseforge\minecraft\Install\assets --assetIndex 17 --userType msa --versionType release --width 1024 --height 768 --quickPlayPath \curseforge\minecraft\Install\quickPlay\java\1751570365581.json --launchTarget forge_client java_class_path (initial): \curseforge\minecraft\Install\libraries\net\minecraftforge\forge\1.21.1-52.1.0\forge-1.21.1-52.1.0-universal.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\forge\1.21.1-52.1.0\forge-1.21.1-52.1.0-client.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\JarJarFileSystems\0.3.26\JarJarFileSystems-0.3.26.jar;\curseforge\minecraft\Install\libraries\com\google\guava\guava\32.1.2-jre\guava-32.1.2-jre.jar;\curseforge\minecraft\Install\libraries\com\google\guava\failureaccess\1.0.1\failureaccess-1.0.1.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\securemodules\2.2.21\securemodules-2.2.21.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\unsafe\0.9.2\unsafe-0.9.2.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm\9.7.1\asm-9.7.1.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-tree\9.7.1\asm-tree-9.7.1.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-util\9.7.1\asm-util-9.7.1.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-commons\9.7.1\asm-commons-9.7.1.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-analysis\9.7.1\asm-analysis-9.7.1.jar;\curseforge\minecraft\Install\libraries\de\oceanlabs\mcp\mcp_config\1.21.1-20240808.132146\mcp_config-1.21.1-20240808.132146-srg2off.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\JarJarFileSystems\0.3.26\JarJarFileSystems-0.3.26.jar;\curseforge\minecraft\Install\libraries\com\google\guava\guava\32.1.2-jre\guava-32.1.2-jre.jar;\curseforge\minecraft\Install\libraries\com\google\guava\failureaccess\1.0.1\failureaccess-1.0.1.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\securemodules\2.2.21\securemodules-2.2.21.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\unsafe\0.9.2\unsafe-0.9.2.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm\9.7.1\asm-9.7.1.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-tree\9.7.1\asm-tree-9.7.1.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-util\9.7.1\asm-util-9.7.1.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-commons\9.7.1\asm-commons-9.7.1.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-analysis\9.7.1\asm-analysis-9.7.1.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\bootstrap\2.1.8\bootstrap-2.1.8.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\bootstrap-api\2.1.8\bootstrap-api-2.1.8.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\accesstransformers\8.2.2\accesstransformers-8.2.2.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\eventbus\6.2.27\eventbus-6.2.27.jar;\curseforge\minecraft\Install\libraries\net\jodah\typetools\0.6.3\typetools-0.6.3.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\forgespi\7.1.5\forgespi-7.1.5.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\coremods\5.2.6\coremods-5.2.6.jar;\curseforge\minecraft\Install\libraries\org\openjdk\nashorn\nashorn-core\15.4\nashorn-core-15.4.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\modlauncher\10.2.4\modlauncher-10.2.4.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\mergetool-api\1.0\mergetool-api-1.0.jar;\curseforge\minecraft\Install\libraries\com\electronwill\night-config\toml\3.7.4\toml-3.7.4.jar;\curseforge\minecraft\Install\libraries\com\electronwill\night-config\core\3.7.4\core-3.7.4.jar;\curseforge\minecraft\Install\libraries\org\apache\maven\maven-artifact\3.8.8\maven-artifact-3.8.8.jar;\curseforge\minecraft\Install\libraries\net\minecrell\terminalconsoleappender\1.2.0\terminalconsoleappender-1.2.0.jar;\curseforge\minecraft\Install\libraries\org\jline\jline-reader\3.25.1\jline-reader-3.25.1.jar;\curseforge\minecraft\Install\libraries\org\jline\jline-terminal\3.25.1\jline-terminal-3.25.1.jar;\curseforge\minecraft\Install\libraries\org\jline\jline-terminal-jna\3.25.1\jline-terminal-jna-3.25.1.jar;\curseforge\minecraft\Install\libraries\org\spongepowered\mixin\0.8.7\mixin-0.8.7.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\JarJarSelector\0.3.26\JarJarSelector-0.3.26.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\JarJarMetadata\0.3.26\JarJarMetadata-0.3.26.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\fmlcore\1.21.1-52.1.0\fmlcore-1.21.1-52.1.0.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\fmlloader\1.21.1-52.1.0\fmlloader-1.21.1-52.1.0.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\fmlearlydisplay\1.21.1-52.1.0\fmlearlydisplay-1.21.1-52.1.0.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\javafmllanguage\1.21.1-52.1.0\javafmllanguage-1.21.1-52.1.0.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\lowcodelanguage\1.21.1-52.1.0\lowcodelanguage-1.21.1-52.1.0.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\mclanguage\1.21.1-52.1.0\mclanguage-1.21.1-52.1.0.jar;\curseforge\minecraft\Install\libraries\com\github\oshi\oshi-core\6.4.10\oshi-core-6.4.10.jar;\curseforge\minecraft\Install\libraries\com\google\code\gson\gson\2.10.1\gson-2.10.1.jar;\curseforge\minecraft\Install\libraries\com\ibm\icu\icu4j\73.2\icu4j-73.2.jar;\curseforge\minecraft\Install\libraries\com\mojang\authlib\6.0.54\authlib-6.0.54.jar;\curseforge\minecraft\Install\libraries\com\mojang\blocklist\1.0.10\blocklist-1.0.10.jar;\curseforge\minecraft\Install\libraries\com\mojang\brigadier\1.3.10\brigadier-1.3.10.jar;\curseforge\minecraft\Install\libraries\com\mojang\datafixerupper\8.0.16\datafixerupper-8.0.16.jar;\curseforge\minecraft\Install\libraries\com\mojang\logging\1.2.7\logging-1.2.7.jar;\curseforge\minecraft\Install\libraries\com\mojang\patchy\2.2.10\patchy-2.2.10.jar;\curseforge\minecraft\Install\libraries\com\mojang\text2speech\1.17.9\text2speech-1.17.9.jar;\curseforge\minecraft\Install\libraries\commons-codec\commons-codec\1.16.0\commons-codec-1.16.0.jar;\curseforge\minecraft\Install\libraries\commons-io\commons-io\2.15.1\commons-io-2.15.1.jar;\curseforge\minecraft\Install\libraries\commons-logging\commons-logging\1.2\commons-logging-1.2.jar;\curseforge\minecraft\Install\libraries\io\netty\netty-buffer\4.1.97.Final\netty-buffer-4.1.97.Final.jar;\curseforge\minecraft\Install\libraries\io\netty\netty-codec\4.1.97.Final\netty-codec-4.1.97.Final.jar;\curseforge\minecraft\Install\libraries\io\netty\netty-common\4.1.97.Final\netty-common-4.1.97.Final.jar;\curseforge\minecraft\Install\libraries\io\netty\netty-handler\4.1.97.Final\netty-handler-4.1.97.Final.jar;\curseforge\minecraft\Install\libraries\io\netty\netty-resolver\4.1.97.Final\netty-resolver-4.1.97.Final.jar;\curseforge\minecraft\Install\libraries\io\netty\netty-transport-classes-epoll\4.1.97.Final\netty-transport-classes-epoll-4.1.97.Final.jar;\curseforge\minecraft\Install\libraries\io\netty\netty-transport-native-unix-common\4.1.97.Final\netty-transport-native-unix-common-4.1.97.Final.jar;\curseforge\minecraft\Install\libraries\io\netty\netty-transport\4.1.97.Final\netty-transport-4.1.97.Final.jar;\curseforge\minecraft\Install\libraries\it\unimi\dsi\fastutil\8.5.12\fastutil-8.5.12.jar;\curseforge\minecraft\Install\libraries\net\java\dev\jna\jna-platform\5.14.0\jna-platform-5.14.0.jar;\curseforge\minecraft\Install\libraries\net\java\dev\jna\jna\5.14.0\jna-5.14.0.jar;\curseforge\minecraft\Install\libraries\net\sf\jopt-simple\jopt-simple\5.0.4\jopt-simple-5.0.4.jar;\curseforge\minecraft\Install\libraries\org\apache\commons\commons-compress\1.26.0\commons-compress-1.26.0.jar;\curseforge\minecraft\Install\libraries\org\apache\commons\commons-lang3\3.14.0\commons-lang3-3.14.0.jar;\curseforge\minecraft\Install\libraries\org\apache\httpcomponents\httpclient\4.5.13\httpclient-4.5.13.jar;\curseforge\minecraft\Install\libraries\org\apache\httpcomponents\httpcore\4.4.16\httpcore-4.4.16.jar;\curseforge\minecraft\Install\libraries\org\apache\logging\log4j\log4j-api\2.22.1\log4j-api-2.22.1.jar;\curseforge\minecraft\Install\libraries\org\apache\logging\log4j\log4j-core\2.22.1\log4j-core-2.22.1.jar;\curseforge\minecraft\Install\libraries\org\apache\logging\log4j\log4j-slf4j2-impl\2.22.1\log4j-slf4j2-impl-2.22.1.jar;\curseforge\minecraft\Install\libraries\org\jcraft\jorbis\0.0.17\jorbis-0.0.17.jar;\curseforge\minecraft\Install\libraries\org\joml\joml\1.10.5\joml-1.10.5.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-freetype\3.3.3\lwjgl-freetype-3.3.3.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-freetype\3.3.3\lwjgl-freetype-3.3.3-natives-windows.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-freetype\3.3.3\lwjgl-freetype-3.3.3-natives-windows-arm64.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-freetype\3.3.3\lwjgl-freetype-3.3.3-natives-windows-x86.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-glfw\3.3.3\lwjgl-glfw-3.3.3.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-glfw\3.3.3\lwjgl-glfw-3.3.3-natives-windows.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-glfw\3.3.3\lwjgl-glfw-3.3.3-natives-windows-arm64.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-glfw\3.3.3\lwjgl-glfw-3.3.3-natives-windows-x86.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-jemalloc\3.3.3\lwjgl-jemalloc-3.3.3.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-jemalloc\3.3.3\lwjgl-jemalloc-3.3.3-natives-windows.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-jemalloc\3.3.3\lwjgl-jemalloc-3.3.3-natives-windows-arm64.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-jemalloc\3.3.3\lwjgl-jemalloc-3.3.3-natives-windows-x86.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-openal\3.3.3\lwjgl-openal-3.3.3.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-openal\3.3.3\lwjgl-openal-3.3.3-natives-windows.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-openal\3.3.3\lwjgl-openal-3.3.3-natives-windows-arm64.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-openal\3.3.3\lwjgl-openal-3.3.3-natives-windows-x86.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-opengl\3.3.3\lwjgl-opengl-3.3.3.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-opengl\3.3.3\lwjgl-opengl-3.3.3-natives-windows.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-opengl\3.3.3\lwjgl-opengl-3.3.3-natives-windows-arm64.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-opengl\3.3.3\lwjgl-opengl-3.3.3-natives-windows-x86.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-stb\3.3.3\lwjgl-stb-3.3.3.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-stb\3.3.3\lwjgl-stb-3.3.3-natives-windows.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-stb\3.3.3\lwjgl-stb-3.3.3-natives-windows-arm64.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-stb\3.3.3\lwjgl-stb-3.3.3-natives-windows-x86.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-tinyfd\3.3.3\lwjgl-tinyfd-3.3.3.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-tinyfd\3.3.3\lwjgl-tinyfd-3.3.3-natives-windows.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-tinyfd\3.3.3\lwjgl-tinyfd-3.3.3-natives-windows-arm64.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-tinyfd\3.3.3\lwjgl-tinyfd-3.3.3-natives-windows-x86.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl\3.3.3\lwjgl-3.3.3.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl\3.3.3\lwjgl-3.3.3-natives-windows.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl\3.3.3\lwjgl-3.3.3-natives-windows-arm64.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl\3.3.3\lwjgl-3.3.3-natives-windows-x86.jar;\curseforge\minecraft\Install\libraries\org\lz4\lz4-java\1.8.0\lz4-java-1.8.0.jar;\curseforge\minecraft\Install\libraries\org\slf4j\slf4j-api\2.0.9\slf4j-api-2.0.9.jar;\curseforge\minecraft\Install\versions\forge-52.1.0\forge-52.1.0.jar Launcher Type: SUN_STANDARD [Global flags]      intx CICompilerCount                          = 12                                        {product} {ergonomic}      uint ConcGCThreads                            = 3                                         {product} {ergonomic}      uint G1ConcRefinementThreads                  = 13                                        {product} {ergonomic}    size_t G1HeapRegionSize                         = 2097152                                   {product} {ergonomic}     uintx GCDrainStackTargetSize                   = 64                                        {product} {ergonomic}     ccstr HeapDumpPath                             = MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump         {manageable} {command line}    size_t InitialHeapSize                          = 268435456                                 {product} {command line}    size_t MarkStackSize                            = 4194304                                   {product} {ergonomic}    size_t MaxHeapSize                              = 4294967296                                {product} {command line}    size_t MaxNewSize                               = 2575302656                                {product} {ergonomic}    size_t MinHeapDeltaBytes                        = 2097152                                   {product} {ergonomic}    size_t MinHeapSize                              = 268435456                                 {product} {command line}     uintx NonNMethodCodeHeapSize                   = 7602480                                {pd product} {ergonomic}     uintx NonProfiledCodeHeapSize                  = 122027880                              {pd product} {ergonomic}     uintx ProfiledCodeHeapSize                     = 122027880                              {pd product} {ergonomic}     uintx ReservedCodeCacheSize                    = 251658240                              {pd product} {ergonomic}      bool SegmentedCodeCache                       = true                                      {product} {ergonomic}    size_t SoftMaxHeapSize                          = 4294967296                             {manageable} {ergonomic}      intx ThreadStackSize                          = 1024                                   {pd product} {command line}      bool UseCompressedOops                        = true                           {product lp64_product} {ergonomic}      bool UseG1GC                                  = true                                      {product} {ergonomic}      bool UseLargePagesIndividualAllocation        = false                                  {pd product} {ergonomic} Logging: Log output configuration:  #0: stdout all=warning uptime,level,tags foldmultilines=false  #1: stderr all=off uptime,level,tags foldmultilines=false Environment Variables: PATH=C:\Program Files\Oculus\Support\oculus-runtime;C:\Program Files\Common Files\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\dotnet\;\AppData\Local\Microsoft\WindowsApps;\.dotnet\tools;\Downloads\ffmpeg-master-latest-win64-gpl-shared\ffmpeg-master-latest-win64-gpl-shared; USERNAME=%USERPROFILE% OS=Windows_NT PROCESSOR_IDENTIFIER=AMD64 Family 23 Model 113 Stepping 0, AuthenticAMD TMP=<TMP> TEMP=<TEMP> Periodic native trim disabled ---------------  S Y S T E M  --------------- OS:  Windows 11 , 64 bit Build 22621 (10.0.22621.5415) OS uptime: 0 days 4:34 hours Hyper-V role detected CPU: total 16 (initial active 16) (16 cores per cpu, 2 threads per core) family 23 model 113 stepping 0 microcode 0x0, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4a, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, clmul, bmi1, bmi2, adx, sha, fma, vzeroupper, clflush, clflushopt, hv, rdtscp, rdpid, f16c Processor Information for the first 16 processors :   Max Mhz: 3600, Current Mhz: 3600, Mhz Limit: 3600 Memory: 4k page, system-wide physical 16310M (2281M free) TotalPageFile size 32182M (AvailPageFile size 14177M) current process WorkingSet (physical memory assigned to process): 379M, peak: 381M current process commit charge ("private bytes"): 468M, peak: 471M vm_info: OpenJDK 64-Bit Server VM (21.0.7+6-LTS) for windows-amd64 JRE (21.0.7+6-LTS), built on 2025-04-09T22:17:25Z by "MicrosoftCorporation" with unknown MS VC++:1939 END.  
    • The issue happens because you're modifying the player's effects list while it's still being cleared. When you run /effect clear, Minecraft is iterating over and removing all active effects. If you try to add a new one during that process (inside onEffectRemoved), it throws a ConcurrentModificationException. Instead of applying the new effect immediately inside onEffectRemoved, store it in a temporary list, and then apply it safely during the next tick (in a tick event). That way, the original clearing process finishes before you add anything new. that is 1. In onEffectRemoved: just remember which effect to apply next. 2. In tick: apply the effect from the stored list. More likely this prevents any conflict and works even when all effects are cleared at once  I hope it helped.
    • Same issue - maybe just completely remove the armor from your inventory
    • sorry for the late reply, here's the new crash report: Time: 7/1/25 1:30 AM Description: Ticking player java.lang.IllegalArgumentException: bound must be positive     at java.util.Random.nextInt(Random.java:388) ~[?:1.8.0_51] {}     at io.github.chaosawakens.common.items.armor.ExperienceArmorItem.onArmorTick(ExperienceArmorItem.java:34) ~[?:0.12.1.1] {re:classloading}     at net.minecraftforge.common.extensions.IForgeItemStack.onArmorTick(IForgeItemStack.java:281) ~[?:?] {re:computing_frames,re:mixin,re:classloading,pl:mixin:APP:apotheosis.mixins.json:MixinIForgeItemStack,pl:mixin:A}     at net.minecraft.entity.player.PlayerInventory.lambda$tick$0(PlayerInventory.java:242) ~[?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:dankstorage.mixins.json:PlayerInventoryMixin,pl:mixin:APP:curiousjetpacks.mixins.json:ironjetpacks.PlayerInventoryMixin,pl:mixin:A}     at net.minecraft.entity.player.PlayerInventory$$Lambda$48756/806391711.accept(Unknown Source) ~[?:?] {}     at java.lang.Iterable.forEach(Iterable.java:75) ~[?:1.8.0_51] {}     at net.minecraft.entity.player.PlayerInventory.func_70429_k(PlayerInventory.java:242) ~[?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:dankstorage.mixins.json:PlayerInventoryMixin,pl:mixin:APP:curiousjetpacks.mixins.json:ironjetpacks.PlayerInventoryMixin,pl:mixin:A}     at net.minecraft.entity.player.PlayerEntity.func_70636_d(PlayerEntity.java:487) ~[?:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:pehkui.mixins.json:EntityVehicleHeightOffsetMixin,pl:mixin:APP:pehkui.mixins.json:PlayerEntityMixin,pl:mixin:APP:pehkui.mixins.json:compat115plus.PlayerEntityMixin,pl:mixin:APP:pehkui.mixins.json:compat116minus.PlayerEntityMixin,pl:mixin:APP:pehkui.mixins.json:reach.PlayerEntityMixin,pl:mixin:APP:caelus.mixins.json:PlayerEntityMixin,pl:mixin:APP:notenoughanimations.mixins.json:PlayerEntityMixin,pl:mixin:APP:blue_skies.mixins.json:PlayerEntityMixin,pl:mixin:APP:bygonenether.mixins.json:NoAxeDisableModShieldMixin,pl:mixin:APP:losttrinkets.mixins.json:PlayerEntityMixin,pl:mixin:APP:morph.mixins.json:PlayerEntityMixin,pl:mixin:APP:curiousjetpacks.mixins.json:ironjetpacks.PlayerEntityMixin,pl:mixin:APP:ars_nouveau.mixins.json:ElytraPlayerMixin,pl:mixin:APP:chaosawakens.mixins.json:PlayerEntityMixin,pl:mixin:APP:expandability.mixins.json:swimming.PlayerMixin,pl:mixin:APP:balancedenchanting.mixins.json:PlayerEntityMixin,pl:mixin:APP:assets/botania/botania.mixins.json:MixinPlayerEntity,pl:mixin:APP:kubejs-common.mixins.json:PlayerMixin,pl:mixin:A}     at net.minecraft.entity.LivingEntity.func_70071_h_(LivingEntity.java:2160) ~[?:?] {re:mixin,pl:accesstransformer:B,xf:fml:placebo:placeboshieldblock,xf:fml:apotheosis:apothshieldblock,xf:fml:apotheosis:apothpotiondmg,re:classloading,pl:accesstransformer:B,xf:fml:placebo:placeboshieldblock,xf:fml:apotheosis:apothshieldblock,xf:fml:apotheosis:apothpotiondmg,pl:mixin:APP:performant.mixins.json:entity.LivingEntityMixin,pl:mixin:APP:modernfix-forge.mixins.json:perf.forge_cap_retrieval.LivingEntityMixin,pl:mixin:APP:supplementaries.mixins.json:LivingEntityMixin,pl:mixin:APP:cavesandcliffs.mixins.json:common.entity.LivingEntityMixin,pl:mixin:APP:cavesandcliffs.mixins.json:core.accessor.LivingEntityAccessor,pl:mixin:APP:cgm.mixins.json:common.LivingEntityMixin,pl:mixin:APP:pehkui.mixins.json:LivingEntityMixin,pl:mixin:APP:pehkui.mixins.json:compat116minus.LivingEntityMixin,pl:mixin:APP:pehkui.mixins.json:compat116plus.LivingEntityMixin,pl:mixin:APP:caelus.mixins.json:LivingEntityMixin,pl:mixin:APP:curioofundying.mixins.json:LivingEntityMixin,pl:mixin:APP:memoryleakfix-16.mixins.json:entityMemoriesLeak.LivingEntity_clearMemoriesMixin,pl:mixin:APP:notenoughanimations.mixins.json:LivingEntityMixin,pl:mixin:APP:blue_skies.mixins.json:LivingEntityMixin,pl:mixin:APP:citadel.mixins.json:LivingEntityMixin,pl:mixin:APP:relics.mixins.json:MixinLivingEntity,pl:mixin:APP:morph.mixins.json:LivingEntityInvokerMixin,pl:mixin:APP:morph.mixins.json:LivingEntityMixin,pl:mixin:APP:ars_nouveau.mixins.json:ExpInvokerMixin,pl:mixin:APP:ars_nouveau.mixins.json:MixinLivingEntity,pl:mixin:APP:obscure_api.mixins.json:LivingEntityMixin,pl:mixin:APP:kubejs-common.mixins.json:LivingEntityMixin,pl:mixin:APP:chaosawakens.mixins.json:LivingEntityMixin,pl:mixin:APP:expandability.mixins.json:swimming.LivingEntityMixin,pl:mixin:APP:assets/botania/botania.mixins.json:AccessorLivingEntity,pl:mixin:APP:pehkui.mixins.json:compat115plus.LivingEntityMixin,pl:mixin:APP:pehkui.mixins.json:compat115plus.compat116minus.LivingEntityMixin,pl:mixin:A}     at net.minecraft.entity.player.PlayerEntity.func_70071_h_(PlayerEntity.java:223) ~[?:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:pehkui.mixins.json:EntityVehicleHeightOffsetMixin,pl:mixin:APP:pehkui.mixins.json:PlayerEntityMixin,pl:mixin:APP:pehkui.mixins.json:compat115plus.PlayerEntityMixin,pl:mixin:APP:pehkui.mixins.json:compat116minus.PlayerEntityMixin,pl:mixin:APP:pehkui.mixins.json:reach.PlayerEntityMixin,pl:mixin:APP:caelus.mixins.json:PlayerEntityMixin,pl:mixin:APP:notenoughanimations.mixins.json:PlayerEntityMixin,pl:mixin:APP:blue_skies.mixins.json:PlayerEntityMixin,pl:mixin:APP:bygonenether.mixins.json:NoAxeDisableModShieldMixin,pl:mixin:APP:losttrinkets.mixins.json:PlayerEntityMixin,pl:mixin:APP:morph.mixins.json:PlayerEntityMixin,pl:mixin:APP:curiousjetpacks.mixins.json:ironjetpacks.PlayerEntityMixin,pl:mixin:APP:ars_nouveau.mixins.json:ElytraPlayerMixin,pl:mixin:APP:chaosawakens.mixins.json:PlayerEntityMixin,pl:mixin:APP:expandability.mixins.json:swimming.PlayerMixin,pl:mixin:APP:balancedenchanting.mixins.json:PlayerEntityMixin,pl:mixin:APP:assets/botania/botania.mixins.json:MixinPlayerEntity,pl:mixin:APP:kubejs-common.mixins.json:PlayerMixin,pl:mixin:A}     at net.minecraft.entity.player.ServerPlayerEntity.func_71127_g(ServerPlayerEntity.java:404) ~[?:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:performant.mixins.json:advancement.ServerPlayerEntityMixin,pl:mixin:APP:pehkui.mixins.json:ServerPlayerEntityMixin,pl:mixin:APP:performant.mixins.json:entity.ServerPlayerEntityMixin,pl:mixin:A}     at net.minecraft.network.play.ServerPlayNetHandler.func_73660_a(ServerPlayNetHandler.java:207) ~[?:?] {re:mixin,pl:accesstransformer:B,xf:fml:hammerlib:coremodone,re:classloading,pl:accesstransformer:B,xf:fml:hammerlib:coremodone,pl:mixin:A}     at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:226) ~[?:?] {re:mixin,re:classloading}     at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:134) ~[?:?] {re:classloading}     at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:865) ~[?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftServerMixin,pl:mixin:APP:modernfix-common.mixins.json:core.MinecraftServerMixin,pl:mixin:APP:structure_gel.mixins.json:MinecraftServerMixin,pl:mixin:APP:byg.mixins.json:server.MixinMinecraftServer,pl:mixin:APP:mixins.shrines.json:MixinMinecraftServer,pl:mixin:APP:kubejs-common.mixins.json:MinecraftServerMixin,pl:mixin:A}     at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:787) ~[?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftServerMixin,pl:mixin:APP:modernfix-common.mixins.json:core.MinecraftServerMixin,pl:mixin:APP:structure_gel.mixins.json:MinecraftServerMixin,pl:mixin:APP:byg.mixins.json:server.MixinMinecraftServer,pl:mixin:APP:mixins.shrines.json:MixinMinecraftServer,pl:mixin:APP:kubejs-common.mixins.json:MinecraftServerMixin,pl:mixin:A}     at net.minecraft.server.integrated.IntegratedServer.func_71217_p(IntegratedServer.java:78) ~[?:?] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:APP:modernfix-common.mixins.json:perf.thread_priorities.IntegratedServerMixin,pl:mixin:APP:forgematica.mixins.json:MixinIntegratedServer,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServer.java:642) [?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftServerMixin,pl:mixin:APP:modernfix-common.mixins.json:core.MinecraftServerMixin,pl:mixin:APP:structure_gel.mixins.json:MinecraftServerMixin,pl:mixin:APP:byg.mixins.json:server.MixinMinecraftServer,pl:mixin:APP:mixins.shrines.json:MixinMinecraftServer,pl:mixin:APP:kubejs-common.mixins.json:MinecraftServerMixin,pl:mixin:A}     at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServer.java:232) [?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftServerMixin,pl:mixin:APP:modernfix-common.mixins.json:core.MinecraftServerMixin,pl:mixin:APP:structure_gel.mixins.json:MinecraftServerMixin,pl:mixin:APP:byg.mixins.json:server.MixinMinecraftServer,pl:mixin:APP:mixins.shrines.json:MixinMinecraftServer,pl:mixin:APP:kubejs-common.mixins.json:MinecraftServerMixin,pl:mixin:A}     at net.minecraft.server.MinecraftServer$$Lambda$47170/257366877.run(Unknown Source) [?:?] {}     at java.lang.Thread.run(Thread.java:745) [?:1.8.0_51] {} A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Server thread Stacktrace:     at java.util.Random.nextInt(Random.java:388) ~[?:1.8.0_51] {}     at io.github.chaosawakens.common.items.armor.ExperienceArmorItem.onArmorTick(ExperienceArmorItem.java:34) ~[?:0.12.1.1] {re:classloading}     at net.minecraftforge.common.extensions.IForgeItemStack.onArmorTick(IForgeItemStack.java:281) ~[?:?] {re:computing_frames,re:mixin,re:classloading,pl:mixin:APP:apotheosis.mixins.json:MixinIForgeItemStack,pl:mixin:A}     at net.minecraft.entity.player.PlayerInventory.lambda$tick$0(PlayerInventory.java:242) ~[?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:dankstorage.mixins.json:PlayerInventoryMixin,pl:mixin:APP:curiousjetpacks.mixins.json:ironjetpacks.PlayerInventoryMixin,pl:mixin:A}     at net.minecraft.entity.player.PlayerInventory$$Lambda$48756/806391711.accept(Unknown Source) ~[?:?] {}     at java.lang.Iterable.forEach(Iterable.java:75) ~[?:1.8.0_51] {}     at net.minecraft.entity.player.PlayerInventory.func_70429_k(PlayerInventory.java:242) ~[?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:dankstorage.mixins.json:PlayerInventoryMixin,pl:mixin:APP:curiousjetpacks.mixins.json:ironjetpacks.PlayerInventoryMixin,pl:mixin:A}     at net.minecraft.entity.player.PlayerEntity.func_70636_d(PlayerEntity.java:487) ~[?:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:pehkui.mixins.json:EntityVehicleHeightOffsetMixin,pl:mixin:APP:pehkui.mixins.json:PlayerEntityMixin,pl:mixin:APP:pehkui.mixins.json:compat115plus.PlayerEntityMixin,pl:mixin:APP:pehkui.mixins.json:compat116minus.PlayerEntityMixin,pl:mixin:APP:pehkui.mixins.json:reach.PlayerEntityMixin,pl:mixin:APP:caelus.mixins.json:PlayerEntityMixin,pl:mixin:APP:notenoughanimations.mixins.json:PlayerEntityMixin,pl:mixin:APP:blue_skies.mixins.json:PlayerEntityMixin,pl:mixin:APP:bygonenether.mixins.json:NoAxeDisableModShieldMixin,pl:mixin:APP:losttrinkets.mixins.json:PlayerEntityMixin,pl:mixin:APP:morph.mixins.json:PlayerEntityMixin,pl:mixin:APP:curiousjetpacks.mixins.json:ironjetpacks.PlayerEntityMixin,pl:mixin:APP:ars_nouveau.mixins.json:ElytraPlayerMixin,pl:mixin:APP:chaosawakens.mixins.json:PlayerEntityMixin,pl:mixin:APP:expandability.mixins.json:swimming.PlayerMixin,pl:mixin:APP:balancedenchanting.mixins.json:PlayerEntityMixin,pl:mixin:APP:assets/botania/botania.mixins.json:MixinPlayerEntity,pl:mixin:APP:kubejs-common.mixins.json:PlayerMixin,pl:mixin:A}     at net.minecraft.entity.LivingEntity.func_70071_h_(LivingEntity.java:2160) ~[?:?] {re:mixin,pl:accesstransformer:B,xf:fml:placebo:placeboshieldblock,xf:fml:apotheosis:apothshieldblock,xf:fml:apotheosis:apothpotiondmg,re:classloading,pl:accesstransformer:B,xf:fml:placebo:placeboshieldblock,xf:fml:apotheosis:apothshieldblock,xf:fml:apotheosis:apothpotiondmg,pl:mixin:APP:performant.mixins.json:entity.LivingEntityMixin,pl:mixin:APP:modernfix-forge.mixins.json:perf.forge_cap_retrieval.LivingEntityMixin,pl:mixin:APP:supplementaries.mixins.json:LivingEntityMixin,pl:mixin:APP:cavesandcliffs.mixins.json:common.entity.LivingEntityMixin,pl:mixin:APP:cavesandcliffs.mixins.json:core.accessor.LivingEntityAccessor,pl:mixin:APP:cgm.mixins.json:common.LivingEntityMixin,pl:mixin:APP:pehkui.mixins.json:LivingEntityMixin,pl:mixin:APP:pehkui.mixins.json:compat116minus.LivingEntityMixin,pl:mixin:APP:pehkui.mixins.json:compat116plus.LivingEntityMixin,pl:mixin:APP:caelus.mixins.json:LivingEntityMixin,pl:mixin:APP:curioofundying.mixins.json:LivingEntityMixin,pl:mixin:APP:memoryleakfix-16.mixins.json:entityMemoriesLeak.LivingEntity_clearMemoriesMixin,pl:mixin:APP:notenoughanimations.mixins.json:LivingEntityMixin,pl:mixin:APP:blue_skies.mixins.json:LivingEntityMixin,pl:mixin:APP:citadel.mixins.json:LivingEntityMixin,pl:mixin:APP:relics.mixins.json:MixinLivingEntity,pl:mixin:APP:morph.mixins.json:LivingEntityInvokerMixin,pl:mixin:APP:morph.mixins.json:LivingEntityMixin,pl:mixin:APP:ars_nouveau.mixins.json:ExpInvokerMixin,pl:mixin:APP:ars_nouveau.mixins.json:MixinLivingEntity,pl:mixin:APP:obscure_api.mixins.json:LivingEntityMixin,pl:mixin:APP:kubejs-common.mixins.json:LivingEntityMixin,pl:mixin:APP:chaosawakens.mixins.json:LivingEntityMixin,pl:mixin:APP:expandability.mixins.json:swimming.LivingEntityMixin,pl:mixin:APP:assets/botania/botania.mixins.json:AccessorLivingEntity,pl:mixin:APP:pehkui.mixins.json:compat115plus.LivingEntityMixin,pl:mixin:APP:pehkui.mixins.json:compat115plus.compat116minus.LivingEntityMixin,pl:mixin:A}     at net.minecraft.entity.player.PlayerEntity.func_70071_h_(PlayerEntity.java:223) ~[?:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:pehkui.mixins.json:EntityVehicleHeightOffsetMixin,pl:mixin:APP:pehkui.mixins.json:PlayerEntityMixin,pl:mixin:APP:pehkui.mixins.json:compat115plus.PlayerEntityMixin,pl:mixin:APP:pehkui.mixins.json:compat116minus.PlayerEntityMixin,pl:mixin:APP:pehkui.mixins.json:reach.PlayerEntityMixin,pl:mixin:APP:caelus.mixins.json:PlayerEntityMixin,pl:mixin:APP:notenoughanimations.mixins.json:PlayerEntityMixin,pl:mixin:APP:blue_skies.mixins.json:PlayerEntityMixin,pl:mixin:APP:bygonenether.mixins.json:NoAxeDisableModShieldMixin,pl:mixin:APP:losttrinkets.mixins.json:PlayerEntityMixin,pl:mixin:APP:morph.mixins.json:PlayerEntityMixin,pl:mixin:APP:curiousjetpacks.mixins.json:ironjetpacks.PlayerEntityMixin,pl:mixin:APP:ars_nouveau.mixins.json:ElytraPlayerMixin,pl:mixin:APP:chaosawakens.mixins.json:PlayerEntityMixin,pl:mixin:APP:expandability.mixins.json:swimming.PlayerMixin,pl:mixin:APP:balancedenchanting.mixins.json:PlayerEntityMixin,pl:mixin:APP:assets/botania/botania.mixins.json:MixinPlayerEntity,pl:mixin:APP:kubejs-common.mixins.json:PlayerMixin,pl:mixin:A} -- Player being ticked -- Details:     Entity Type: minecraft:player (net.minecraft.entity.player.ServerPlayerEntity)     Entity ID: 66     Entity Name: Noodlesfan12343     Entity's Exact location: 857.98, 78.00, -659.10     Entity's Block location: World: (857,78,-660), Chunk: (at 9,4,12 in 53,-42; contains blocks 848,0,-672 to 863,255,-657), Region: (1,-2; contains chunks 32,-64 to 63,-33, blocks 512,0,-1024 to 1023,255,-513)     Entity's Momentum: 0.00, -0.08, 0.00     Entity's Passengers: []     Entity's Vehicle: ~~ERROR~~ NullPointerException: null Stacktrace:     at net.minecraft.entity.player.ServerPlayerEntity.func_71127_g(ServerPlayerEntity.java:404) ~[?:?] {re:computing_frames,pl:accesstransformer:B,re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:performant.mixins.json:advancement.ServerPlayerEntityMixin,pl:mixin:APP:pehkui.mixins.json:ServerPlayerEntityMixin,pl:mixin:APP:performant.mixins.json:entity.ServerPlayerEntityMixin,pl:mixin:A}     at net.minecraft.network.play.ServerPlayNetHandler.func_73660_a(ServerPlayNetHandler.java:207) ~[?:?] {re:mixin,pl:accesstransformer:B,xf:fml:hammerlib:coremodone,re:classloading,pl:accesstransformer:B,xf:fml:hammerlib:coremodone,pl:mixin:A}     at net.minecraft.network.NetworkManager.func_74428_b(NetworkManager.java:226) ~[?:?] {re:mixin,re:classloading}     at net.minecraft.network.NetworkSystem.func_151269_c(NetworkSystem.java:134) ~[?:?] {re:classloading}     at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:865) ~[?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftServerMixin,pl:mixin:APP:modernfix-common.mixins.json:core.MinecraftServerMixin,pl:mixin:APP:structure_gel.mixins.json:MinecraftServerMixin,pl:mixin:APP:byg.mixins.json:server.MixinMinecraftServer,pl:mixin:APP:mixins.shrines.json:MixinMinecraftServer,pl:mixin:APP:kubejs-common.mixins.json:MinecraftServerMixin,pl:mixin:A}     at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:787) ~[?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftServerMixin,pl:mixin:APP:modernfix-common.mixins.json:core.MinecraftServerMixin,pl:mixin:APP:structure_gel.mixins.json:MinecraftServerMixin,pl:mixin:APP:byg.mixins.json:server.MixinMinecraftServer,pl:mixin:APP:mixins.shrines.json:MixinMinecraftServer,pl:mixin:APP:kubejs-common.mixins.json:MinecraftServerMixin,pl:mixin:A}     at net.minecraft.server.integrated.IntegratedServer.func_71217_p(IntegratedServer.java:78) ~[?:?] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:APP:modernfix-common.mixins.json:perf.thread_priorities.IntegratedServerMixin,pl:mixin:APP:forgematica.mixins.json:MixinIntegratedServer,pl:mixin:A,pl:runtimedistcleaner:A}     at net.minecraft.server.MinecraftServer.func_240802_v_(MinecraftServer.java:642) [?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftServerMixin,pl:mixin:APP:modernfix-common.mixins.json:core.MinecraftServerMixin,pl:mixin:APP:structure_gel.mixins.json:MinecraftServerMixin,pl:mixin:APP:byg.mixins.json:server.MixinMinecraftServer,pl:mixin:APP:mixins.shrines.json:MixinMinecraftServer,pl:mixin:APP:kubejs-common.mixins.json:MinecraftServerMixin,pl:mixin:A}     at net.minecraft.server.MinecraftServer.func_240783_a_(MinecraftServer.java:232) [?:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:APP:modernfix-common.mixins.json:perf.dedicated_reload_executor.MinecraftServerMixin,pl:mixin:APP:modernfix-common.mixins.json:core.MinecraftServerMixin,pl:mixin:APP:structure_gel.mixins.json:MinecraftServerMixin,pl:mixin:APP:byg.mixins.json:server.MixinMinecraftServer,pl:mixin:APP:mixins.shrines.json:MixinMinecraftServer,pl:mixin:APP:kubejs-common.mixins.json:MinecraftServerMixin,pl:mixin:A}     at net.minecraft.server.MinecraftServer$$Lambda$47170/257366877.run(Unknown Source) [?:?] {}     at java.lang.Thread.run(Thread.java:745) [?:1.8.0_51] {} -- System Details -- Details:     Minecraft Version: 1.16.5     Minecraft Version ID: 1.16.5     Operating System: Windows 10 (amd64) version 10.0     Java Version: 1.8.0_51, Oracle Corporation     Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation     Memory: 1090244792 bytes (1039 MB) / 5212471296 bytes (4971 MB) up to 9335996416 bytes (8903 MB)     CPUs: 12     JVM Flags: 4 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx10016m -Xms256m     ModLauncher: 8.1.3+8.1.3+main-8.1.x.c94d18ec     ModLauncher launch target: fmlclient     ModLauncher naming: srg     ModLauncher services:          /mixin-0.8.4.jar mixin PLUGINSERVICE          /eventbus-4.0.0.jar eventbus PLUGINSERVICE          /forge-1.16.5-36.2.35.jar object_holder_definalize PLUGINSERVICE          /forge-1.16.5-36.2.35.jar runtime_enum_extender PLUGINSERVICE          /accesstransformers-3.0.1.jar accesstransformer PLUGINSERVICE          /forge-1.16.5-36.2.35.jar capability_inject_definalize PLUGINSERVICE          /forge-1.16.5-36.2.35.jar runtimedistcleaner PLUGINSERVICE          /mixin-0.8.4.jar mixin TRANSFORMATIONSERVICE          /forge-1.16.5-36.2.35.jar fml TRANSFORMATIONSERVICE          /_MixinBootstrap-1.1.0.jar mixinbootstrap TRANSFORMATIONSERVICE      FML: 36.2     Forge: net.minecraftforge:36.2.35     FML Language Providers:          javafml@36.2         minecraft@1     Mod List:          BetterDungeons-1.16.4-1.2.1.jar                   |YUNG's Better Dungeons        |betterdungeons                |1.16.4-1.2.1        |DONE      |Manifest: NOSIGNATURE         ftb-essentials-1605.1.5-build.32.jar              |FTB Essentials                |ftbessentials                 |1605.1.5-build.32   |DONE      |Manifest: NOSIGNATURE         supermartijn642configlib-1.1.8-forge-mc1.16.jar   |SuperMartijn642's Config Libra|supermartijn642configlib      |1.1.8               |DONE      |Manifest: NOSIGNATURE         extratrades-1.16.5-1.2.jar                        |Extra Trades                  |extratrades                   |1.16.5-1.2          |DONE      |Manifest: NOSIGNATURE         TinkersLevellingAddon-1.16.5-1.1.1.jar            |Tinkers' Levelling Addon      |tinkerslevellingaddon         |1.1.1               |DONE      |Manifest: NOSIGNATURE         nerb-1.16.5-0.3.1-FORGE.jar                       |Not Enough Recipe Book        |nerb                          |0.3.1               |DONE      |Manifest: NOSIGNATURE         HammerLib-1.16.5-16.5.50.jar                      |HammerLib                     |hammerlib                     |16.5.50             |DONE      |Manifest: 97:e8:52:e9:b3:f0:1b:83:57:4e:83:15:f7:e7:76:51:c6:60:5f:2b:45:59:19:a7:31:9e:98:69:56:4f:01:3c         ProjectE-1.16.5-PE1.0.2.jar                       |ProjectE                      |projecte                      |PE1.0.2             |DONE      |Manifest: NOSIGNATURE         stalwart-dungeons-1.16.5-1.1.7.jar                |Stalwart Dungeons             |stalwart_dungeons             |1.1.7               |DONE      |Manifest: NOSIGNATURE         rubidium-0.2.12.jar                               |Rubidium                      |rubidium                      |0.2.12              |DONE      |Manifest: NOSIGNATURE         modnametooltip_1.16.2-1.15.0.jar                  |Mod Name Tooltip              |modnametooltip                |1.15.0              |DONE      |Manifest: NOSIGNATURE         Neat 1.7-27.jar                                   |Neat                          |neat                          |1.7-27              |DONE      |Manifest: NOSIGNATURE         IronJetpacks-1.16.5-4.2.3.jar                     |Iron Jetpacks                 |ironjetpacks                  |4.2.3               |DONE      |Manifest: NOSIGNATURE         BetterCaves-Forge-1.16.4-1.1.2.jar                |YUNG's Better Caves           |bettercaves                   |1.16.4-1.1.2        |DONE      |Manifest: NOSIGNATURE         ForgeEndertech-1.16.5-7.3.0.0-build.0330.jar      |ForgeEndertech                |forgeendertech                |7.3.0.0             |DONE      |Manifest: NOSIGNATURE         CTM-MC1.16.1-1.1.2.6.jar                          |ConnectedTexturesMod          |ctm                           |MC1.16.1-1.1.2.6    |DONE      |Manifest: NOSIGNATURE         modernfix-forge-5.18.0+mc1.16.5.jar               |ModernFix                     |modernfix                     |5.18.0+mc1.16.5     |DONE      |Manifest: NOSIGNATURE         YungsApi-1.16.4-Forge-13.jar                      |YUNG's API                    |yungsapi                      |1.16.4-Forge-13     |DONE      |Manifest: NOSIGNATURE         enchantment_extraction_table-1.0.2-forge-1.16.5.ja|enchantment_Extraction_Table  |enchantment_extraction_table  |1.0.2               |DONE      |Manifest: NOSIGNATURE         Forgematica-0.1.10-mc1.16.5.jar                   |Forgematica                   |forgematica                   |0.1.10-mc1.16.5     |DONE      |Manifest: NOSIGNATURE         cabletiers-1.16.5-0.545.jar                       |Cable Tiers                   |cabletiers                    |1.16.5-0.545        |DONE      |Manifest: NOSIGNATURE         WitherSkeletonTweaks-1.16.5-5.4.1.jar             |Wither Skeleton Tweaks        |wstweaks                      |5.4.1               |DONE      |Manifest: NOSIGNATURE         Shrink-1.16.5-1.1.6.jar                           |Shrink                        |shrink                        |1.1.6               |DONE      |Manifest: NOSIGNATURE         reliquary-1.16.5-1.3.5.1124.jar                   |Reliquary                     |xreliquary                    |1.16.5-1.3.5.1124   |DONE      |Manifest: NOSIGNATURE         pandorasbox-2.2.6-1.16.5.jar                      |Pandora's Box                 |pandorasbox                   |2.2.6-1.16.5        |DONE      |Manifest: NOSIGNATURE         lootbeams-1.16.5-release-july1722.jar             |LootBeams                     |lootbeams                     |1.16.5              |DONE      |Manifest: NOSIGNATURE         guardvillagers-1.16.5.1.2.6.jar                   |Guard Villagers               |guardvillagers                |1.2.6               |DONE      |Manifest: NOSIGNATURE         Desert Upgrade 1.2.7 - 1.16.5.jar                 |Desert Upgrade                |desert_upgrade                |1.2.7               |DONE      |Manifest: NOSIGNATURE         Apotheosis-1.16.5-4.8.9A0.jar                     |Apotheosis                    |apotheosis                    |4.8.9A0             |DONE      |Manifest: NOSIGNATURE         Morpheus-1.16.5-4.2.70.jar                        |Morpheus                      |morpheus                      |4.2.70              |DONE      |Manifest: NOSIGNATURE         Belt Mod 1.1.0 - 1.16.5.jar                       |Belt Mod                      |belt_mod                      |1.1.0               |DONE      |Manifest: NOSIGNATURE         speedyhoppers-1.16.4-1.jar                        |Speedy Hoppers                |speedyhoppers                 |1.16.4-1            |DONE      |Manifest: NOSIGNATURE         JustEnoughResources-1.16.5-0.12.1.128.jar         |Just Enough Resources         |jeresources                   |0.12.1.128          |DONE      |Manifest: NOSIGNATURE         supplementaries-1.16.5-0.18.5.jar                 |Supplementaries               |supplementaries               |0.18.3              |DONE      |Manifest: NOSIGNATURE         refinedstorage-1.9.18.jar                         |Refined Storage               |refinedstorage                |1.9.18              |DONE      |Manifest: NOSIGNATURE         easy_piglins-1.16.5-1.0.2.jar                     |Easy Piglins                  |easy_piglins                  |1.16.5-1.0.2        |DONE      |Manifest: NOSIGNATURE         structure_gel-1.16.5-1.7.8.jar                    |Structure Gel API             |structure_gel                 |1.7.8               |DONE      |Manifest: NOSIGNATURE         corpse-1.16.5-1.0.6.jar                           |Corpse                        |corpse                        |1.16.5-1.0.6        |DONE      |Manifest: NOSIGNATURE         AdvancementPlaques-1.16.5-1.4.1.jar               |Advancement Plaques           |advancementplaques            |1.4.1               |DONE      |Manifest: NOSIGNATURE         alltheores-1.3.6-1.16.5-36.1.0.jar                |AllTheOres                    |alltheores                    |1.3.6-1.16.5-36.1.0 |DONE      |Manifest: NOSIGNATURE         Wild Bushes 1.1.5 - 1.16.5.jar                    |Wild Bushes                   |wild_bushes                   |1.1.5               |DONE      |Manifest: NOSIGNATURE         castle_in_the_sky-1.16.5-0.2.6.jar                |Castle in the sky             |castle_in_the_sky             |1.16.5              |DONE      |Manifest: NOSIGNATURE         industrial-foregoing-1.16.5-3.2.14.8-20.jar       |Industrial Foregoing          |industrialforegoing           |3.2.14.8            |DONE      |Manifest: NOSIGNATURE         torchmaster-2.3.8.jar                             |Torchmaster                   |torchmaster                   |2.3.8               |DONE      |Manifest: NOSIGNATURE         repurposed_structures_forge-3.4.7+1.16.5.jar      |Repurposed Structures         |repurposed_structures         |3.4.7+1.16.5        |DONE      |Manifest: NOSIGNATURE         Levinide 0.4.9 - 1.16.5.jar                       |Levinide                      |levinide                      |0.4.9               |DONE      |Manifest: NOSIGNATURE         Ground Convert 1.0.0 - 1.16.5.jar                 |Ground Convert                |ground_convert                |1.0.0               |DONE      |Manifest: NOSIGNATURE         BiomesOPlenty-1.16.5-13.1.0.488-universal.jar     |Biomes O' Plenty              |biomesoplenty                 |1.16.5-13.1.0.488   |DONE      |Manifest: NOSIGNATURE         ironfurnaces-1.16.5-2.7.7.jar                     |Iron Furnaces                 |ironfurnaces                  |2.7.7               |DONE      |Manifest: NOSIGNATURE         MaFgLib-0.1.15-mc1.16.5.jar                       |MaFgLib                       |mafglib                       |0.1.15-mc1.16.5     |DONE      |Manifest: NOSIGNATURE         dungeons_plus-1.16.5-1.1.5.jar                    |Dungeons Plus                 |dungeons_plus                 |1.1.5               |DONE      |Manifest: NOSIGNATURE         supermartijn642corelib-1.1.17a-forge-mc1.16.jar   |SuperMartijn642's Core Lib    |supermartijn642corelib        |1.1.17a             |DONE      |Manifest: NOSIGNATURE         YungsBridges-Forge-1.16.4-1.0.1.jar               |YUNG's Bridges                |yungsbridges                  |1.16.4-1.0.1        |DONE      |Manifest: NOSIGNATURE         Botania-1.16.5-420.3.jar                          |Botania                       |botania                       |1.16.5-420.3        |DONE      |Manifest: NOSIGNATURE         cavesandcliffs-1.16.5-7.2.0.jar                   |Caves and Cliffs Backport     |cavesandcliffs                |1.16.5-7.2.0        |DONE      |Manifest: NOSIGNATURE         Highlighter-1.16.5-1.1.1.jar                      |Highlighter                   |highlighter                   |1.1.1               |DONE      |Manifest: NOSIGNATURE         lightspeed-1.16.5-1.0.5.jar                       |Lightspeed                    |lightspeed                    |1.16.5-1.1.0        |DONE      |Manifest: NOSIGNATURE         curios-forge-1.16.5-4.1.0.0.jar                   |Curios API                    |curios                        |1.16.5-4.1.0.0      |DONE      |Manifest: NOSIGNATURE         oculus-1.4.5.jar                                  |Oculus                        |oculus                        |1.4.5               |DONE      |Manifest: NOSIGNATURE         Desert Mining 1.0.0 -1.16.5.jar                   |Desert Mining                 |desert_mining                 |1.0.0               |DONE      |Manifest: NOSIGNATURE         Searchables-forge-1.16.5-1.0.7.jar                |Searchables                   |searchables                   |1.0.7               |DONE      |Manifest: NOSIGNATURE         YungsExtras-Forge-1.16.4-1.0.jar                  |YUNG's Extras                 |yungsextras                   |Forge-1.16.4-1.0    |DONE      |Manifest: NOSIGNATURE         obfuscate-0.6.3-1.16.5.jar                        |Obfuscate                     |obfuscate                     |0.6.3               |DONE      |Manifest: NOSIGNATURE         Queen Bee.jar                                     |Queen Bee                     |queen_bee                     |1.0.0               |DONE      |Manifest: NOSIGNATURE         constructionwand-1.16.5-2.6.jar                   |Construction Wand             |constructionwand              |1.16.5-2.6          |DONE      |Manifest: NOSIGNATURE         mutantmore-1.16.5-1.0.2.jar                       |Mutant More                   |mutantmore                    |1.0.2               |DONE      |Manifest: NOSIGNATURE         cfm-7.0.0pre22-1.16.3.jar                         |MrCrayfish's Furniture Mod    |cfm                           |7.0.0-pre22         |DONE      |Manifest: NOSIGNATURE         cloth-config-4.17.132-forge.jar                   |Cloth Config v4 API           |cloth-config                  |4.17.132            |DONE      |Manifest: NOSIGNATURE         Haste Enchantment 1.1.2 - 1.16.5.jar              |Haste Enchantment             |hasteenchantment              |1.1.2               |DONE      |Manifest: NOSIGNATURE         Crazy Craft Updated Core - 1.1.4 -1.16.5.jar      |Crazy Craft Updated Core      |crazy_craft_updated_core      |1.1.4               |DONE      |Manifest: NOSIGNATURE         ScalingHealth-1.16.5-4.1.5+11.jar                 |Scaling Health                |scalinghealth                 |4.1.5+11            |DONE      |Manifest: NOSIGNATURE         FastLeafDecay-v25.2.jar                           |FastLeafDecay                 |fastleafdecay                 |v25.2               |DONE      |Manifest: NOSIGNATURE         CodeChickenLib-1.16.5-4.0.7.445-universal.jar     |CodeChicken Lib               |codechickenlib                |4.0.7.445           |DONE      |Manifest: 31:e6:db:63:47:4a:6e:e0:0a:2c:11:d1:76:db:4e:82:ff:56:2d:29:93:d2:e5:02:bd:d3:bd:9d:27:47:a5:71         BetterMineshafts-Forge-1.16.4-2.0.4.jar           |YUNG's Better Mineshafts      |bettermineshafts              |1.16.4-2.0.4        |DONE      |Manifest: NOSIGNATURE         mcw-lights-1.1.2-mc1.16.5forge.jar                |Macaw's Lights and Lamps      |mcwlights                     |1.1.2               |DONE      |Manifest: NOSIGNATURE         SaveMyStronghold-1.16.4-1.0.jar                   |Save My Stronghold!           |savemystronghold              |1.16.4-1.0          |DONE      |Manifest: NOSIGNATURE         mowziesmobs-1.5.25.jar                            |Mowzie's Mobs                 |mowziesmobs                   |1.5.25              |DONE      |Manifest: NOSIGNATURE         cgm-1.2.6-1.16.5.jar                              |MrCrayfish's Gun Mod          |cgm                           |1.2.6               |DONE      |Manifest: NOSIGNATURE         Bountiful Baubles FORGE-1.16.3-0.0.2.jar          |Bountiful Baubles             |bountifulbaubles              |NONE                |DONE      |Manifest: NOSIGNATURE         jei-1.16.5-7.8.0.1013.jar                         |Just Enough Items             |jei                           |7.8.0.1013          |DONE      |Manifest: NOSIGNATURE         Nameless Trinkets-1.16.5-1.1.5.jar                |Nameless Trinkets             |nameless_trinkets             |1.16.5-1.1.5        |DONE      |Manifest: NOSIGNATURE         The_Graveyard_2.1_(FORGE)_for_1.16.4-1.16.5.jar   |The Graveyard (FORGE)         |graveyard                     |2.1                 |DONE      |Manifest: NOSIGNATURE         AttributeFix-1.16.5-10.1.4.jar                    |AttributeFix                  |attributefix                  |10.1.4              |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         Pehkui-3.5.0+1.16.5-forge.jar                     |Pehkui                        |pehkui                        |3.5.0+1.16.5-forge  |DONE      |Manifest: NOSIGNATURE         libraryferret-forge-1.16.5-4.0.0.jar              |Library ferret                |libraryferret                 |4.0.0               |DONE      |Manifest: NOSIGNATURE         Mekanism-1.16.5-10.1.2.457.jar                    |Mekanism                      |mekanism                      |10.1.2              |DONE      |Manifest: NOSIGNATURE         luggage-1.1.jar                                   |Luggage                       |luggage                       |1.1                 |DONE      |Manifest: NOSIGNATURE         caelus-forge-1.16.5-2.1.3.2.jar                   |Caelus API                    |caelus                        |1.16.5-2.1.3.2      |DONE      |Manifest: NOSIGNATURE         AllTheCompressed-1.0.4-1.16.5-36.2.29.jar         |AllTheCompressed              |allthecompressed              |1.0.4-1.16.5-36.2.29|DONE      |Manifest: NOSIGNATURE         invtweaks-1.16.4-1.0.1.jar                        |Inventory Tweaks Renewed      |invtweaks                     |1.16.4-1.0.1        |DONE      |Manifest: NOSIGNATURE         shutupexperimentalsettings-1.0.3.jar              |Shutup Experimental Settings! |shutupexperimentalsettings    |1.0.3               |DONE      |Manifest: NOSIGNATURE         fastasyncworldsave-1.16.5-1.4.jar                 |fastasyncworldsave mod        |fastasyncworldsave            |1.16.5-1.4          |DONE      |Manifest: NOSIGNATURE         TravelersBackpack-1.16.5-5.4.51.jar               |Traveler's Backpack           |travelersbackpack             |5.4.51              |DONE      |Manifest: NOSIGNATURE         NaturesCompass-1.16.5-1.9.1-forge.jar             |Nature's Compass              |naturescompass                |1.16.5-1.9.1-forge  |DONE      |Manifest: NOSIGNATURE         LibX-1.16.3-1.0.76.jar                            |LibX                          |libx                          |1.16.3-1.0.76       |DONE      |Manifest: NOSIGNATURE         stoneholm-1.2.2.jar                               |Stoneholm                     |stoneholm                     |1.2                 |DONE      |Manifest: NOSIGNATURE         Edible Cakes 1.3.5 - 1.16.5.jar                   |Edible Cakes                  |edible_cakes                  |1.3.5               |DONE      |Manifest: NOSIGNATURE         champions-forge-1.16.5-2.0.1.16.jar               |Champions                     |champions                     |1.16.5-2.0.1.16     |DONE      |Manifest: NOSIGNATURE         curioofundying-forge-1.16.5-5.2.0.0.jar           |Curio of Undying              |curioofundying                |1.16.5-5.2.0.0      |DONE      |Manifest: NOSIGNATURE         Nether Ores Plus+  1.5.2 - 1.16.5.jar             |Nether Ores Plus+             |netheroresplus                |1.5.2               |DONE      |Manifest: NOSIGNATURE         Cake Cow 1.0.0 - 1.16.5.jar                       |Cake Cow                      |cake_cow                      |1.0.0               |DONE      |Manifest: NOSIGNATURE         Sulfar Mod 1.1.0 - 1.16.5.jar                     |Sulfar Mod                    |sulfar_mod                    |1.1.0               |DONE      |Manifest: NOSIGNATURE         Grand Enchantment Table 1.2.6 - 1.6.5.jar         |Grand Enchantment Table       |grand_enchantment_table       |1.2.6               |DONE      |Manifest: NOSIGNATURE         Shiny Drops 1.0.0 - 1.16.5.jar                    |Shiny Drops                   |shiny_drops                   |1.0.0               |DONE      |Manifest: NOSIGNATURE         catalogue-1.6.1-1.16.5.jar                        |Catalogue                     |catalogue                     |1.6.1               |DONE      |Manifest: NOSIGNATURE         Book Fishing 1.2.5 - 1.16.5.jar                   |Book Fishing                  |book_fishing                  |1.2.5               |DONE      |Manifest: NOSIGNATURE         Speed Enchantment 1.0.1 - 1.16.5.jar              |Speed Enchantment             |speed_enchantment             |1.0.1               |DONE      |Manifest: NOSIGNATURE         memoryleakfix-forge-pre1.17-1.0.0.jar             |Memory Leak Fix               |memoryleakfix                 |1.0.0               |DONE      |Manifest: NOSIGNATURE         extradisks-1.16.4-1.5.1.jar                       |Extra Disks                   |extradisks                    |1.5.1               |DONE      |Manifest: NOSIGNATURE         Structural Statues 1.1.0 - 1.16.5.jar             |Structural Statues            |structural_statues            |1.1.0               |DONE      |Manifest: NOSIGNATURE         More Wandering Trades 1.0.0 - 1.16.5.jar          |More Wandering Trades         |more_wandering_trades         |1.0.0               |DONE      |Manifest: NOSIGNATURE         SpawnBalanceUtility-36.13.3.jar                   |SpawnBalanceUtility           |spawnbalanceutility           |36.13.3             |DONE      |Manifest: NOSIGNATURE         idas_forge-1.5.5+1.16.5.jar                       |Integrated Dungeons and Struct|idas                          |1.5.5+1.16.5        |DONE      |Manifest: NOSIGNATURE         DynamicSurroundings-1.16.5-4.0.5.0.jar            |§3Dynamic Surroundings        |dsurround                     |4.0.5.0             |DONE      |Manifest: NOSIGNATURE         ironchest-1.16.5-11.2.21.jar                      |Iron Chests                   |ironchest                     |1.16.5-11.2.21      |DONE      |Manifest: NOSIGNATURE         MythicBotany-1.16.5-1.4.19.jar                    |MythicBotany                  |mythicbotany                  |1.16.5-1.4.19       |DONE      |Manifest: NOSIGNATURE         DungeonsArise-1.16.5-2.1.49-beta.jar              |When Dungeons Arise           |dungeons_arise                |2.1.49              |DONE      |Manifest: NOSIGNATURE         ZeroCore2-1.16.5-2.1.39.jar                       |Zero CORE 2                   |zerocore                      |1.16.5-2.1.39       |DONE      |Manifest: NOSIGNATURE         forge-1.16.5-36.2.35-client.jar                   |Minecraft                     |minecraft                     |1.16.5              |DONE      |Manifest: NOSIGNATURE         sons-of-sins-1.16.5-1.0.9.jar                     |sons of sins                  |sons_of_sins                  |1.0.9               |DONE      |Manifest: NOSIGNATURE         smoothchunk1.16.5-2.0.jar                         |Smoothchunk mod               |smoothchunk                   |2.0                 |DONE      |Manifest: NOSIGNATURE         theoneprobe-1.16-3.1.7.jar                        |The One Probe                 |theoneprobe                   |1.16-3.1.7          |DONE      |Manifest: NOSIGNATURE         pandoras_creatures-1.16.3-2.0.1.jar               |Pandoras Creatures            |pandoras_creatures            |1.16.3-2.0.1        |DONE      |Manifest: NOSIGNATURE         MouseTweaks-2.14-mc1.16.2.jar                     |Mouse Tweaks                  |mousetweaks                   |2.14                |DONE      |Manifest: NOSIGNATURE         Simple knives 1.2.0 - 1.16.5.jar                  |Simple Knives                 |simpleknives                  |1.2.0               |DONE      |Manifest: NOSIGNATURE         AdLods-1.16.5-4.1.10.0-build.0337.jar             |Large Ore Deposits            |adlods                        |4.1.10.0            |DONE      |Manifest: NOSIGNATURE         Special Drops 1.1.0 - 1.16.5.jar                  |Special Drops                 |special_drops                 |1.1.0               |DONE      |Manifest: NOSIGNATURE         jeiintegration_1.16.5-7.1.0.22.jar                |JEI Integration               |jeiintegration                |7.1.0.22            |DONE      |Manifest: NOSIGNATURE         pipez-1.16.5-1.2.15.jar                           |Pipez                         |pipez                         |1.16.5-1.2.15       |DONE      |Manifest: NOSIGNATURE         notenoughanimations-forge-1.9.0-mc1.16.5.jar      |NotEnoughAnimations           |notenoughanimations           |1.9.0               |DONE      |Manifest: NOSIGNATURE         flywheel-1.16-0.2.5.jar                           |Flywheel                      |flywheel                      |1.16-0.2.5          |DONE      |Manifest: NOSIGNATURE         Mantle-1.16.5-1.6.157.jar                         |Mantle                        |mantle                        |1.6.157             |DONE      |Manifest: NOSIGNATURE         ftb-backups-2.1.2.2.jar                           |FTB Backups                   |ftbbackups                    |2.1.2.2             |DONE      |Manifest: NOSIGNATURE         baubleyheartcanisters-1.16.5-1.1.11.jar           |Baubley Heart Canisters       |bhc                           |1.16.5-1.1.11       |DONE      |Manifest: NOSIGNATURE         Corruptional 1.0.0 - 1.16.5.jar                   |Corruptional                  |corruptional                  |1.0.0               |DONE      |Manifest: NOSIGNATURE         polymorph-forge-1.16.5-0.41.jar                   |Polymorph                     |polymorph                     |1.16.5-0.41         |DONE      |Manifest: NOSIGNATURE         JustEnoughProfessions-1.16.5-1.2.2.jar            |Just Enough Professions (JEP) |justenoughprofessions         |1.2.2               |DONE      |Manifest: NOSIGNATURE         AutoRegLib-1.6-49.jar                             |AutoRegLib                    |autoreglib                    |1.6-49              |DONE      |Manifest: NOSIGNATURE         entityculling-forge-mc1.16.5-1.5.2.jar            |EntityCulling                 |entityculling                 |1.5.2               |DONE      |Manifest: NOSIGNATURE         cagedmobs-1.16.5-forge-2.0.5.jar                  |Caged Mobs                    |cagedmobs                     |1.16.5-2.0.5        |DONE      |Manifest: NOSIGNATURE         FastFurnace-1.16.5-4.5.0.jar                      |FastFurnace                   |fastfurnace                   |4.5.0               |DONE      |Manifest: NOSIGNATURE         cobbler-1.6.1.jar                                 |Shulkers Faithful Factories   |cobbler                       |1.6.1               |DONE      |Manifest: NOSIGNATURE         lootr-1.16.5-0.2.19.51.jar                        |Lootr                         |lootr                         |0.2.19.51           |DONE      |Manifest: NOSIGNATURE         byg-1.3.6.jar                                     |Oh The Biomes You'll Go       |byg                           |1.3.4               |DONE      |Manifest: NOSIGNATURE         CosmeticArmorReworked-1.16.5-v5a.jar              |CosmeticArmorReworked         |cosmeticarmorreworked         |1.16.5-v5a          |DONE      |Manifest: 5e:ed:25:99:e4:44:14:c0:dd:89:c1:a9:4c:10:b5:0d:e4:b1:52:50:45:82:13:d8:d0:32:89:67:56:57:01:53         aquamirae-5.4.API11.jar                           |Aquamirae                     |aquamirae                     |5.4.API11           |DONE      |Manifest: NOSIGNATURE         rsrequestify-1.16.5-2.1.6.jar                     |RSRequestify                  |rsrequestify                  |2.1.6               |DONE      |Manifest: NOSIGNATURE         Easy Dungeons 1.1.0 - 1.16.5.jar                  |Easy Dungeons                 |easy_dungeons                 |1.1.0               |DONE      |Manifest: NOSIGNATURE         CyclopsCore-1.16.5-1.13.0.jar                     |Cyclops Core                  |cyclopscore                   |1.13.0              |DONE      |Manifest: NOSIGNATURE         SkyVillage_1.0.0_1.16.5.jar                       |Sky Villages                  |skyvillages                   |1.0.0               |DONE      |Manifest: NOSIGNATURE         litewolfcore-1.16.5v1.0.1.jar                     |LiteWolf Core                 |litewolfcore                  |1.16.5v1.0          |DONE      |Manifest: NOSIGNATURE         blue_skies-1.16.5-1.1.3.jar                       |Blue Skies                    |blue_skies                    |1.1.3               |DONE      |Manifest: NOSIGNATURE         Hats-1.16.5-10.3.4.jar                            |Hats                          |hats                          |10.3.4              |DONE      |Manifest: NOSIGNATURE         Wyrmroost-1.16.3-1.2.11.jar                       |Wyrmroost                     |wyrmroost                     |1.16.3-1.2.11       |DONE      |Manifest: NOSIGNATURE         extendedslabs-1.16.5-2.1.0.jar                    |Extended Slabs +              |extendedslabs                 |2.1.0               |DONE      |Manifest: NOSIGNATURE         Blades Plus 1.0.1 - 1.16.5.jar                    |Blades Plus                   |blades_plus                   |1.0.1               |DONE      |Manifest: NOSIGNATURE         connectivity-2.4-1.16.5.jar                       |Connectivity Mod              |connectivity                  |2.4-1.16.5          |DONE      |Manifest: NOSIGNATURE         InsaneLib-1.4.2-mc1.16.5.jar                      |InsaneLib                     |insanelib                     |1.4.2               |DONE      |Manifest: NOSIGNATURE         Controlling-7.0.0.31.jar                          |Controlling                   |controlling                   |7.0.0.31            |DONE      |Manifest: NOSIGNATURE         Prism-1.16.5-1.0.1.jar                            |Prism                         |prism                         |1.0.1               |DONE      |Manifest: NOSIGNATURE         Placebo-1.16.5-4.7.1.jar                          |Placebo                       |placebo                       |4.7.1               |DONE      |Manifest: NOSIGNATURE         dankstorage-1.16.5-3.21.jar                       |Dank Storage                  |dankstorage                   |1.16.5-3.21         |DONE      |Manifest: NOSIGNATURE         citadel-1.8.1-1.16.5.jar                          |Citadel                       |citadel                       |1.8.1               |DONE      |Manifest: NOSIGNATURE         alexsmobs-1.12.1.jar                              |Alex's Mobs                   |alexsmobs                     |1.12.1              |DONE      |Manifest: NOSIGNATURE         iceandfire-2.1.9-1.16.5.jar                       |Ice and Fire                  |iceandfire                    |2.1.9-1.16.5        |DONE      |Manifest: NOSIGNATURE         allthemodium-1.5.18-1.16.5-36.1.23.jar            |Allthemodium                  |allthemodium                  |1.5.18-1.16.5-36.1.2|DONE      |Manifest: NOSIGNATURE         lootintegrations-1.2.jar                          |Lootintegrations mod          |lootintegrations              |1.2                 |DONE      |Manifest: NOSIGNATURE         potionsmaster-0.2.2-1.16.5-36.1.0.jar             |Potions Master                |potionsmaster                 |0.2.2-1.16.5-36.1.0 |DONE      |Manifest: NOSIGNATURE         MutantBeasts-1.16.4-1.1.3.jar                     |Mutant Beasts                 |mutantbeasts                  |1.16.4-1.1.3        |DONE      |Manifest: d9:be:bd:b6:9a:e4:14:aa:05:67:fb:84:06:77:a0:c5:10:ec:27:15:1b:d6:c0:88:49:9a:ef:26:77:61:0b:5e         Bookshelf-Forge-1.16.5-10.4.33.jar                |Bookshelf                     |bookshelf                     |10.4.33             |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         DarkUtilities-1.16.5-8.0.14.jar                   |Dark Utilities                |darkutils                     |8.0.14              |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         BotanyPots-1.16.5-7.1.41.jar                      |BotanyPots                    |botanypots                    |7.1.41              |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         Apple Cows 1.4.1 - 1.16.5.jar                     |Apple Cows                    |apple_cows                    |1.4.1               |DONE      |Manifest: NOSIGNATURE         sophisticatedbackpacks-1.16.5-3.15.20.755.jar     |Sophisticated Backpacks       |sophisticatedbackpacks        |1.16.5-3.15.20.755  |DONE      |Manifest: NOSIGNATURE         Grenade Launcher 1.0.0 - 1.16.5.jar               |Grenade Launcher              |grenade_launcher              |1.0.0               |DONE      |Manifest: NOSIGNATURE         Duckery 0.6.0 - 1.16.5.jar                        |Duckery                       |duckery                       |0.6.0               |DONE      |Manifest: NOSIGNATURE         buildinggadgets-1.16.5-3.8.4-build.25+mc1.16.5.jar|Building Gadgets              |buildinggadgets               |3.8.4-build.25+mc1.1|DONE      |Manifest: NOSIGNATURE         relics-1.16.5-0.3.4.4.jar                         |Relics                        |relics                        |0.3.4.4             |DONE      |Manifest: NOSIGNATURE         takesapillage-1.0.3-1.16.5.jar                    |It Takes A Pillage            |takesapillage                 |1.0.3               |DONE      |Manifest: NOSIGNATURE         ProgressiveBosses-3.4.3-mc1.16.5.jar              |Progressive Bosses            |progressivebosses             |3.4.3               |DONE      |Manifest: NOSIGNATURE         wyrmroostspawncontrol-0.1.2.jar                   |Wyrmroost Spawn Control       |wyrmroostspawncontrol         |0.1.2               |DONE      |Manifest: NOSIGNATURE         bygonenether-1.3.2-1.16.5.jar                     |Bygone Nether                 |bygonenether                  |1.3.2               |DONE      |Manifest: NOSIGNATURE         MekanismGenerators-1.16.5-10.1.2.457.jar          |Mekanism: Generators          |mekanismgenerators            |10.1.2              |DONE      |Manifest: NOSIGNATURE         More Villager Trades 1.0.0 - 1.16.5.jar           |More Villager Trades          |more_villager_trades          |1.0.0               |DONE      |Manifest: NOSIGNATURE         LostTrinkets-1.16.5-0.1.27.jar                    |Lost Trinkets                 |losttrinkets                  |0.1.27              |DONE      |Manifest: NOSIGNATURE         dummmmmmy-1.16.5-1.3.3.jar                        |MmmMmmMmmMmm                  |dummmmmmy                     |1.3.0               |DONE      |Manifest: NOSIGNATURE         twilightforest-1.16.5-4.0.870-universal.jar       |The Twilight Forest           |twilightforest                |NONE                |DONE      |Manifest: NOSIGNATURE         ImmersiveEngineering-1.16.5-5.1.0-148.jar         |Immersive Engineering         |immersiveengineering          |1.16.5-5.1.0-148    |DONE      |Manifest: NOSIGNATURE         mob_grinding_utils-1.16.5-0.4.47.jar              |Mob Grinding Utils            |mob_grinding_utils            |1.16.5-0.4.47       |DONE      |Manifest: NOSIGNATURE         konkrete_forge_1.6.1_MC_1.16.2-1.16.5.jar         |Konkrete                      |konkrete                      |1.6.1               |DONE      |Manifest: NOSIGNATURE         Fungi Stew 1.0.0 - 1.16.5.jar                     |Fungi Stew                    |fungi_stew                    |1.0.0               |DONE      |Manifest: NOSIGNATURE         RSInfinityBooster-1.16.5-1.1+13.jar               |RSInfinityBooster             |rsinfinitybooster             |1.16.5-1.1+13       |DONE      |Manifest: NOSIGNATURE         Morph-1.16.5-10.2.1.jar                           |Morph                         |morph                         |10.2.1              |DONE      |Manifest: NOSIGNATURE         River Treasures 1.0.2 - 1.16.5.jar                |River Treasures               |river_treasures               |1.0.2               |DONE      |Manifest: NOSIGNATURE         curiousjetpacks-1.4d-1.16.5.jar                   |Curious Jetpacks              |curiousjetpacks               |1.4d-1.16.5         |DONE      |Manifest: NOSIGNATURE         crashutilities-3.13.jar                           |Crash Utilities               |crashutilities                |3.13                |DONE      |Manifest: NOSIGNATURE         Compressium-1.16.5-1.2.3.jar                      |Compressium                   |compressium                   |1.2.custom          |DONE      |Manifest: NOSIGNATURE         All Da Nuggets 1.1.6 - 1.16.5.jar                 |All Da Nuggets                |all_da_nuggets                |1.1.6               |DONE      |Manifest: NOSIGNATURE         valkyrielib-1.16.5-3.0.9.5.jar                    |ValkyrieLib                   |valkyrielib                   |1.16.5-3.0.9.5      |DONE      |Manifest: NOSIGNATURE         envirocore-1.16.5-3.0.9.3.jar                     |Environmental Core            |envirocore                    |1.16.5-3.0.9.3      |DONE      |Manifest: NOSIGNATURE         envirotech-1.16.5-3.0.9.4.jar                     |Environmental Tech            |envirotech                    |1.16.5-3.0.9.4      |DONE      |Manifest: NOSIGNATURE         Lollipop-1.16.5-3.2.9.jar                         |Lollipop                      |lollipop                      |3.2.9               |DONE      |Manifest: NOSIGNATURE         Ocean Recovery 1.1.0 - 1.16.5.jar                 |Ocean Recovery                |ocean_recovery                |1.1.0               |DONE      |Manifest: NOSIGNATURE         Stable Structures 1.0.0 - 1.16.5.jar              |Stable Structures             |stable_structures             |1.0.0               |DONE      |Manifest: NOSIGNATURE         Immunity Enchantments 1.1.0 - 1.16.5.jar          |Immunity Enchantments         |immunity_enchantments         |1.1.0               |DONE      |Manifest: NOSIGNATURE         dungeons_enhanced-1.16.5-1.9.2.jar                |Dungeons Enhanced             |dungeons_enhanced             |1.9.2               |DONE      |Manifest: NOSIGNATURE         Lumber Axe 1.1.1 - 1.16.5.jar                     |Lumber's Axe                  |lumbers_axe                   |1.1.1               |DONE      |Manifest: NOSIGNATURE         CNB-1.16.3_5-1.2.11.jar                           |Creatures and Beasts          |cnb                           |1.2.11              |DONE      |Manifest: NOSIGNATURE         geckolib-forge-1.16.5-3.0.96.jar                  |GeckoLib                      |geckolib3                     |3.0.96              |DONE      |Manifest: NOSIGNATURE         SolarFluxReborn-1.16.5-16.5.11.jar                |Solar Flux Reborn             |solarflux                     |16.5.11             |DONE      |Manifest: NOSIGNATURE         L_Enders Cataclysm-0.48 Changed Theme -1.16.5.jar |Cataclysm Mod                 |cataclysm                     |1.0                 |DONE      |Manifest: NOSIGNATURE         Curses' Naturals 1.0.0 - 1.16.5.jar               |Curses' Naturals              |curses_naturals               |1.0.0               |DONE      |Manifest: NOSIGNATURE         Patchouli-1.16.4-53.3.jar                         |Patchouli                     |patchouli                     |1.16.4-53.3         |DONE      |Manifest: NOSIGNATURE         ars_nouveau-1.16.5-1.25.8.jar                     |Ars Nouveau                   |ars_nouveau                   |1.25.8              |DONE      |Manifest: NOSIGNATURE         Easy Paper 1.1.1 - 1.16.5.jar                     |Easy Paper                    |easy_paper                    |1.1.1               |DONE      |Manifest: NOSIGNATURE         betterbiomeblend-1.16.4-1.2.9-forge.jar           |Better Biome Blend            |betterbiomeblend              |1.16.4-1.2.9-forge  |DONE      |Manifest: NOSIGNATURE         Plant Producer 1.0.0 - 1.16.5.jar                 |Plant Producer                |plant_producer                |1.0.0               |DONE      |Manifest: NOSIGNATURE         villagertools-1.16.5-1.0.2.jar                    |villagertools                 |villagertools                 |1.16.5-1.0.2        |DONE      |Manifest: 1f:47:ac:b1:61:82:96:b8:47:19:16:d2:61:81:11:60:3a:06:4b:61:31:56:7d:44:31:1e:0c:6f:22:5b:4c:ed         elevatorid-1.16.5-1.7.13.jar                      |Elevator Mod                  |elevatorid                    |1.16.5-1.7.13       |DONE      |Manifest: NOSIGNATURE         Gobber2-Forge-1.16.5-2.3.55.jar                   |Gobber 2                      |gobber2                       |2.3.55              |DONE      |Manifest: NOSIGNATURE         ftb-ultimine-forge-1605.3.1-build.45.jar          |FTB Ultimine                  |ftbultimine                   |1605.3.1-build.45   |DONE      |Manifest: NOSIGNATURE         BetterStrongholds-1.16.4-1.2.1.jar                |YUNG's Better Strongholds     |betterstrongholds             |1.16.4-1.2.1        |DONE      |Manifest: NOSIGNATURE         Runelic-1.16.5-7.0.3.jar                          |Runelic                       |runelic                       |7.0.3               |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         cavebiomeapi-1.16.5-1.4.2.jar                     |CaveBiomeAPI                  |cavebiomeapi                  |1.16.5-1.4.2        |DONE      |Manifest: NOSIGNATURE         ProjectExtended-1.16.5-1.2.0.jar                  |ProjectExtended               |projectextended               |1.2.0               |DONE      |Manifest: NOSIGNATURE         architectury-1.32.68.jar                          |Architectury                  |architectury                  |1.32.68             |DONE      |Manifest: NOSIGNATURE         ftb-library-forge-1605.3.4-build.90.jar           |FTB Library                   |ftblibrary                    |1605.3.4-build.90   |DONE      |Manifest: NOSIGNATURE         ftb-teams-forge-1605.2.3-build.40.jar             |FTB Teams                     |ftbteams                      |1605.2.3-build.40   |DONE      |Manifest: NOSIGNATURE         curiouselytra-forge-1.16.5-4.0.2.5.jar            |Curious Elytra                |curiouselytra                 |1.16.5-4.0.2.5      |DONE      |Manifest: NOSIGNATURE         AI-Improvements-1.16.5-0.5.0.jar                  |AI-Improvements               |aiimprovements                |0.4.0               |DONE      |Manifest: NOSIGNATURE         ExtremeReactors2-1.16.5-2.0.71.jar                |Extreme Reactors              |bigreactors                   |1.16.5-2.0.71       |DONE      |Manifest: NOSIGNATURE         trashcans-1.0.18-forge-mc1.16.jar                 |Trash Cans                    |trashcans                     |1.0.18              |DONE      |Manifest: NOSIGNATURE         bwncr-1.16.5-3.10.16.jar                          |Bad Wither No Cookie Reloaded |bwncr                         |1.16.5-3.10.16      |DONE      |Manifest: NOSIGNATURE         Coal Additions 1.0.1 - 1.16.5.jar                 |Coal Additions                |coal_additions                |1.0.1               |DONE      |Manifest: NOSIGNATURE         Sky Structures 1.0.0 - 1.16.5.jar                 |Sky Structures                |sky_structures                |1.0.0               |DONE      |Manifest: NOSIGNATURE         Cyclic-1.16.5-1.6.1.jar                           |Cyclic                        |cyclic                        |1.16.5-1.6.1        |DONE      |Manifest: 1f:47:ac:b1:61:82:96:b8:47:19:16:d2:61:81:11:60:3a:06:4b:61:31:56:7d:44:31:1e:0c:6f:22:5b:4c:ed         BetterAdvancements-1.16.5-0.1.1.115.jar           |Better Advancements           |betteradvancements            |0.1.1.115           |DONE      |Manifest: NOSIGNATURE         BHMenu-Forge-1.16.5-2.4.2.jar                     |BHMenu                        |bhmenu                        |2.4.2               |DONE      |Manifest: NOSIGNATURE         rhino-forge-1605.1.5-build.75.jar                 |Rhino                         |rhino                         |1605.1.5-build.75   |DONE      |Manifest: NOSIGNATURE         Cucumber-1.16.5-4.1.12.jar                        |Cucumber Library              |cucumber                      |4.1.12              |DONE      |Manifest: NOSIGNATURE         TrashSlot_1.16.3-12.2.1.jar                       |TrashSlot                     |trashslot                     |12.2.1              |DONE      |Manifest: NOSIGNATURE         Shrines-1.16.5-2.3.0.jar                          |Shrines                       |shrines                       |1.16.5-2.3.0        |DONE      |Manifest: NOSIGNATURE         item-filters-forge-1605.2.5-build.9.jar           |Item Filters                  |itemfilters                   |1605.2.5-build.9    |DONE      |Manifest: NOSIGNATURE         abnormals_core-1.16.5-3.3.1.jar                   |Abnormals Core                |abnormals_core                |3.3.1               |DONE      |Manifest: NOSIGNATURE         savageandravage-1.16.5-3.2.0.jar                  |Savage & Ravage               |savageandravage               |3.2.0               |DONE      |Manifest: NOSIGNATURE         obscure_api-11.jar                                |Obscure API                   |obscure_api                   |11                  |DONE      |Manifest: NOSIGNATURE         ae2extras-1.3.1-1.16.5.jar                        |AE2 Extras                    |ae2extras                     |1.3.1-1.16.5        |DONE      |Manifest: NOSIGNATURE         create-mc1.16.5_v0.3.2g.jar                       |Create                        |create                        |v0.3.2g             |DONE      |Manifest: NOSIGNATURE         Waystones_1.16.5-7.6.4.jar                        |Waystones                     |waystones                     |7.6.4               |DONE      |Manifest: NOSIGNATURE         Clumps-6.0.0.28.jar                               |Clumps                        |clumps                        |6.0.0.28            |DONE      |Manifest: NOSIGNATURE         journeymap-1.16.5-5.8.6.jar                       |Journeymap                    |journeymap                    |5.8.6               |DONE      |Manifest: NOSIGNATURE         comforts-forge-1.16.5-4.0.1.5.jar                 |Comforts                      |comforts                      |1.16.5-4.0.1.5      |DONE      |Manifest: NOSIGNATURE         appliedenergistics2-8.4.7.jar                     |Applied Energistics 2         |appliedenergistics2           |8.4.7               |DONE      |Manifest: 95:58:cc:83:9d:a8:fa:4f:e9:f3:54:90:66:61:c8:ae:9c:08:88:11:52:52:df:2d:28:5f:05:d8:28:57:0f:98         lazierae2-1.16.5-2.0.5.jar                        |Lazier AE2                    |lazierae2                     |2.0.5               |DONE      |Manifest: NOSIGNATURE         Artifacts-1.16.5-2.10.5.jar                       |Artifacts                     |artifacts                     |1.16.5-2.10.5       |DONE      |Manifest: NOSIGNATURE         SimpleStorageNetwork-1.16.5-1.5.5.jar             |Simple Storage Network        |storagenetwork                |1.16.5-1.5.5        |DONE      |Manifest: 1f:47:ac:b1:61:82:96:b8:47:19:16:d2:61:81:11:60:3a:06:4b:61:31:56:7d:44:31:1e:0c:6f:22:5b:4c:ed         configured-1.5.4-1.16.5.jar                       |Configured                    |configured                    |1.5.4               |DONE      |Manifest: NOSIGNATURE         OuterEnd-0.2.14.jar                               |The Outer End                 |outer_end                     |0.2.9               |DONE      |Manifest: NOSIGNATURE         decorative_blocks-1.16.4-1.7.2.jar                |Decorative Blocks             |decorative_blocks             |1.7.2               |DONE      |Manifest: NOSIGNATURE         DungeonCrawl-1.16.5-2.3.12.jar                    |Dungeon Crawl                 |dungeoncrawl                  |2.3.12              |DONE      |Manifest: NOSIGNATURE         charginggadgets-1.3.0.jar                         |Charging Gadgets              |charginggadgets               |1.3.0               |DONE      |Manifest: NOSIGNATURE         betteranimalsplus-1.16.5-11.0.10-forge.jar        |Better Animals Plus           |betteranimalsplus             |1.16.5-11.0.10      |DONE      |Manifest: NOSIGNATURE         lazydfu-0.1.3.jar                                 |LazyDFU                       |lazydfu                       |0.1.3               |DONE      |Manifest: NOSIGNATURE         Felsic Gear 1.1.5  -1.16.5.jar                    |Felsic Gear                   |felsic_gear                   |1.1.5               |DONE      |Manifest: NOSIGNATURE         Shady Alchemist 1.0.0 - 1.16.5.jar                |Shady Alchemist               |shady_alchemist               |1.0.0               |DONE      |Manifest: NOSIGNATURE         ExplorersCompass-1.16.5-1.1.2-forge.jar           |Explorer's Compass            |explorerscompass              |1.16.5-1.1.2-forge  |DONE      |Manifest: NOSIGNATURE         Iron Bushes 1.0.1 - 1.16.5.jar                    |Iron Bushes                   |iron_bushes                   |1.0.0               |DONE      |Manifest: NOSIGNATURE         Life Steal Enchant 1.4.0 - 1.16.5.jar             |Life Steal Enchantment        |life_steal_enchantment        |1.4.0               |DONE      |Manifest: NOSIGNATURE         inventorypets-1.16.5-2.1.1.jar                    |Inventory Pets                |inventorypets                 |2.1.1               |DONE      |Manifest: NOSIGNATURE         iChunUtil-1.16.5-10.7.0.jar                       |iChunUtil                     |ichunutil                     |10.7.0              |DONE      |Manifest: NOSIGNATURE         magnesium_extras-mc1.16.5_v1.4.0.jar              |Magnesium Extras              |magnesium_extras              |mc1.16.5_v1.4.0     |DONE      |Manifest: NOSIGNATURE         mininggadgets-1.7.6.jar                           |Mining Gadgets                |mininggadgets                 |1.7.6               |DONE      |Manifest: NOSIGNATURE         EnderStorage-1.16.5-2.8.0.170-universal.jar       |EnderStorage                  |enderstorage                  |2.8.0.170           |DONE      |Manifest: 31:e6:db:63:47:4a:6e:e0:0a:2c:11:d1:76:db:4e:82:ff:56:2d:29:93:d2:e5:02:bd:d3:bd:9d:27:47:a5:71         vanillacookbook-1.16.3-1.12.4.jar                 |Vanilla Cookbook              |vanillacookbook               |1.12.4              |DONE      |Manifest: NOSIGNATURE         Iron Fishing Rods 1.2.0 - 1.16.5.jar              |Iron Fishing Rods             |iron_fishing_rods             |1.2.0               |DONE      |Manifest: NOSIGNATURE         ftb-chunks-forge-1605.3.4-build.220.jar           |FTB Chunks                    |ftbchunks                     |1605.3.4-build.220  |DONE      |Manifest: NOSIGNATURE         kubejs-forge-1605.3.19-build.299.jar              |KubeJS                        |kubejs                        |1605.3.19-build.299 |DONE      |Manifest: NOSIGNATURE         ftb-quests-forge-1605.3.7-build.165.jar           |FTB Quests                    |ftbquests                     |1605.3.7-build.165  |DONE      |Manifest: NOSIGNATURE         Tardis-Mod-1.16.5-1.5.4.jar                       |Tardis Mod                    |tardis                        |1.5.4               |DONE      |Manifest: NOSIGNATURE         forge-1.16.5-36.2.35-universal.jar                |Forge                         |forge                         |36.2.35             |DONE      |Manifest: 22:af:21:d8:19:82:7f:93:94:fe:2b:ac:b7:e4:41:57:68:39:87:b1:a7:5c:c6:44:f9:25:74:21:14:f5:0d:90         cofh_core-1.16.5-1.5.2.22.jar                     |CoFH Core                     |cofh_core                     |1.5.2.22            |DONE      |Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09         thermal_foundation-1.16.5-1.5.2.30.jar            |Thermal Series                |thermal                       |1.5.2.30            |DONE      |Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09         thermal_innovation-1.16.5-1.5.0.4.jar             |Thermal Innovation            |thermal_innovation            |1.5.0.4             |DONE      |Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09         thermal_cultivation-1.16.5-1.5.0.4.jar            |Thermal Cultivation           |thermal_cultivation           |1.5.0.4             |DONE      |Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09         appleskin-forge-mc1.16.x-2.5.1.jar                |AppleSkin                     |appleskin                     |2.5.1+mc1.16.4      |DONE      |Manifest: NOSIGNATURE         chaosawakens-1.16.5-0.12.1.1.jar                  |Chaos Awakens                 |chaosawakens                  |0.12.1.1            |DONE      |Manifest: NOSIGNATURE         Aquaculture-1.16.5-2.1.23.jar                     |Aquaculture 2                 |aquaculture                   |1.16.5-2.1.23       |DONE      |Manifest: NOSIGNATURE         thermal_expansion-1.16.5-1.5.2.16.jar             |Thermal Expansion             |thermal_expansion             |1.5.2.16            |DONE      |Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09         ensorcellation-1.16.5-1.5.0.4.jar                 |Ensorcellation                |ensorcellation                |1.5.0.4             |DONE      |Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09         AkashicTome-1.4-16.jar                            |Akashic Tome                  |akashictome                   |1.4-16              |DONE      |Manifest: NOSIGNATURE         Better Fishing Rods 1.3.0 - 1.16.5.jar            |Better Fishing Rods           |better_fishing_rods           |1.3.0               |DONE      |Manifest: NOSIGNATURE         meetyourfight-1.16.5-1.2.0.jar                    |Meet Your Fight               |meetyourfight                 |1.2.0               |DONE      |Manifest: NOSIGNATURE         BrandonsCore-1.16.5-3.0.15.248-universal.jar      |Brandon's Core                |brandonscore                  |3.0.15.248          |DONE      |Manifest: 53:bb:a0:11:bd:61:e2:1a:e2:cb:fd:f8:4f:e4:cd:a5:cc:12:f4:43:f0:78:68:3b:e1:62:c6:78:3b:27:ff:fe         Draconic-Evolution-1.16.5-3.0.29.518-universal.jar|Draconic Evolution            |draconicevolution             |3.0.29.518          |DONE      |Manifest: 53:bb:a0:11:bd:61:e2:1a:e2:cb:fd:f8:4f:e4:cd:a5:cc:12:f4:43:f0:78:68:3b:e1:62:c6:78:3b:27:ff:fe         ColossalChests-1.16.5-1.8.0.jar                   |ColossalChests                |colossalchests                |1.8.0               |DONE      |Manifest: NOSIGNATURE         selene-1.16.5-1.9.0.jar                           |Selene                        |selene                        |1.16.5-1.0          |DONE      |Manifest: NOSIGNATURE         MysticalAgriculture-1.16.5-4.2.6.jar              |Mystical Agriculture          |mysticalagriculture           |4.2.6               |DONE      |Manifest: NOSIGNATURE         MysticalAgradditions-1.16.5-4.2.4.jar             |Mystical Agradditions         |mysticalagradditions          |4.2.4               |DONE      |Manifest: NOSIGNATURE         CraftingTweaks_1.16.5-12.2.1.jar                  |Crafting Tweaks               |craftingtweaks                |12.2.1              |DONE      |Manifest: NOSIGNATURE         TConstruct-1.16.5-3.3.4.335.jar                   |Tinkers' Construct            |tconstruct                    |3.3.4.335           |DONE      |Manifest: NOSIGNATURE         JER-Integration-1.1.0.jar                         |Reforged: SoulShards          |jerintegration                |1.1.0               |DONE      |Manifest: NOSIGNATURE         BrassAmberBattleTowers-1.16.5-1.6.3.jar           |Brass Amber BattleTowers      |ba_bt                         |1.16.5-1.6.3        |DONE      |Manifest: NOSIGNATURE         EnchantmentDescriptions-1.16.5-7.1.27.jar         |EnchantmentDescriptions       |enchdesc                      |7.1.27              |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5         swingthroughgrass-1.16.4-1.5.3.jar                |SwingThroughGrass             |swingthroughgrass             |1.16.4-1.5.3        |DONE      |Manifest: NOSIGNATURE         titanium-1.16.5-3.2.8.9-25.jar                    |Titanium                      |titanium                      |3.2.8.9             |DONE      |Manifest: NOSIGNATURE         Abundance-1.16.5-1.0.5.jar                        |Abundance                     |abundance                     |1.16.5-1.0.5        |DONE      |Manifest: NOSIGNATURE         silent-lib-1.16.5-4.10.0.jar                      |Silent Lib                    |silentlib                     |4.10.0              |DONE      |Manifest: NOSIGNATURE         Awakened Bosses 1.0.3 - 1.16.5.jar                |Awakened Bosses               |awakened_bosses               |1.0.3               |DONE      |Manifest: NOSIGNATURE         atmospheric-1.16.5-3.1.1.jar                      |Atmospheric                   |atmospheric                   |3.1.1               |DONE      |Manifest: NOSIGNATURE         easy_villagers-1.16.5-1.0.13.jar                  |Easy Villagers                |easy_villagers                |1.16.5-1.0.13       |DONE      |Manifest: NOSIGNATURE         Iceberg-1.16.5-1.0.45.jar                         |Iceberg                       |iceberg                       |1.0.45              |DONE      |Manifest: NOSIGNATURE         Quark-r2.4-322.jar                                |Quark                         |quark                         |r2.4-322            |DONE      |Manifest: NOSIGNATURE         LegendaryTooltips-1.16.5-1.3.1.jar                |Legendary Tooltips            |legendarytooltips             |1.3.1               |DONE      |Manifest: NOSIGNATURE         FastWorkbench-1.16.5-4.6.2.jar                    |Fast Workbench                |fastbench                     |4.6.2               |DONE      |Manifest: NOSIGNATURE         StorageDrawers-1.16.3-8.5.2.jar                   |Storage Drawers               |storagedrawers                |8.5.2               |DONE      |Manifest: NOSIGNATURE         FluxNetworks-1.16.5-6.2.1.14.jar                  |Flux Networks                 |fluxnetworks                  |6.2.1.14            |DONE      |Manifest: NOSIGNATURE         performant-1.16.2-5-4.1m.jar                      |Performant                    |performant                    |3.73m               |DONE      |Manifest: NOSIGNATURE         Mutant Wolf 1.2.1 - 1.16.5.jar                    |Mutant Wolf                   |mutant_wolf                   |1.2.1               |DONE      |Manifest: NOSIGNATURE         fancymenu_forge_2.14.9_MC_1.16.2-1.16.5.jar       |FancyMenu                     |fancymenu                     |2.14.9              |DONE      |Manifest: NOSIGNATURE         ferritecore-2.1.1-forge.jar                       |Ferrite Core                  |ferritecore                   |2.1.1               |DONE      |Manifest: 41:ce:50:66:d1:a0:05:ce:a1:0e:02:85:9b:46:64:e0:bf:2e:cf:60:30:9a:fe:0c:27:e0:63:66:9a:84:ce:8a         Chisel-MC1.16.5-2.0.1-alpha.4.jar                 |Chisel                        |chisel                        |MC1.16.5-2.0.1-alpha|DONE      |Manifest: NOSIGNATURE         modular-routers-1.16.5-7.5.46.jar                 |Modular Routers               |modularrouters                |task ':jar' property|DONE      |Manifest: NOSIGNATURE         refinedstorageaddons-0.7.4.jar                    |Refined Storage Addons        |refinedstorageaddons          |0.7.4               |DONE      |Manifest: NOSIGNATURE         packetfixer-forge-2.0.0-1.16.5.jar                |PacketFixer                   |packetfixer                   |2.0.0               |DONE      |Manifest: NOSIGNATURE         expandability-2.0.1-forge.jar                     |ExpandAbility                 |expandability                 |2.0.1               |DONE      |Manifest: NOSIGNATURE         valhelsia_core-16.0.15.jar                        |Valhelsia Core                |valhelsia_core                |16.0.15             |DONE      |Manifest: NOSIGNATURE         valhelsia_structures-1.16.5-0.1.6.jar             |Valhelsia Structures          |valhelsia_structures          |1.16.5-0.1.6        |DONE      |Manifest: NOSIGNATURE         forbidden_arcanus-16.2.3.jar                      |Forbidden & Arcanus           |forbidden_arcanus             |16.2.3              |DONE      |Manifest: NOSIGNATURE         overloadedarmorbar-5.1.0.jar                      |Overloaded Armor Bar          |overloadedarmorbar            |5.1.0               |DONE      |Manifest: NOSIGNATURE         chiselsandbits-1.0.63.jar                         |Chisels & bits                |chiselsandbits                |1.0.63              |DONE      |Manifest: NOSIGNATURE         balancedenchanting-1.16.2-1.1.jar                 |Balanced Enchanting           |balancedenchanting            |1.16.2-1.1          |DONE      |Manifest: NOSIGNATURE     Crash Report UUID: 9711b6d8-5205-42e1-a908-7a35e68d504b     Patchouli open book context: n/a     Loaded Shaderpack: (off)     NEC status: No NEC detected     Player Count: 1 / 8; [ServerPlayerEntity['Noodlesfan12343'/66, l='ServerLevel[craziest crafting]', x=857.98, y=78.00, z=-659.10]]     Data Packs: vanilla, mod:betterdungeons, mod:ftbessentials, mod:supermartijn642configlib, mod:extratrades, mod:tinkerslevellingaddon (incompatible), mod:nerb (incompatible), mod:hammerlib (incompatible), mod:projecte, mod:stalwart_dungeons, mod:rubidium (incompatible), mod:modnametooltip, mod:neat (incompatible), mod:ironjetpacks, mod:bettercaves (incompatible), mod:forgeendertech, mod:ctm (incompatible), mod:modernfix, mod:yungsapi, mod:cabletiers, mod:wstweaks (incompatible), mod:shrink (incompatible), mod:xreliquary, mod:pandorasbox (incompatible), mod:lootbeams, mod:guardvillagers, mod:desert_upgrade, mod:apotheosis (incompatible), mod:morpheus (incompatible), mod:belt_mod, mod:jeresources, mod:supplementaries, mod:refinedstorage, mod:easy_piglins, mod:structure_gel, mod:corpse, mod:advancementplaques, mod:alltheores, mod:wild_bushes, mod:castle_in_the_sky, mod:industrialforegoing (incompatible), mod:torchmaster (incompatible), mod:repurposed_structures, mod:levinide, mod:ground_convert, mod:biomesoplenty, mod:ironfurnaces, mod:dungeons_plus, mod:supermartijn642corelib, mod:yungsbridges, mod:botania, mod:cavesandcliffs, mod:highlighter, mod:lightspeed (incompatible), mod:curios, mod:oculus, mod:desert_mining, mod:searchables, mod:yungsextras, mod:obfuscate, mod:queen_bee, mod:constructionwand, mod:mutantmore, mod:cfm (incompatible), mod:cloth-config (incompatible), mod:hasteenchantment, mod:crazy_craft_updated_core, mod:scalinghealth, mod:fastleafdecay, mod:codechickenlib (incompatible), mod:bettermineshafts, mod:mcwlights, mod:savemystronghold, mod:mowziesmobs, mod:cgm, mod:bountifulbaubles (incompatible), mod:jei, mod:nameless_trinkets, mod:graveyard, mod:attributefix, mod:pehkui, mod:libraryferret, mod:mekanism, mod:luggage (incompatible), mod:caelus, mod:allthecompressed, mod:invtweaks (incompatible), mod:shutupexperimentalsettings (incompatible), mod:fastasyncworldsave (incompatible), mod:travelersbackpack (incompatible), mod:naturescompass (incompatible), mod:libx, mod:stoneholm, mod:edible_cakes, mod:champions (incompatible), mod:curioofundying, mod:netheroresplus, mod:cake_cow, mod:sulfar_mod, mod:grand_enchantment_table, mod:shiny_drops, mod:catalogue, mod:book_fishing, mod:speed_enchantment, mod:memoryleakfix (incompatible), mod:extradisks, mod:structural_statues, mod:more_wandering_trades, mod:spawnbalanceutility (incompatible), mod:idas, mod:dsurround, mod:ironchest, mod:mythicbotany, mod:dungeons_arise, mod:zerocore, mod:sons_of_sins, mod:smoothchunk, mod:theoneprobe, mod:pandoras_creatures (incompatible), mod:mousetweaks, mod:simpleknives, mod:adlods, mod:special_drops, mod:jeiintegration, mod:pipez, mod:notenoughanimations, mod:flywheel, mod:mantle (incompatible), mod:ftbbackups (incompatible), mod:bhc (incompatible), mod:corruptional, mod:polymorph, mod:justenoughprofessions, mod:autoreglib (incompatible), mod:entityculling, mod:cagedmobs (incompatible), mod:fastfurnace (incompatible), mod:cobbler, mod:lootr (incompatible), mod:byg, mod:cosmeticarmorreworked (incompatible), mod:aquamirae, mod:rsrequestify (incompatible), mod:easy_dungeons, mod:cyclopscore, mod:skyvillages, mod:litewolfcore, mod:blue_skies (incompatible), mod:hats, mod:wyrmroost (incompatible), mod:extendedslabs, mod:blades_plus, mod:connectivity, mod:insanelib, mod:controlling, mod:prism (incompatible), mod:placebo (incompatible), mod:dankstorage, mod:citadel (incompatible), mod:alexsmobs, mod:iceandfire (incompatible), mod:allthemodium, mod:lootintegrations, mod:potionsmaster, mod:mutantbeasts (incompatible), mod:bookshelf, mod:darkutils (incompatible), mod:botanypots, mod:apple_cows, mod:sophisticatedbackpacks, mod:grenade_launcher, mod:duckery, mod:buildinggadgets, mod:relics, mod:takesapillage (incompatible), mod:progressivebosses, mod:wyrmroostspawncontrol, mod:bygonenether (incompatible), mod:mekanismgenerators, mod:more_villager_trades, mod:losttrinkets, mod:dummmmmmy (incompatible), mod:twilightforest, mod:immersiveengineering, mod:mob_grinding_utils, mod:konkrete, mod:fungi_stew, mod:rsinfinitybooster, mod:morph, mod:river_treasures, mod:curiousjetpacks (incompatible), mod:crashutilities (incompatible), mod:compressium (incompatible), mod:all_da_nuggets, mod:valkyrielib, mod:envirocore (incompatible), mod:envirotech, mod:lollipop, mod:ocean_recovery, mod:stable_structures, mod:immunity_enchantments, mod:dungeons_enhanced, mod:lumbers_axe, mod:cnb, mod:geckolib3 (incompatible), mod:solarflux, mod:cataclysm (incompatible), mod:curses_naturals, mod:patchouli (incompatible), mod:ars_nouveau, mod:easy_paper, mod:betterbiomeblend, mod:plant_producer, mod:villagertools, mod:elevatorid, mod:gobber2, mod:ftbultimine (incompatible), mod:betterstrongholds, mod:runelic, mod:cavebiomeapi, mod:architectury, mod:ftblibrary, mod:ftbteams, mod:curiouselytra, mod:aiimprovements, mod:bigreactors, mod:trashcans, mod:bwncr, mod:coal_additions, mod:sky_structures, mod:cyclic (incompatible), mod:betteradvancements, mod:bhmenu, mod:rhino, mod:cucumber, mod:trashslot (incompatible), mod:shrines, mod:itemfilters, mod:abnormals_core, mod:savageandravage, mod:obscure_api, mod:ae2extras (incompatible), mod:create, mod:waystones (incompatible), mod:clumps, mod:journeymap (incompatible), mod:comforts, mod:appliedenergistics2 (incompatible), mod:lazierae2, mod:artifacts, mod:storagenetwork, mod:configured, mod:outer_end, mod:decorative_blocks, mod:dungeoncrawl, mod:charginggadgets, mod:betteranimalsplus, mod:lazydfu, mod:felsic_gear, mod:shady_alchemist, mod:explorerscompass, mod:iron_bushes, mod:life_steal_enchantment, mod:inventorypets (incompatible), mod:ichunutil, mod:magnesium_extras, mod:mininggadgets (incompatible), mod:enderstorage (incompatible), mod:vanillacookbook, mod:iron_fishing_rods, mod:ftbchunks, mod:kubejs, mod:ftbquests, mod:tardis, mod:forge, mod:cofh_core, mod:thermal, mod:thermal_innovation (incompatible), mod:thermal_cultivation (incompatible), mod:appleskin, mod:chaosawakens, mod:aquaculture (incompatible), mod:thermal_expansion, mod:ensorcellation (incompatible), mod:akashictome, mod:better_fishing_rods, mod:meetyourfight (incompatible), mod:brandonscore (incompatible), mod:draconicevolution (incompatible), mod:colossalchests, mod:selene, mod:mysticalagriculture, mod:mysticalagradditions, mod:craftingtweaks (incompatible), mod:tconstruct, mod:ba_bt, mod:enchdesc, mod:swingthroughgrass (incompatible), mod:titanium (incompatible), mod:abundance, mod:silentlib (incompatible), mod:awakened_bosses, mod:atmospheric, mod:easy_villagers, mod:iceberg, mod:quark (incompatible), mod:legendarytooltips, mod:fastbench (incompatible), mod:storagedrawers (incompatible), mod:fluxnetworks, mod:performant (incompatible), mod:mutant_wolf, mod:fancymenu (incompatible), mod:ferritecore (incompatible), mod:chisel (incompatible), mod:modularrouters, mod:refinedstorageaddons, mod:packetfixer (incompatible), mod:expandability, mod:valhelsia_core, mod:valhelsia_structures, mod:forbidden_arcanus (incompatible), mod:overloadedarmorbar (incompatible), mod:chiselsandbits (incompatible), mod:balancedenchanting (incompatible), Solar Flux Generated Resources, file/Included Structures, mod:speedyhoppers (incompatible), mod:forgematica, mod:mafglib, mod:projectextended, mod:enchantment_extraction_table, mod:jerintegration     Type: Integrated Server (map_client.txt)     Is Modded: Definitely; Client brand changed to 'forge'
    • Uso mojo launcher y no puedo instalar forge
  • Topics

×
×
  • Create New...

Important Information

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