Jump to content

Search the Community

Showing results for tags 'bug'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Minecraft Forge
    • Releases
    • Support & Bug Reports
    • Suggestions
    • General Discussion
  • Mod Developer Central
    • Modder Support
    • User Submitted Tutorials
  • Non-Forge
    • Site News (non-forge)
    • Minecraft General
    • Off-topic
  • Forge Mods
    • Mods

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


XMPP/GTalk


Gender


URL


Location


ICQ


AIM


Yahoo IM


MSN Messenger


Personal Text

  1. I have been working on a complex block for a mod I'm working on. This block is really unfinished right now, but there is this strange bug that is hindering progress. Basically, this block has a single slot where you put a specific item, then there are three "buttons" on the right like the Enchantment Table. Later on these buttons will have a special purpose so don't worry about them, but right now these buttons just increment a new property on the player as long as they have xp levels. The bug is that whenever you click on one of the three buttons, the items you put in are supposed to decrement, but when you take them out or you reopen the block's gui, the item stack mysteriously "resets", meaning that all the items that were consumed are present again. Here is the Block Entity class (do realize that I am developing this mod in IntelliJ IDEA 2024.1.4 Community Edition): package everyblu.ars_mythos.common.block.tiles; import com.github.alexthe666.iceandfire.item.IafItemRegistry; import everyblu.ars_mythos.client.menus.ArcaneScholarsAnalysisMenu; import everyblu.ars_mythos.common.block.ArcaneScholarsBlock; import everyblu.ars_mythos.common.block.ArsMythosBlockStateProperties; import everyblu.ars_mythos.common.registry.ArsMythosObjectRegistry; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; import net.minecraft.core.NonNullList; import net.minecraft.nbt.CompoundTag; import net.minecraft.network.chat.Component; import net.minecraft.world.*; import net.minecraft.world.entity.player.Inventory; import net.minecraft.world.entity.player.Player; import net.minecraft.world.inventory.AbstractContainerMenu; import net.minecraft.world.item.ItemStack; import net.minecraft.world.level.block.entity.BlockEntity; import net.minecraft.world.level.block.state.BlockState; import org.jetbrains.annotations.NotNull; import org.jetbrains.annotations.Nullable; import software.bernie.geckolib.animatable.GeoBlockEntity; import software.bernie.geckolib.core.animatable.instance.AnimatableInstanceCache; import software.bernie.geckolib.core.animation.AnimatableManager; import software.bernie.geckolib.core.animation.AnimationController; import software.bernie.geckolib.core.object.PlayState; import software.bernie.geckolib.util.GeckoLibUtil; public class ArcaneScholarsTile extends BlockEntity implements GeoBlockEntity, WorldlyContainer, MenuProvider { public final String variant; private final NonNullList<ItemStack> items = NonNullList.withSize(1, ItemStack.EMPTY); public ArcaneScholarsTile(BlockPos pPos, BlockState pBlockState) { super(ArsMythosObjectRegistry.NEW_ARCANE_SCHOLARS_TILE.get(), pPos, pBlockState); this.variant = switch (pBlockState.getValue(ArsMythosBlockStateProperties.ARCANE_SCHOLARS_VARIANT)) { case 1 -> "fire"; case 2 -> "ice"; default -> "lightning"; }; } @Override public void load(@NotNull CompoundTag tag) { super.load(tag); ContainerHelper.loadAllItems(tag, this.items); System.out.println("loaded"); } @Override protected void saveAdditional(@NotNull CompoundTag tag) { if (this.level == null) return; ContainerHelper.saveAllItems(tag, this.items); super.saveAdditional(tag); } private ArcaneScholarsTile getFootPart() { if (this.level == null) return this; BlockEntity nextEntity = this.level.getBlockEntity( this.getBlockPos().relative(this.getBlockState().getValue(ArcaneScholarsBlock.FACING))); if (nextEntity instanceof ArcaneScholarsTile arcaneScholarsTile) return arcaneScholarsTile; return this; } AnimationController<ArcaneScholarsTile> controller; AnimatableInstanceCache factory = GeckoLibUtil.createInstanceCache(this); @Override public void registerControllers(AnimatableManager.ControllerRegistrar controllerRegistrar) { this.controller = new AnimationController<>(this, "controller", 1, (state) -> PlayState.CONTINUE); controllerRegistrar.add(this.controller); } @Override public AnimatableInstanceCache getAnimatableInstanceCache() { return this.factory; } @Override public @NotNull Component getDisplayName() { return Component.literal("Arcane Scholar's Table"); } @Nullable @Override public AbstractContainerMenu createMenu(int pContainerId, @NotNull Inventory pPlayerInventory, @NotNull Player pPlayer) { BlockEntity entity = this.getFootPart(); return new ArcaneScholarsAnalysisMenu(pContainerId, pPlayerInventory, entity); } @Override public int @NotNull [] getSlotsForFace(@NotNull Direction pSide) { return new int[0]; } @Override public boolean canPlaceItemThroughFace(int pIndex, @NotNull ItemStack pItemStack, @Nullable Direction pDirection) { return pDirection == Direction.UP && pItemStack.is(IafItemRegistry.MANUSCRIPT.get()); } @Override public boolean canTakeItemThroughFace(int pIndex, @NotNull ItemStack pStack, @NotNull Direction pDirection) { return false; } @Override public int getContainerSize() { return 1; } @Override public boolean isEmpty() { return this.items.get(0).isEmpty(); } @Override public @NotNull ItemStack getItem(int pSlot) { return this.items.get(0); } @Override public @NotNull ItemStack removeItem(int pSlot, int pAmount) { ItemStack stack = ContainerHelper.removeItem(this.items, pSlot, pAmount); System.out.println(this.items.get(0).getCount()); return stack; } @Override public @NotNull ItemStack removeItemNoUpdate(int pSlot) { return ContainerHelper.takeItem(this.items, pSlot); } @Override public void setItem(int pSlot, @NotNull ItemStack pStack) { this.items.set(pSlot, pStack); if (pStack.getCount() > this.getMaxStackSize()) { pStack.setCount(this.getMaxStackSize()); } if (!pStack.isEmpty()) this.setChanged(); } @Override public boolean stillValid(@NotNull Player pPlayer) { return Container.stillValidBlockEntity(this, pPlayer); } @Override public void clearContent() { this.items.clear(); } } Here is the AbstractContainerMenu: package everyblu.ars_mythos.client.menus; import everyblu.ars_mythos.client.ArsMythosClientRegistry; import everyblu.ars_mythos.common.block.tiles.ArcaneScholarsTile; import everyblu.ars_mythos.common.capabilities.ArcaneResearchDataProvider; import everyblu.ars_mythos.common.helper.ContainerUtils; import everyblu.ars_mythos.common.registry.ArsMythosObjectRegistry; import net.minecraft.network.FriendlyByteBuf; import net.minecraft.sounds.SoundEvents; import net.minecraft.world.entity.player.Inventory; import net.minecraft.world.entity.player.Player; import net.minecraft.world.inventory.AbstractContainerMenu; import net.minecraft.world.inventory.ContainerLevelAccess; import net.minecraft.world.inventory.Slot; import net.minecraft.world.item.ItemStack; import net.minecraft.world.level.block.entity.BlockEntity; import org.jetbrains.annotations.NotNull; public class ArcaneScholarsAnalysisMenu extends AbstractContainerMenu { private final ArcaneScholarsTile tile; public ArcaneScholarsAnalysisMenu(int index, Inventory playerInventory, FriendlyByteBuf data) { this(index, playerInventory, playerInventory.player.level().getBlockEntity(data.readBlockPos())); } public ArcaneScholarsAnalysisMenu(int index, Inventory playerInventory, BlockEntity entity) { super(ArsMythosClientRegistry.AS_ANALYSIS.get(), index); this.tile = ((ArcaneScholarsTile) entity); ContainerUtils.addPlayerInventoryTo(this, playerInventory); ContainerUtils.addPlayerHotBarTo(this, playerInventory); this.addSlot(new Slot(this.tile, 0, 15, 47)); } @Override public boolean clickMenuButton(@NotNull Player player, int pId) { if (this.tile.isEmpty()) return false; if (player.experienceLevel < 1) return false; player.getCapability(ArcaneResearchDataProvider.RESEARCH_DATA_KEY).ifPresent(research -> research.addOrSubResearch(research.getFireResearch(), 1, 0, 0, true)); player.playSound(SoundEvents.VILLAGER_WORK_CARTOGRAPHER); if (!player.getAbilities().instabuild) { this.tile.removeItem(0, 1); player.experienceLevel--; } return super.clickMenuButton(player, pId); } @Override public @NotNull ItemStack quickMoveStack(@NotNull Player pPlayer, int pIndex) { return ContainerUtils.quickMoveStack(pPlayer, pIndex, this.slots, this, (data) -> this.moveItemStackTo(data.getLeft(), data.getMiddle(), data.getRight(), false), 1); } @Override public boolean stillValid(@NotNull Player pPlayer) { return stillValid( ContainerLevelAccess.create(pPlayer.level(), this.tile.getBlockPos()), pPlayer, ArsMythosObjectRegistry.ARCANE_SCHOLARS_TABLE_FIRE.get()); } public boolean manuscriptsEmpty() { return this.tile.isEmpty(); } } And finally, here is the AbstractContainerScreen (if needed): package everyblu.ars_mythos.client.screens; import com.mojang.blaze3d.systems.RenderSystem; import everyblu.ars_mythos.ArsMythos; import everyblu.ars_mythos.client.menus.ArcaneScholarsAnalysisMenu; import everyblu.ars_mythos.common.capabilities.ArcaneResearchDataProvider; import net.minecraft.client.gui.GuiGraphics; import net.minecraft.client.gui.screens.inventory.AbstractContainerScreen; import net.minecraft.client.renderer.GameRenderer; import net.minecraft.network.chat.Component; import net.minecraft.resources.ResourceLocation; import net.minecraft.world.entity.player.Inventory; import org.jetbrains.annotations.NotNull; public class ArcaneScholarsAnalysisScreen extends AbstractContainerScreen<ArcaneScholarsAnalysisMenu> { public static final ResourceLocation GUI_TEXTURE = ArsMythos.prefix("textures/gui/arcane_scholars_table_analysis.png"); public ArcaneScholarsAnalysisScreen(ArcaneScholarsAnalysisMenu pMenu, Inventory pPlayerInventory, Component pTitle) { super(pMenu, pPlayerInventory, pTitle); } @Override @SuppressWarnings("all") public boolean mouseClicked(double pMouseX, double pMouseY, int pButton) { int x = (this.width - this.imageWidth) / 2; int y = (this.height - this.imageHeight) / 2; for(int k = 0; k < 3; ++k) { double d0 = pMouseX - (double)(x + 60); double d1 = pMouseY - (double)(y + 14 + 19 * k); if (d0 >= 0.0D && d1 >= 0.0D && d0 < 108.0D && d1 < 19.0D && this.menu.clickMenuButton(this.minecraft.player, k)) { this.minecraft.gameMode.handleInventoryButtonClick((this.menu).containerId, k); return true; } } return super.mouseClicked(pMouseX, pMouseY, pButton); } @Override @SuppressWarnings("all") protected void renderBg(@NotNull GuiGraphics guiGraphics, float pPartialTick, int pMouseX, int pMouseY) { RenderSystem.setShader(GameRenderer::getPositionTexShader); RenderSystem.setShaderColor(1.0F, 1.0F, 1.0F, 1.0F); RenderSystem.setShaderTexture(0, GUI_TEXTURE); int x = (this.width - this.imageWidth) / 2; int y = (this.height - this.imageHeight) / 2; guiGraphics.blit(GUI_TEXTURE, x, y, 0, 0, this.imageWidth, this.imageHeight); this.minecraft.player.getCapability(ArcaneResearchDataProvider.RESEARCH_DATA_KEY).ifPresent(research -> guiGraphics.drawString( this.minecraft.font, research.getFireResearch().getLeft().toString(), x + 160, y + 4, 255)); guiGraphics.drawString(this.minecraft.font, String.valueOf(this.minecraft.player.experienceLevel), x + 61, y + 74, 255); for (int k = 0; k < 3; ++k) { if (this.menu.manuscriptsEmpty() || this.minecraft.player.experienceLevel < 1) { guiGraphics.blit(GUI_TEXTURE, x + 60, y + 14 + (19 * k), 0, 185, 108, 19); continue; } guiGraphics.blit(GUI_TEXTURE, x + 60, y + 14 + (19 * k), 0, 166, 108, 19); double d0 = pMouseX - (double)(x + 60); double d1 = pMouseY - (double)(y + 14 + 19 * k); if (d0 >= 0.0D && d1 >= 0.0D && d0 < 108.0D && d1 < 19.0D) { guiGraphics.blit(GUI_TEXTURE, x + 60, y + 14 + (19 * k), 0, 204, 108, 19); } } } @Override public void render(@NotNull GuiGraphics guiGraphics, int mouseX, int mouseY, float delta) { renderBackground(guiGraphics); super.render(guiGraphics, mouseX, mouseY, delta); renderTooltip(guiGraphics, mouseX, mouseY); } } Any help is appreciated.
  2. Hey guys, I have following error for like three hours when joining my friends GPORTAL-Server: Connection Lost Internal Exception: io.netty.handler.codec.DecoderException: java.lang.IndexOutOfBoundsException: index: 9, lenght: 955 (expected: range(0, 30)) So could anybody help me out with this one? Log: Minecraft Log PS: I already updated Java, reinstalled the Modpack, restarted my PC, updated my Browser [...]
  3. Hello again. I am facing difficulty playing and saving my Minecraft Instance. Although I was able to fix my previous issue regarding crashes, a new one has arose. While playing in a world for a prolong period, suddenly I'd be unable to save. In rarer instances, being able to successfully load said data, my character would (seemingly) fall out of the sky, then landing taking fall damage, be inflicted with mining fatigue 5, and be unable to break (or more accurately drop) said item. In these specific situations, reloading the game would result in the same issue repeating itself. Here's the link to one of these moments: https://mclo.gs/qT294sv
  4. I found this weird bug in my Modded Multiplayer server (Here's the mods) and when I search for the Inscriber recipe, I click and nothing shows up. I cheated in an inscriber and I tried to use it but the press doesn't get into it's space even after spam clicking ever place in the UI. Opening the guide for it, it shows a message of "Couldn't find recipe for ae2:inscriber". What to do?
  5. I'm currently making a mod pack on cursed forge (1.20.1). I keep getting the error: | Mod book_utility requires minecraft 1.20.4 or above and below 1.21. Current version on minecraft 1.20.1 I have never downloaded a mod named book_utility, and its not in my mod files From log: [main/ERROR]: Missing or unsupported mandatory dependencies: Mod ID: 'minecraft', Requested by: 'book_utility', Expected range: '[1.20.4,1.21)', Actual version: '1.20.1'
  6. I'm currently making a mod pack on cursed forge (1.20.1). I keep getting the error: | Mod book_utility requires minecraft 1.20.4 or above and below 1.21. Current version on minecraft 1.20.1 I have never downloaded a mod named book_utility, and its not in my mod files From log: [main/ERROR]: Missing or unsupported mandatory dependencies: Mod ID: 'minecraft', Requested by: 'book_utility', Expected range: '[1.20.4,1.21)', Actual version: '1.20.1'
  7. I am running a Minecraft 1.20.1 Forge 47.3.0 server and am having a very strange lighting bug that occurs regularly and is quite frustrating. Essentially after excavating / breaking blocks, it looks like the lighting is not being updated and the newly excavated area is in complete darkness. It looks horrible, my players cannot see in there unless they hold a torch in their hand (placing a torch feels like the darkness snuffs out the light). I have linked some images one shows the issue, and one i have given myself the night vision effect to show what the area should look like. Any help would be greatly appreciated For my Client Side Mod pack the modlist is For the server side the modpack is
  8. Hello everyone, today I would like to touch upon the topic of: How to properly install the Forge 1.8.9 project on a Mac M1 Pro (or Mac Silicon) using IntelliJ IDE. (I would like to note that on Windows 11 everything works fine for me, and I was able to launch IDE without errors!) Yes, you can follow the instructions from the readme file in the forge1.8.9 mdk, but at some point I encounter an error that the Gradle wrapper is not the appropriate version (2.7), and IDE requests permission to download version 4.5 or 8 (for it, this is the appropriate version, but, as I understand it, this is a lie). After allowing the installation of one or another version, error 400 pops up (which means, as I understand it, "Internet connection error"). I tried to solve this problem with chatgpt, but it could not help me in any way. I am writing this post now and if there are people who code minecraft mods for old versions using Mac Silicone, please respond. For an answer, you can also write to me in discord: somikyy. All answers written to me in PM will be published here. I hope this post will also be useful for your subsequent questions about modding on forge 1.8.9.
  9. My skin was stuck to alex and wasn't switching over to my custom skins, can anyone help me figure out how to fix this issue, in the minecraft launcher? thanks.
  10. After Loading the World Java crashes with this hs_err_pid idk what to do i tried so much. forge 47.2.0 java 21 & java17 tried Linux debian 12 Server base # # A fatal error has been detected by the Java Runtime Environment: # # SIGSEGV (0xb) at pc=0x00007fcf50b9e898, pid=1, tid=166 # # JRE version: OpenJDK Runtime Environment Temurin-21.0.3+9 (21.0.3+9) (build 21.0.3+9-LTS) # Java VM: OpenJDK 64-Bit Server VM Temurin-21.0.3+9 (21.0.3+9-LTS, mixed mode, sharing, tiered, compressed oops, compressed class ptrs, g1 gc, linux-amd64) # Problematic frame: # C [libc.so.6+0x28898] abort+0x178 # # Core dump will be written. Default location: /home/container/core # # If you would like to submit a bug report, please visit: # https://github.com/adoptium/adoptium-support/issues # 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: -Xms128M -XX:MaxRAMPercentage=95.0 -Dterminal.jline=false -Dterminal.ansi=true --module-path=libraries/cpw/mods/bootstraplauncher/1.1.2/bootstraplauncher-1.1.2.jar:libraries/cpw/mods/securejarhandler/2.1.10/securejarhandler-2.1.10.jar:libraries/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar:libraries/org/ow2/asm/asm-util/9.5/asm-util-9.5.jar:libraries/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.jar:libraries/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar:libraries/org/ow2/asm/asm/9.5/asm-9.5.jar:libraries/net/minecraftforge/JarJarFileSystems/0.3.19/JarJarFileSystems-0.3.19.jar --add-modules=ALL-MODULE-PATH --add-opens=java.base/java.util.jar=cpw.mods.securejarhandler --add-opens=java.base/java.lang.invoke=cpw.mods.securejarhandler --add-exports=java.base/sun.security.util=cpw.mods.securejarhandler --add-exports=jdk.naming.dns/com.sun.jndi.dns=java.naming -Djava.net.preferIPv6Addresses=system -DignoreList=bootstraplauncher-1.1.2.jar,securejarhandler-2.1.10.jar,asm-commons-9.5.jar,asm-util-9.5.jar,asm-analysis-9.5.jar,asm-tree-9.5.jar,asm-9.5.jar,JarJarFileSystems-0.3.19.jar -DlibraryDirectory=libraries -DlegacyClassPath=libraries/cpw/mods/securejarhandler/2.1.10/securejarhandler-2.1.10.jar:libraries/org/ow2/asm/asm/9.5/asm-9.5.jar:libraries/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar:libraries/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar:libraries/org/ow2/asm/asm-util/9.5/asm-util-9.5.jar:libraries/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.jar:libraries/net/minecraftforge/accesstransformers/8.0.4/accesstransformers-8.0.4.jar:libraries/org/antlr/antlr4-runtime/4.9.1/antlr4-runtime-4.9.1.jar:libraries/net/minecraftforge/eventbus/6.0.5/eventbus-6.0.5.jar:libraries/net/minecraftforge/forgespi/7.0.1/forgespi-7.0.1.jar:libraries/net/minecraftforge/coremods/5.0.1/coremods-5.0.1.jar:libraries/cpw/mods/modlauncher/10.0.9/modlauncher-10.0.9.jar:libraries/net/minecraftforge/unsafe/0.2.0/unsafe-0.2.0.jar:libraries/net/minecraftforge/mergetool/1.1.5/mergetool-1.1.5-api.jar:libraries/com/electronwill/night-config/core/3.6.4/core-3.6.4.jar:libraries/com/electronwill/night-config/toml/3.6.4/toml-3.6.4.jar:libraries/org/apache/maven/maven-artifact/3.8.5/maven-artifact-3.8.5.jar:libraries/net/jodah/typetools/0.6.3/typetools-0.6.3.jar:libraries/net/minecrell/terminalconsoleappender/1.2.0/terminalconsoleappender-1.2.0.jar:libraries/org/jline/jline-reader/3.12.1/jline-reader-3.12.1.jar:libraries/org/jline/jline-terminal/3.12.1/jline-terminal-3.12.1.jar:libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar:libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar:libraries/net/minecraftforge/JarJarSelector/0.3.19/JarJarSelector-0.3.19.jar:libraries/net/minecraftforge/JarJarMetadata/0.3.19/JarJarMetadata-0.3.19.jar:libraries/net/minecraftforge/fmlloader/1.20.1-47.2.0/fmlloader-1.20.1-47.2.0.jar:libraries/net/minecraft/server/1.20.1-20230612.114412/server-1.20.1-20230612.114412-extra.jar:libraries/com/github/oshi/oshi-core/6.2.2/oshi-core-6.2.2.jar:libraries/com/google/code/gson/gson/2.10/gson-2.10.jar:libraries/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1cpw.mods.bootstraplauncher.BootstrapLauncher --launchTarget forgeserver --fml.forgeVersion 47.2.0 --fml.mcVersion 1.20.1 --fml.forgeGroup net.minecraftforge --fml.mcpVersion 20230612.114412 Host: Intel(R) Xeon(R) CPU E5-2667 v2 @ 3.30GHz, 12 cores, 20G, Ubuntu 22.04.4 LTS Time: Thu Jul 11 14:35:16 2024 CEST elapsed time: 177.882906 seconds (0d 0h 2m 57s) --------------- T H R E A D --------------- Current thread (0x00007fcdbc637860): JavaThread "Physics thread" [_thread_in_native, id=166, stack(0x00007fceb5f00000,0x00007fceb6000000) (1024K)] Stack: [0x00007fceb5f00000,0x00007fceb6000000], sp=0x00007fceb5ffe010, free space=1016k Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) C [libc.so.6+0x28898] abort+0x178 Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) j org.valkyrienskies.physics_api_krunch.KrunchNativePhysicsWorldReference.createKrunchNativePhysicsWorld()J+0 [email protected] j org.valkyrienskies.physics_api_krunch.KrunchNativePhysicsWorldReference.<init>()V+5 [email protected] j org.valkyrienskies.physics_api_krunch.KrunchBootstrap.createKrunchPhysicsWorld()Lorg/valkyrienskies/physics_api/PhysicsWorldReference;+18 [email protected] j org.valkyrienskies.core.impl.shadow.Aq$1.a()Lorg/valkyrienskies/physics_api/PhysicsWorldReference;+3 [email protected] j org.valkyrienskies.core.impl.shadow.Aq$1.invoke()Ljava/lang/Object;+1 [email protected] j org.valkyrienskies.core.impl.shadow.Aq.b(Lorg/valkyrienskies/core/impl/shadow/Aj;)V+91 [email protected] j org.valkyrienskies.core.impl.shadow.Aq.a(Lorg/joml/Vector3dc;DZ)Lorg/valkyrienskies/core/impl/shadow/Ao;+51 [email protected] j org.valkyrienskies.core.impl.shadow.At.a(Lorg/joml/Vector3dc;D)V+17 [email protected] j org.valkyrienskies.core.impl.shadow.Ap.run()V+307 [email protected] j org.valkyrienskies.core.impl.shadow.At$1.a()V+7 [email protected] j org.valkyrienskies.core.impl.shadow.At$1.invoke()Ljava/lang/Object;+1 [email protected] j kotlin.concurrent.ThreadsKt$thread$thread$1.run()V+4 [email protected] v ~StubRoutines::call_stub 0x00007fcf37de7cc6 siginfo: si_signo: 11 (SIGSEGV), si_code: 128 (SI_KERNEL), si_addr: 0x0000000000000000 Registers: RAX=0x0000000000000000, RBX=0x00007fceb5fff640, RCX=0x00007fcf50c0c9fc, RDX=0x0000000000000006 RSP=0x00007fceb5ffe010, RBP=0x00007fcf50d91e90, RSI=0x00000000000000a6, RDI=0x0000000000000001 R8 =0x0000000000000000, R9 =0x0000000000000000, R10=0x0000000000000008, R11=0x0000000000000246 R12=0x00007fcdb819b910, R13=0x00007fceb5e7b4b0, R14=0x00007fceb5ffe1c8, R15=0x00007fcdb819aea0 RIP=0x00007fcf50b9e898, EFLAGS=0x0000000000010246, CSGSFS=0x002b000000000033, ERR=0x0000000000000000 TRAPNO=0x000000000000000d Register to memory mapping: RAX=0x0 is null RBX=0x00007fceb5fff640 is pointing into the stack for thread: 0x00007fcdbc637860 RCX=0x00007fcf50c0c9fc: pthread_kill+0x000000000000012c in /lib/x86_64-linux-gnu/libc.so.6 at 0x00007fcf50b76000 RDX=0x0000000000000006 is an unknown value RSP=0x00007fceb5ffe010 is pointing into the stack for thread: 0x00007fcdbc637860 RBP=0x00007fcf50d91e90: <offset 0x000000000021be90> in /lib/x86_64-linux-gnu/libc.so.6 at 0x00007fcf50b76000 RSI=0x00000000000000a6 is an unknown value RDI=0x0000000000000001 is an unknown value R8 =0x0 is null R9 =0x0 is null R10=0x0000000000000008 is an unknown value R11=0x0000000000000246 is an unknown value R12=0x00007fcdb819b910 points into unknown readable memory: 0x3638782f62696c2f | 2f 6c 69 62 2f 78 38 36 R13=0x00007fceb5e7b4b0: _ZNSt12system_errorD1Ev+0x0000000000000000 in /tmp/libgdx?/12cf652/libKrunchJni64.so at 0x00007fceb5ce7000 R14=0x00007fceb5ffe1c8 is pointing into the stack for thread: 0x00007fcdbc637860 R15=0x00007fcdb819aea0 points into unknown readable memory: 0x00007fceb5ef1130 | 30 11 ef b5 ce 7f 00 00 Top of Stack: (sp=0x00007fceb5ffe010) 0x00007fceb5ffe010: 0000000000000020 0000000000000000 0x00007fceb5ffe020: 0000000000000000 0000000000000000 0x00007fceb5ffe030: 0000000000000000 0000000000000000 0x00007fceb5ffe040: 0000000000000000 0000000000000000 0x00007fceb5ffe050: 0000000000000000 0000000000000000 0x00007fceb5ffe060: 0000000000000000 0000000000000000 0x00007fceb5ffe070: 0000000000000000 0000000000000000 0x00007fceb5ffe080: 0000000000000000 0000000000000000 0x00007fceb5ffe090: 0000000000000000 ffffffffffffffff 0x00007fceb5ffe0a0: 0000000000000000 0000000000000000 0x00007fceb5ffe0b0: 0000000000000000 0000000000000000 0x00007fceb5ffe0c0: 0000000000000000 0000000000000000 0x00007fceb5ffe0d0: 0000000000000000 0000000000000000 0x00007fceb5ffe0e0: 0000000000000000 0000000000000000 0x00007fceb5ffe0f0: 0000000000000000 0000000000000000 0x00007fceb5ffe100: 0000000000000000 0000000000000000 0x00007fceb5ffe110: 0000000000000000 0000000000000000 0x00007fceb5ffe120: 0000000000000000 8481782e05e18a00 0x00007fceb5ffe130: 00007fcf50d91860 00007fcf50d91860 0x00007fceb5ffe140: 00007fcdb819b8d8 00007fceb5d70c6b 0x00007fceb5ffe150: 0000000000000000 8481782e05e18a00 0x00007fceb5ffe160: 000000000000000b 00007fcdb806fce0 0x00007fceb5ffe170: 00007fceb5ef7da8 00007fceb5dfd95c 0x00007fceb5ffe180: 00007fceb5dfe140 00007fceb5dfd9c7 0x00007fceb5ffe190: 0000000000000000 00007fceb5dfdb29 0x00007fceb5ffe1a0: 00007fceb5efbcf0 00007fcdb806fd00 0x00007fceb5ffe1b0: 00007fceb5ffe1d8 00007fceb5d7272d 0x00007fceb5ffe1c0: 0000000000000000 00007fcdb819b890 0x00007fceb5ffe1d0: 0000000000000020 0000000000000020 0x00007fceb5ffe1e0: 0000000000000000 8481782e05e18a00 0x00007fceb5ffe1f0: 00007fceb5ffe258 0000000000000007 0x00007fceb5ffe200: 00007fcdb819b228 00007fcdb819b1f0 Instructions: (pc=0x00007fcf50b9e898) 0x00007fcf50b9e798: 00 00 48 c7 04 24 20 00 00 00 e8 69 9f 01 00 8b 0x00007fcf50b9e7a8: 05 f3 36 1f 00 83 f8 01 75 7b c7 05 e4 36 1f 00 0x00007fcf50b9e7b8: 00 00 00 00 8b 05 d2 36 1f 00 ff c8 89 05 ca 36 0x00007fcf50b9e7c8: 1f 00 75 1d 48 c7 05 c1 36 1f 00 00 00 00 00 87 0x00007fcf50b9e7d8: 05 b3 36 1f 00 ff c8 7e 08 48 89 ef e8 17 8b 06 0x00007fcf50b9e7e8: 00 bf 06 00 00 00 e8 6d 9c 01 00 64 48 8b 1c 25 0x00007fcf50b9e7f8: 10 00 00 00 48 39 1d 95 36 1f 00 74 20 31 c0 ba 0x00007fcf50b9e808: 01 00 00 00 f0 0f b1 15 7c 36 1f 00 74 08 48 89 0x00007fcf50b9e818: ef e8 12 8a 06 00 48 89 1d 73 36 1f 00 ff 05 69 0x00007fcf50b9e828: 36 1f 00 eb 05 83 f8 02 75 36 48 8d b4 24 80 00 0x00007fcf50b9e838: 00 00 b9 26 00 00 00 31 c0 31 d2 c7 05 53 36 1f 0x00007fcf50b9e848: 00 03 00 00 00 48 89 f7 f3 ab bf 06 00 00 00 48 0x00007fcf50b9e858: c7 84 24 88 00 00 00 ff ff ff ff e8 68 9c 01 00 0x00007fcf50b9e868: 83 3d 31 36 1f 00 03 75 14 c7 05 25 36 1f 00 04 0x00007fcf50b9e878: 00 00 00 bf 06 00 00 00 e8 db 9b 01 00 83 3d 14 0x00007fcf50b9e888: 36 1f 00 04 75 0b c7 05 08 36 1f 00 05 00 00 00 0x00007fcf50b9e898: f4 83 3d 00 36 1f 00 05 75 14 c7 05 f4 35 1f 00 0x00007fcf50b9e8a8: 06 00 00 00 bf 7f 00 00 00 e8 4a 23 0c 00 f4 eb 0x00007fcf50b9e8b8: fd e8 62 fe ff ff e8 5d fe ff ff 48 83 c1 02 44 0x00007fcf50b9e8c8: 0f be 21 48 83 c1 01 41 8d 54 24 d0 44 89 e3 83 0x00007fcf50b9e8d8: fa 09 76 eb e9 3d e5 01 00 e8 3a fe ff ff e8 35 0x00007fcf50b9e8e8: fe ff ff 48 83 c1 02 0f be 29 48 83 c1 01 8d 55 0x00007fcf50b9e8f8: d0 89 eb 83 fa 09 76 ef e9 74 e7 01 00 e8 16 fe 0x00007fcf50b9e908: ff ff e8 11 fe ff ff 48 83 c1 02 0f be 29 48 83 0x00007fcf50b9e918: c1 01 8d 55 d0 89 eb 83 fa 09 76 ef e9 a5 e9 01 0x00007fcf50b9e928: 00 e8 f2 fd ff ff e8 ed fd ff ff e8 e8 fd ff ff 0x00007fcf50b9e938: e8 e3 fd ff ff e8 de fd ff ff 48 83 c1 02 0f be 0x00007fcf50b9e948: 29 48 83 c1 01 8d 55 d0 89 eb 83 fa 09 76 ef e9 0x00007fcf50b9e958: 0c df 02 00 e8 bf fd ff ff e8 ba fd ff ff e8 b5 0x00007fcf50b9e968: fd ff ff 83 ee 02 48 83 c2 10 48 8d 74 f7 10 48 0x00007fcf50b9e978: 89 d7 48 83 c2 08 48 39 d6 75 f4 e9 f5 f2 03 00 0x00007fcf50b9e988: 83 ef 02 48 83 c1 10 49 8d 7c fa 10 49 89 ca 48 Stack slot to memory mapping: stack at sp + 0 slots: 0x0000000000000020 is an unknown value stack at sp + 1 slots: 0x0 is null stack at sp + 2 slots: 0x0 is null stack at sp + 3 slots: 0x0 is null stack at sp + 4 slots: 0x0 is null stack at sp + 5 slots: 0x0 is null stack at sp + 6 slots: 0x0 is null stack at sp + 7 slots: 0x0 is null --------------- P R O C E S S --------------- Threads class SMR info: _java_thread_list=0x00007fce2d134eb0, length=54, elements={ 0x00007fcf480cb890, 0x00007fcf480ccee0, 0x00007fcf480ce9c0, 0x00007fcf480d0000, 0x00007fcf480d15a0, 0x00007fcf480d30e0, 0x00007fcf480d47a0, 0x00007fcf480fafa0, 0x00007fcf48162690, 0x00007fcf4a290b00, 0x00007fcf4b494760, 0x00007fcf4b596a60, 0x00007fce50010860, 0x00007fcf4b597930, 0x00007fce40000ff0, 0x00007fce38000ff0, 0x00007fce2c000ff0, 0x00007fce30000ff0, 0x00007fce24000ff0, 0x00007fce28000ff0, 0x00007fce1c000ff0, 0x00007fce380ac180, 0x00007fce242aded0, 0x00007fce242f3ea0, 0x00007fce242f6f70, 0x00007fce143653e0, 0x00007fcf4bd3f3f0, 0x00007fce203cc620, 0x00007fcf4bf73280, 0x00007fcdd84603b0, 0x00007fce48001a00, 0x00007fcdd8460e00, 0x00007fcde0775bd0, 0x00007fcdf4007e30, 0x00007fcdf0043ff0, 0x00007fce883f89a0, 0x00007fce04001b00, 0x00007fcdd4001680, 0x00007fcdcc000ff0, 0x00007fcdd0000ff0, 0x00007fcdd8540960, 0x00007fcf4802b580, 0x00007fcdbc001030, 0x00007fcdbc218280, 0x00007fcdbc039080, 0x00007fcdbc637860, 0x00007fcdbc65a5e0, 0x00007fce14066070, 0x00007fcdb40017f0, 0x00007fcda4002c50, 0x00007fcdbc272c80, 0x00007fcdbc330ff0, 0x00007fce906a7b90, 0x00007fce2d134340 } Java Threads: ( => current thread ) 0x00007fcf480cb890 JavaThread "Reference Handler" daemon [_thread_blocked, id=41, stack(0x00007fcf0b1f1000,0x00007fcf0b2f1000) (1024K)] 0x00007fcf480ccee0 JavaThread "Finalizer" daemon [_thread_blocked, id=42, stack(0x00007fcf0b0f0000,0x00007fcf0b1f0000) (1024K)] 0x00007fcf480ce9c0 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=43, stack(0x00007fcf0afef000,0x00007fcf0b0ef000) (1024K)] 0x00007fcf480d0000 JavaThread "Service Thread" daemon [_thread_blocked, id=44, stack(0x00007fcf0aeee000,0x00007fcf0afee000) (1024K)] 0x00007fcf480d15a0 JavaThread "Monitor Deflation Thread" daemon [_thread_blocked, id=45, stack(0x00007fcf0aded000,0x00007fcf0aeed000) (1024K)] 0x00007fcf480d30e0 JavaThread "C2 CompilerThread0" daemon [_thread_in_native, id=46, stack(0x00007fcf0acec000,0x00007fcf0adec000) (1024K)] 0x00007fcf480d47a0 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=47, stack(0x00007fcf0abeb000,0x00007fcf0aceb000) (1024K)] 0x00007fcf480fafa0 JavaThread "Common-Cleaner" daemon [_thread_blocked, id=48, stack(0x00007fcf0aa1a000,0x00007fcf0ab1a000) (1024K)] 0x00007fcf48162690 JavaThread "Notification Thread" daemon [_thread_blocked, id=50, stack(0x00007fcf0a818000,0x00007fcf0a918000) (1024K)] 0x00007fcf4a290b00 JavaThread "JNA Cleaner" daemon [_thread_blocked, id=70, stack(0x00007fcf09300000,0x00007fcf09400000) (1024K)] 0x00007fcf4b494760 JavaThread "Timer hack thread" daemon [_thread_blocked, id=81, stack(0x00007fcf091ff000,0x00007fcf092ff000) (1024K)] 0x00007fcf4b596a60 JavaThread "modloading-worker-0" daemon [_thread_blocked, id=82, stack(0x00007fcf097cf000,0x00007fcf098cf000) (1024K)] 0x00007fce50010860 JavaThread "modloading-worker-0" daemon [_thread_blocked, id=83, stack(0x00007fcf090fe000,0x00007fcf091fe000) (1024K)] 0x00007fcf4b597930 JavaThread "modloading-worker-0" daemon [_thread_blocked, id=84, stack(0x00007fcf08ffd000,0x00007fcf090fd000) (1024K)] 0x00007fce40000ff0 JavaThread "modloading-worker-0" daemon [_thread_blocked, id=85, stack(0x00007fcf08efc000,0x00007fcf08ffc000) (1024K)] 0x00007fce38000ff0 JavaThread "modloading-worker-0" daemon [_thread_blocked, id=87, stack(0x00007fcf08cfa000,0x00007fcf08dfa000) (1024K)] 0x00007fce2c000ff0 JavaThread "modloading-worker-0" daemon [_thread_blocked, id=88, stack(0x00007fcf08bf9000,0x00007fcf08cf9000) (1024K)] 0x00007fce30000ff0 JavaThread "modloading-worker-0" daemon [_thread_blocked, id=89, stack(0x00007fcf08af8000,0x00007fcf08bf8000) (1024K)] 0x00007fce24000ff0 JavaThread "modloading-worker-0" daemon [_thread_blocked, id=90, stack(0x00007fcf089f7000,0x00007fcf08af7000) (1024K)] 0x00007fce28000ff0 JavaThread "modloading-worker-0" daemon [_thread_blocked, id=91, stack(0x00007fcf088f6000,0x00007fcf089f6000) (1024K)] 0x00007fce1c000ff0 JavaThread "modloading-worker-0" daemon [_thread_blocked, id=93, stack(0x00007fcf086f4000,0x00007fcf087f4000) (1024K)] 0x00007fce380ac180 JavaThread "Structurize IO Worker #0" daemon [_thread_blocked, id=95, stack(0x00007fcf084f2000,0x00007fcf085f2000) (1024K)] 0x00007fce242aded0 JavaThread "FileSystemWatchService" daemon [_thread_in_native, id=99, stack(0x00007fcf085f3000,0x00007fcf086f3000) (1024K)] 0x00007fce242f3ea0 JavaThread "Thread-3" daemon [_thread_blocked, id=101, stack(0x00007fcf082f0000,0x00007fcf083f0000) (1024K)] 0x00007fce242f6f70 JavaThread "FileSystemWatchService" daemon [_thread_in_native, id=102, stack(0x00007fcf081ef000,0x00007fcf082ef000) (1024K)] 0x00007fce143653e0 JavaThread "FileSystemWatchService" daemon [_thread_in_native, id=103, stack(0x00007fcf080ee000,0x00007fcf081ee000) (1024K)] 0x00007fcf4bd3f3f0 JavaThread "FileSystemWatchService" daemon [_thread_in_native, id=112, stack(0x00007fcf0a717000,0x00007fcf0a817000) (1024K)] 0x00007fce203cc620 JavaThread "Auto-Sync thread" daemon [_thread_blocked, id=117, stack(0x00007fceb6bfd000,0x00007fceb6cfd000) (1024K)] 0x00007fcf4bf73280 JavaThread "Yggdrasil Key Fetcher" daemon [_thread_blocked, id=132, stack(0x00007fceb6cfe000,0x00007fceb6dfe000) (1024K)] 0x00007fcdd84603b0 JavaThread "Worker-Main-1" daemon [_thread_blocked, id=141, stack(0x00007fceb6afc000,0x00007fceb6bfc000) (1024K)] 0x00007fce48001a00 JavaThread "Worker-Main-2" daemon [_thread_blocked, id=142, stack(0x00007fceb6dff000,0x00007fceb6eff000) (1024K)] 0x00007fcdd8460e00 JavaThread "Worker-Main-3" daemon [_thread_blocked, id=143, stack(0x00007fceb6f00000,0x00007fceb7000000) (1024K)] 0x00007fcde0775bd0 JavaThread "Worker-Main-4" daemon [_thread_blocked, id=144, stack(0x00007fcf0a919000,0x00007fcf0aa19000) (1024K)] 0x00007fcdf4007e30 JavaThread "Worker-Main-5" daemon [_thread_blocked, id=145, stack(0x00007fcf083f1000,0x00007fcf084f1000) (1024K)] 0x00007fcdf0043ff0 JavaThread "Worker-Main-6" daemon [_thread_blocked, id=146, stack(0x00007fceb68fa000,0x00007fceb69fa000) (1024K)] 0x00007fce883f89a0 JavaThread "Worker-Main-7" daemon [_thread_blocked, id=147, stack(0x00007fceb67f9000,0x00007fceb68f9000) (1024K)] 0x00007fce04001b00 JavaThread "Worker-Main-8" daemon [_thread_blocked, id=148, stack(0x00007fceb66f8000,0x00007fceb67f8000) (1024K)] 0x00007fcdd4001680 JavaThread "Worker-Main-9" daemon [_thread_blocked, id=149, stack(0x00007fceb65f7000,0x00007fceb66f7000) (1024K)] 0x00007fcdcc000ff0 JavaThread "Worker-Main-10" daemon [_thread_blocked, id=150, stack(0x00007fceb64f6000,0x00007fceb65f6000) (1024K)] 0x00007fcdd0000ff0 JavaThread "Worker-Main-11" daemon [_thread_blocked, id=151, stack(0x00007fceb63f5000,0x00007fceb64f5000) (1024K)] 0x00007fcdd8540960 JavaThread "Server thread" [_thread_in_Java, id=157, stack(0x00007fceb62f4000,0x00007fceb63f4000) (1024K)] 0x00007fcf4802b580 JavaThread "DestroyJavaVM" [_thread_blocked, id=33, stack(0x00007fcf4f418000,0x00007fcf4f518000) (1024K)] 0x00007fcdbc001030 JavaThread "Server console handler" daemon [_thread_in_native, id=158, stack(0x00007fcf09d33000,0x00007fcf09e33000) (1024K)] 0x00007fcdbc218280 JavaThread "Netty Epoll Server IO #0" daemon [_thread_in_native, id=159, stack(0x00007fceb69fb000,0x00007fceb6afb000) (1024K)] 0x00007fcdbc039080 JavaThread "FileSystemWatchService" daemon [_thread_in_native, id=160, stack(0x00007fcf096ce000,0x00007fcf097ce000) (1024K)] =>0x00007fcdbc637860 JavaThread "Physics thread" [_thread_in_native, id=166, stack(0x00007fceb5f00000,0x00007fceb6000000) (1024K)] 0x00007fcdbc65a5e0 JavaThread "IO-Worker-12" [_thread_blocked, id=169, stack(0x00007fcf087f5000,0x00007fcf088f5000) (1024K)] 0x00007fce14066070 JavaThread "IO-Worker-13" [_thread_blocked, id=170, stack(0x00007fcf09c32000,0x00007fcf09d32000) (1024K)] 0x00007fcdb40017f0 JavaThread "IO-Worker-14" [_thread_blocked, id=172, stack(0x00007fceb50e4000,0x00007fceb51e4000) (1024K)] 0x00007fcda4002c50 JavaThread "IO-Worker-15" [_thread_blocked, id=178, stack(0x00007fceb4ee2000,0x00007fceb4fe2000) (1024K)] 0x00007fcdbc272c80 JavaThread "Server Watchdog" daemon [_thread_blocked, id=217, stack(0x00007fceb51e5000,0x00007fceb52e5000) (1024K)] 0x00007fcdbc330ff0 JavaThread "LanServerPinger #1" daemon [_thread_blocked, id=218, stack(0x00007fceb42e3000,0x00007fceb43e3000) (1024K)] 0x00007fce906a7b90 JavaThread "C2 CompilerThread1" daemon [_thread_in_native, id=220, stack(0x00007fcf08dfb000,0x00007fcf08efb000) (1024K)] 0x00007fce2d134340 JavaThread "C2 CompilerThread2" daemon [_thread_in_native, id=222, stack(0x00007fceb4fe3000,0x00007fceb50e3000) (1024K)] Total: 54 Other Threads: 0x00007fcf480be250 VMThread "VM Thread" [id=40, stack(0x00007fcf0b5db000,0x00007fcf0b6db000) (1024K)] 0x00007fcf480a3fb0 WatcherThread "VM Periodic Task Thread" [id=39, stack(0x00007fcf0b6dc000,0x00007fcf0b7dc000) (1024K)] 0x00007fcf48053e50 WorkerThread "GC Thread#0" [id=34, stack(0x00007fcf1a738000,0x00007fcf1a838000) (1024K)] 0x00007fceb0008200 WorkerThread "GC Thread#1" [id=52, stack(0x00007fcf0a53b000,0x00007fcf0a63b000) (1024K)] 0x00007fceb0008ce0 WorkerThread "GC Thread#2" [id=53, stack(0x00007fcf0a43a000,0x00007fcf0a53a000) (1024K)] 0x00007fceb000b990 WorkerThread "GC Thread#3" [id=54, stack(0x00007fcf0a339000,0x00007fcf0a439000) (1024K)] 0x00007fceb000f940 WorkerThread "GC Thread#4" [id=55, stack(0x00007fcf0a238000,0x00007fcf0a338000) (1024K)] 0x00007fceb00157f0 WorkerThread "GC Thread#5" [id=58, stack(0x00007fcf0a137000,0x00007fcf0a237000) (1024K)] 0x00007fceb0015e10 WorkerThread "GC Thread#6" [id=59, stack(0x00007fcf0a036000,0x00007fcf0a136000) (1024K)] 0x00007fceb0016730 WorkerThread "GC Thread#7" [id=60, stack(0x00007fcf09f35000,0x00007fcf0a035000) (1024K)] 0x00007fceb0017600 WorkerThread "GC Thread#8" [id=61, stack(0x00007fcf09e34000,0x00007fcf09f34000) (1024K)] 0x00007fceb0015350 WorkerThread "GC Thread#9" [id=62, stack(0x00007fcf09ad2000,0x00007fcf09bd2000) (1024K)] 0x00007fcf4805f0c0 ConcurrentGCThread "G1 Main Marker" [id=35, stack(0x00007fcf1a637000,0x00007fcf1a737000) (1024K)] 0x00007fcf48060060 WorkerThread "G1 Conc#0" [id=36, stack(0x00007fcf1a536000,0x00007fcf1a636000) (1024K)] 0x00007fcf0c000d90 WorkerThread "G1 Conc#1" [id=63, stack(0x00007fcf099d1000,0x00007fcf09ad1000) (1024K)] 0x00007fcf0c0018b0 WorkerThread "G1 Conc#2" [id=64, stack(0x00007fcf098d0000,0x00007fcf099d0000) (1024K)] 0x00007fcf48092830 ConcurrentGCThread "G1 Refine#0" [id=37, stack(0x00007fcf0b9fb000,0x00007fcf0bafb000) (1024K)] 0x00007fcf480937e0 ConcurrentGCThread "G1 Service" [id=38, stack(0x00007fcf0b8fa000,0x00007fcf0b9fa000) (1024K)] Total: 18 Threads with active compile tasks: C2 CompilerThread0 177892 36470 ! 4 net.minecraft.server.level.ServerLevel::m_7260_ (199 bytes) C2 CompilerThread1 177892 36430 4 net.minecraft.world.level.Level::m_7731_ (11 bytes) C2 CompilerThread2 177892 36462 4 net.minecraft.world.level.Level::m_6933_ (178 bytes) Total: 3 VM state: not at safepoint (normal execution) VM Mutex/Monitor currently owned by a thread: None Heap address: 0x000000031d000000, size: 20016 MB, Compressed Oops mode: Zero based, Oop shift amount: 3 CDS archive(s) mapped at: [0x00007fcebb000000-0x00007fcebbcab000-0x00007fcebbcab000), size 13283328, SharedBaseAddress: 0x00007fcebb000000, ArchiveRelocationMode: 1. Compressed class space mapped at: 0x00007fcebc000000-0x00007fcefc000000, reserved size: 1073741824 Narrow klass base: 0x00007fcebb000000, Narrow klass shift: 0, Narrow klass range: 0x100000000 GC Precious Log: CardTable entry size: 512 Card Set container configuration: InlinePtr #cards 3 size 8 Array Of Cards #cards 128 size 272 Howl #buckets 8 coarsen threshold 29491 Howl Bitmap #cards 4096 size 528 coarsen threshold 3686 Card regions per heap region 1 cards per card region 32768 CPUs: 12 total, 12 available Memory: 21054M Large Page Support: Disabled NUMA Support: Disabled Compressed Oops: Enabled (Zero based) Heap Region Size: 16M Heap Min Capacity: 128M Heap Initial Capacity: 128M Heap Max Capacity: 20016M Pre-touch: Disabled Parallel Workers: 10 Concurrent Workers: 3 Concurrent Refinement Workers: 10 Periodic GC: Disabled Heap: garbage-first heap total 4489216K, used 2336918K [0x000000031d000000, 0x0000000800000000) region size 16384K, 15 young (245760K), 14 survivors (229376K) Metaspace used 288016K, committed 290752K, reserved 1310720K class space used 54942K, committed 56128K, 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|0x000000031d000000, 0x000000031e000000, 0x000000031e000000|100%| O| |TAMS 0x000000031e000000| PB 0x000000031d000000| Untracked | 1|0x000000031e000000, 0x000000031f000000, 0x000000031f000000|100%| O| |TAMS 0x000000031f000000| PB 0x000000031e000000| Untracked | 2|0x000000031f000000, 0x0000000320000000, 0x0000000320000000|100%| O| |TAMS 0x0000000320000000| PB 0x000000031f000000| Untracked | 3|0x0000000320000000, 0x0000000321000000, 0x0000000321000000|100%| O| |TAMS 0x0000000321000000| PB 0x0000000320000000| Untracked | 4|0x0000000321000000, 0x0000000322000000, 0x0000000322000000|100%| O| |TAMS 0x0000000322000000| PB 0x0000000321000000| Untracked | 5|0x0000000322000000, 0x0000000323000000, 0x0000000323000000|100%| O| |TAMS 0x0000000323000000| PB 0x0000000322000000| Untracked | 6|0x0000000323000000, 0x0000000324000000, 0x0000000324000000|100%| O| |TAMS 0x0000000324000000| PB 0x0000000323000000| Untracked | 7|0x0000000324000000, 0x0000000325000000, 0x0000000325000000|100%| O| |TAMS 0x0000000325000000| PB 0x0000000324000000| Untracked | 8|0x0000000325000000, 0x0000000326000000, 0x0000000326000000|100%| O| |TAMS 0x0000000326000000| PB 0x0000000325000000| Untracked | 9|0x0000000326000000, 0x0000000327000000, 0x0000000327000000|100%| O| |TAMS 0x0000000327000000| PB 0x0000000326000000| Untracked | 10|0x0000000327000000, 0x0000000328000000, 0x0000000328000000|100%| O| |TAMS 0x0000000328000000| PB 0x0000000327000000| Untracked | 11|0x0000000328000000, 0x0000000329000000, 0x0000000329000000|100%| O| |TAMS 0x0000000329000000| PB 0x0000000328000000| Untracked | 12|0x0000000329000000, 0x000000032a000000, 0x000000032a000000|100%| O| |TAMS 0x000000032a000000| PB 0x0000000329000000| Untracked | 13|0x000000032a000000, 0x000000032b000000, 0x000000032b000000|100%| O| |TAMS 0x000000032b000000| PB 0x000000032a000000| Untracked | 14|0x000000032b000000, 0x000000032c000000, 0x000000032c000000|100%| O| |TAMS 0x000000032c000000| PB 0x000000032b000000| Untracked | 15|0x000000032c000000, 0x000000032d000000, 0x000000032d000000|100%| O| |TAMS 0x000000032d000000| PB 0x000000032c000000| Untracked | 16|0x000000032d000000, 0x000000032e000000, 0x000000032e000000|100%|HS| |TAMS 0x000000032e000000| PB 0x000000032d000000| Complete | 17|0x000000032e000000, 0x000000032f000000, 0x000000032f000000|100%| O| |TAMS 0x000000032f000000| PB 0x000000032e000000| Untracked | 18|0x000000032f000000, 0x0000000330000000, 0x0000000330000000|100%| O| |TAMS 0x0000000330000000| PB 0x000000032f000000| Untracked | 19|0x0000000330000000, 0x0000000331000000, 0x0000000331000000|100%| O| |TAMS 0x0000000331000000| PB 0x0000000330000000| Untracked | 20|0x0000000331000000, 0x0000000332000000, 0x0000000332000000|100%| O| |TAMS 0x0000000332000000| PB 0x0000000331000000| Untracked | 21|0x0000000332000000, 0x0000000333000000, 0x0000000333000000|100%| O| |TAMS 0x0000000333000000| PB 0x0000000332000000| Untracked | 22|0x0000000333000000, 0x0000000334000000, 0x0000000334000000|100%| O| |TAMS 0x0000000334000000| PB 0x0000000333000000| Untracked | 23|0x0000000334000000, 0x0000000335000000, 0x0000000335000000|100%| O| |TAMS 0x0000000335000000| PB 0x0000000334000000| Untracked | 24|0x0000000335000000, 0x0000000336000000, 0x0000000336000000|100%| O| |TAMS 0x0000000336000000| PB 0x0000000335000000| Untracked | 25|0x0000000336000000, 0x0000000337000000, 0x0000000337000000|100%| O| |TAMS 0x0000000337000000| PB 0x0000000336000000| Untracked | 26|0x0000000337000000, 0x0000000338000000, 0x0000000338000000|100%| O| |TAMS 0x0000000338000000| PB 0x0000000337000000| Untracked | 27|0x0000000338000000, 0x0000000339000000, 0x0000000339000000|100%| O| |TAMS 0x0000000339000000| PB 0x0000000338000000| Untracked | 28|0x0000000339000000, 0x000000033a000000, 0x000000033a000000|100%| O| |TAMS 0x000000033a000000| PB 0x0000000339000000| Untracked | 29|0x000000033a000000, 0x000000033b000000, 0x000000033b000000|100%| O| |TAMS 0x000000033b000000| PB 0x000000033a000000| Untracked | 30|0x000000033b000000, 0x000000033c000000, 0x000000033c000000|100%| O| |TAMS 0x000000033c000000| PB 0x000000033b000000| Untracked | 31|0x000000033c000000, 0x000000033d000000, 0x000000033d000000|100%| O| |TAMS 0x000000033d000000| PB 0x000000033c000000| Untracked | 32|0x000000033d000000, 0x000000033e000000, 0x000000033e000000|100%| O| |TAMS 0x000000033e000000| PB 0x000000033d000000| Untracked | 33|0x000000033e000000, 0x000000033f000000, 0x000000033f000000|100%| O| |TAMS 0x000000033f000000| PB 0x000000033e000000| Untracked | 34|0x000000033f000000, 0x0000000340000000, 0x0000000340000000|100%| O| |TAMS 0x0000000340000000| PB 0x000000033f000000| Untracked | 35|0x0000000340000000, 0x0000000341000000, 0x0000000341000000|100%| O| |TAMS 0x0000000341000000| PB 0x0000000340000000| Untracked | 36|0x0000000341000000, 0x0000000342000000, 0x0000000342000000|100%| O| |TAMS 0x0000000342000000| PB 0x0000000341000000| Untracked | 37|0x0000000342000000, 0x0000000343000000, 0x0000000343000000|100%| O| |TAMS 0x0000000343000000| PB 0x0000000342000000| Untracked | 38|0x0000000343000000, 0x0000000344000000, 0x0000000344000000|100%| O| |TAMS 0x0000000344000000| PB 0x0000000343000000| Untracked | 39|0x0000000344000000, 0x0000000345000000, 0x0000000345000000|100%| O| |TAMS 0x0000000345000000| PB 0x0000000344000000| Untracked | 40|0x0000000345000000, 0x0000000346000000, 0x0000000346000000|100%| O| |TAMS 0x0000000346000000| PB 0x0000000345000000| Untracked | 41|0x0000000346000000, 0x0000000347000000, 0x0000000347000000|100%| O| |TAMS 0x0000000347000000| PB 0x0000000346000000| Untracked | 42|0x0000000347000000, 0x0000000348000000, 0x0000000348000000|100%| O| |TAMS 0x0000000348000000| PB 0x0000000347000000| Untracked | 43|0x0000000348000000, 0x0000000349000000, 0x0000000349000000|100%| O| |TAMS 0x0000000349000000| PB 0x0000000348000000| Untracked | 44|0x0000000349000000, 0x000000034a000000, 0x000000034a000000|100%| O| |TAMS 0x000000034a000000| PB 0x0000000349000000| Untracked | 45|0x000000034a000000, 0x000000034b000000, 0x000000034b000000|100%| O| |TAMS 0x000000034b000000| PB 0x000000034a000000| Untracked | 46|0x000000034b000000, 0x000000034c000000, 0x000000034c000000|100%| O| |TAMS 0x000000034c000000| PB 0x000000034b000000| Untracked | 47|0x000000034c000000, 0x000000034d000000, 0x000000034d000000|100%| O| |TAMS 0x000000034d000000| PB 0x000000034c000000| Untracked | 48|0x000000034d000000, 0x000000034e000000, 0x000000034e000000|100%| O| |TAMS 0x000000034e000000| PB 0x000000034d000000| Untracked | 49|0x000000034e000000, 0x000000034f000000, 0x000000034f000000|100%| O| |TAMS 0x000000034f000000| PB 0x000000034e000000| Untracked | 50|0x000000034f000000, 0x0000000350000000, 0x0000000350000000|100%| O| |TAMS 0x0000000350000000| PB 0x000000034f000000| Untracked | 51|0x0000000350000000, 0x0000000351000000, 0x0000000351000000|100%| O| |TAMS 0x0000000351000000| PB 0x0000000350000000| Untracked | 52|0x0000000351000000, 0x0000000352000000, 0x0000000352000000|100%| O| |TAMS 0x0000000352000000| PB 0x0000000351000000| Untracked | 53|0x0000000352000000, 0x0000000353000000, 0x0000000353000000|100%| O| |TAMS 0x0000000353000000| PB 0x0000000352000000| Untracked | 54|0x0000000353000000, 0x0000000354000000, 0x0000000354000000|100%| O| |TAMS 0x0000000354000000| PB 0x0000000353000000| Untracked | 55|0x0000000354000000, 0x0000000355000000, 0x0000000355000000|100%| O| |TAMS 0x0000000355000000| PB 0x0000000354000000| Untracked | 56|0x0000000355000000, 0x0000000356000000, 0x0000000356000000|100%| O| |TAMS 0x0000000356000000| PB 0x0000000355000000| Untracked | 57|0x0000000356000000, 0x0000000357000000, 0x0000000357000000|100%| O| |TAMS 0x0000000357000000| PB 0x0000000356000000| Untracked | 58|0x0000000357000000, 0x0000000358000000, 0x0000000358000000|100%| O| |TAMS 0x0000000358000000| PB 0x0000000357000000| Untracked | 59|0x0000000358000000, 0x0000000359000000, 0x0000000359000000|100%| O| |TAMS 0x0000000359000000| PB 0x0000000358000000| Untracked | 60|0x0000000359000000, 0x000000035a000000, 0x000000035a000000|100%| O| |TAMS 0x000000035a000000| PB 0x0000000359000000| Untracked | 61|0x000000035a000000, 0x000000035b000000, 0x000000035b000000|100%| O| |TAMS 0x000000035b000000| PB 0x000000035a000000| Untracked | 62|0x000000035b000000, 0x000000035c000000, 0x000000035c000000|100%| O| |TAMS 0x000000035c000000| PB 0x000000035b000000| Untracked | 63|0x000000035c000000, 0x000000035d000000, 0x000000035d000000|100%| O| |TAMS 0x000000035d000000| PB 0x000000035c000000| Untracked | 64|0x000000035d000000, 0x000000035e000000, 0x000000035e000000|100%| O| |TAMS 0x000000035e000000| PB 0x000000035d000000| Untracked | 65|0x000000035e000000, 0x000000035f000000, 0x000000035f000000|100%| O| |TAMS 0x000000035f000000| PB 0x000000035e000000| Untracked | 66|0x000000035f000000, 0x0000000360000000, 0x0000000360000000|100%| O| |TAMS 0x0000000360000000| PB 0x000000035f000000| Untracked | 67|0x0000000360000000, 0x0000000361000000, 0x0000000361000000|100%| O| |TAMS 0x0000000361000000| PB 0x0000000360000000| Untracked | 68|0x0000000361000000, 0x0000000361000000, 0x0000000362000000| 0%| F| |TAMS 0x0000000361000000| PB 0x0000000361000000| Untracked | 69|0x0000000362000000, 0x0000000363000000, 0x0000000363000000|100%| O| |TAMS 0x0000000363000000| PB 0x0000000362000000| Untracked | 70|0x0000000363000000, 0x0000000364000000, 0x0000000364000000|100%| O| |TAMS 0x0000000364000000| PB 0x0000000363000000| Untracked | 71|0x0000000364000000, 0x0000000365000000, 0x0000000365000000|100%| O| |TAMS 0x0000000365000000| PB 0x0000000364000000| Untracked | 72|0x0000000365000000, 0x0000000366000000, 0x0000000366000000|100%| O| |TAMS 0x0000000366000000| PB 0x0000000365000000| Untracked | 73|0x0000000366000000, 0x0000000367000000, 0x0000000367000000|100%| O| |TAMS 0x0000000367000000| PB 0x0000000366000000| Untracked | 74|0x0000000367000000, 0x0000000368000000, 0x0000000368000000|100%| O| |TAMS 0x0000000368000000| PB 0x0000000367000000| Untracked | 75|0x0000000368000000, 0x0000000368000000, 0x0000000369000000| 0%| F| |TAMS 0x0000000368000000| PB 0x0000000368000000| Untracked | 76|0x0000000369000000, 0x000000036a000000, 0x000000036a000000|100%| O| |TAMS 0x000000036a000000| PB 0x0000000369000000| Untracked | 77|0x000000036a000000, 0x000000036b000000, 0x000000036b000000|100%| O| |TAMS 0x000000036b000000| PB 0x000000036a000000| Untracked | 78|0x000000036b000000, 0x000000036c000000, 0x000000036c000000|100%| O| |TAMS 0x000000036c000000| PB 0x000000036b000000| Untracked | 79|0x000000036c000000, 0x000000036d000000, 0x000000036d000000|100%| O| |TAMS 0x000000036d000000| PB 0x000000036c000000| Untracked | 80|0x000000036d000000, 0x000000036e000000, 0x000000036e000000|100%| O| |TAMS 0x000000036e000000| PB 0x000000036d000000| Untracked | 81|0x000000036e000000, 0x000000036f000000, 0x000000036f000000|100%| O| |TAMS 0x000000036f000000| PB 0x000000036e000000| Untracked | 82|0x000000036f000000, 0x0000000370000000, 0x0000000370000000|100%| O| |TAMS 0x0000000370000000| PB 0x000000036f000000| Untracked | 83|0x0000000370000000, 0x0000000371000000, 0x0000000371000000|100%| O| |TAMS 0x0000000371000000| PB 0x0000000370000000| Untracked | 84|0x0000000371000000, 0x0000000372000000, 0x0000000372000000|100%| O| |TAMS 0x0000000372000000| PB 0x0000000371000000| Untracked | 85|0x0000000372000000, 0x0000000373000000, 0x0000000373000000|100%| O| |TAMS 0x0000000373000000| PB 0x0000000372000000| Untracked | 86|0x0000000373000000, 0x0000000374000000, 0x0000000374000000|100%| O| |TAMS 0x0000000374000000| PB 0x0000000373000000| Untracked | 87|0x0000000374000000, 0x0000000375000000, 0x0000000375000000|100%| O| |TAMS 0x0000000375000000| PB 0x0000000374000000| Untracked | 88|0x0000000375000000, 0x0000000376000000, 0x0000000376000000|100%| O| |TAMS 0x0000000376000000| PB 0x0000000375000000| Untracked | 89|0x0000000376000000, 0x0000000377000000, 0x0000000377000000|100%| O| |TAMS 0x0000000377000000| PB 0x0000000376000000| Untracked | 90|0x0000000377000000, 0x0000000378000000, 0x0000000378000000|100%| O| |TAMS 0x0000000378000000| PB 0x0000000377000000| Untracked | 91|0x0000000378000000, 0x0000000379000000, 0x0000000379000000|100%| O| |TAMS 0x0000000379000000| PB 0x0000000378000000| Untracked | 92|0x0000000379000000, 0x000000037a000000, 0x000000037a000000|100%| O| |TAMS 0x000000037a000000| PB 0x0000000379000000| Untracked | 93|0x000000037a000000, 0x000000037b000000, 0x000000037b000000|100%| O| |TAMS 0x000000037b000000| PB 0x000000037a000000| Untracked | 94|0x000000037b000000, 0x000000037c000000, 0x000000037c000000|100%| O| |TAMS 0x000000037c000000| PB 0x000000037b000000| Untracked | 95|0x000000037c000000, 0x000000037d000000, 0x000000037d000000|100%| O| |TAMS 0x000000037d000000| PB 0x000000037c000000| Untracked | 96|0x000000037d000000, 0x000000037e000000, 0x000000037e000000|100%| O| |TAMS 0x000000037e000000| PB 0x000000037d000000| Untracked | 97|0x000000037e000000, 0x000000037f000000, 0x000000037f000000|100%| O| |TAMS 0x000000037f000000| PB 0x000000037e000000| Untracked | 98|0x000000037f000000, 0x0000000380000000, 0x0000000380000000|100%| O| |TAMS 0x0000000380000000| PB 0x000000037f000000| Untracked | 99|0x0000000380000000, 0x0000000381000000, 0x0000000381000000|100%| O| |TAMS 0x0000000381000000| PB 0x0000000380000000| Untracked | 100|0x0000000381000000, 0x0000000382000000, 0x0000000382000000|100%| O| |TAMS 0x0000000382000000| PB 0x0000000381000000| Untracked | 101|0x0000000382000000, 0x0000000383000000, 0x0000000383000000|100%| O| |TAMS 0x0000000383000000| PB 0x0000000382000000| Untracked | 102|0x0000000383000000, 0x0000000384000000, 0x0000000384000000|100%| O| |TAMS 0x0000000384000000| PB 0x0000000383000000| Untracked | 103|0x0000000384000000, 0x0000000384000000, 0x0000000385000000| 0%| F| |TAMS 0x0000000384000000| PB 0x0000000384000000| Untracked | 104|0x0000000385000000, 0x0000000385000000, 0x0000000386000000| 0%| F| |TAMS 0x0000000385000000| PB 0x0000000385000000| Untracked | 105|0x0000000386000000, 0x0000000387000000, 0x0000000387000000|100%| O| |TAMS 0x0000000387000000| PB 0x0000000386000000| Untracked | 106|0x0000000387000000, 0x0000000388000000, 0x0000000388000000|100%| O| |TAMS 0x0000000388000000| PB 0x0000000387000000| Untracked | 107|0x0000000388000000, 0x0000000389000000, 0x0000000389000000|100%| O| |TAMS 0x0000000389000000| PB 0x0000000388000000| Untracked | 108|0x0000000389000000, 0x000000038a000000, 0x000000038a000000|100%| O| |TAMS 0x000000038a000000| PB 0x0000000389000000| Untracked | 109|0x000000038a000000, 0x000000038b000000, 0x000000038b000000|100%| O| |TAMS 0x000000038b000000| PB 0x000000038a000000| Untracked | 110|0x000000038b000000, 0x000000038c000000, 0x000000038c000000|100%| O| |TAMS 0x000000038c000000| PB 0x000000038b000000| Untracked | 111|0x000000038c000000, 0x000000038c000000, 0x000000038d000000| 0%| F| |TAMS 0x000000038c000000| PB 0x000000038c000000| Untracked | 112|0x000000038d000000, 0x000000038e000000, 0x000000038e000000|100%| O| |TAMS 0x000000038e000000| PB 0x000000038d000000| Untracked | 113|0x000000038e000000, 0x000000038f000000, 0x000000038f000000|100%| O| |TAMS 0x000000038f000000| PB 0x000000038e000000| Untracked | 114|0x000000038f000000, 0x0000000390000000, 0x0000000390000000|100%| O| |TAMS 0x0000000390000000| PB 0x000000038f000000| Untracked | 115|0x0000000390000000, 0x0000000391000000, 0x0000000391000000|100%| O| |TAMS 0x0000000391000000| PB 0x0000000390000000| Untracked | 116|0x0000000391000000, 0x0000000392000000, 0x0000000392000000|100%| O| |TAMS 0x0000000392000000| PB 0x0000000391000000| Untracked | 117|0x0000000392000000, 0x0000000393000000, 0x0000000393000000|100%| O| |TAMS 0x0000000393000000| PB 0x0000000392000000| Untracked | 118|0x0000000393000000, 0x0000000394000000, 0x0000000394000000|100%| O| |TAMS 0x0000000394000000| PB 0x0000000393000000| Untracked | 119|0x0000000394000000, 0x0000000395000000, 0x0000000395000000|100%| O| |TAMS 0x0000000395000000| PB 0x0000000394000000| Untracked | 120|0x0000000395000000, 0x0000000396000000, 0x0000000396000000|100%| O| |TAMS 0x0000000396000000| PB 0x0000000395000000| Untracked | 121|0x0000000396000000, 0x0000000397000000, 0x0000000397000000|100%| O| |TAMS 0x0000000397000000| PB 0x0000000396000000| Untracked | 122|0x0000000397000000, 0x0000000398000000, 0x0000000398000000|100%| O| |TAMS 0x0000000398000000| PB 0x0000000397000000| Untracked | 123|0x0000000398000000, 0x0000000399000000, 0x0000000399000000|100%| O| |TAMS 0x0000000399000000| PB 0x0000000398000000| Untracked | 124|0x0000000399000000, 0x000000039a000000, 0x000000039a000000|100%| O| |TAMS 0x000000039a000000| PB 0x0000000399000000| Untracked | 125|0x000000039a000000, 0x000000039b000000, 0x000000039b000000|100%| O| |TAMS 0x000000039b000000| PB 0x000000039a000000| Untracked | 126|0x000000039b000000, 0x000000039c000000, 0x000000039c000000|100%| O| |TAMS 0x000000039c000000| PB 0x000000039b000000| Untracked | 127|0x000000039c000000, 0x000000039cc82608, 0x000000039d000000| 78%| O| |TAMS 0x000000039cc82608| PB 0x000000039c000000| Untracked | 128|0x000000039d000000, 0x000000039d000000, 0x000000039e000000| 0%| F| |TAMS 0x000000039d000000| PB 0x000000039d000000| Untracked | 129|0x000000039e000000, 0x000000039f000000, 0x000000039f000000|100%| O| |TAMS 0x000000039f000000| PB 0x000000039e000000| Untracked | 130|0x000000039f000000, 0x000000039f000000, 0x00000003a0000000| 0%| F| |TAMS 0x000000039f000000| PB 0x000000039f000000| Untracked | 131|0x00000003a0000000, 0x00000003a0000000, 0x00000003a1000000| 0%| F| |TAMS 0x00000003a0000000| PB 0x00000003a0000000| Untracked | 132|0x00000003a1000000, 0x00000003a1000000, 0x00000003a2000000| 0%| F| |TAMS 0x00000003a1000000| PB 0x00000003a1000000| Untracked | 133|0x00000003a2000000, 0x00000003a3000000, 0x00000003a3000000|100%| O| |TAMS 0x00000003a3000000| PB 0x00000003a2000000| Untracked | 134|0x00000003a3000000, 0x00000003a3da35c0, 0x00000003a4000000| 85%| S|CS|TAMS 0x00000003a3000000| PB 0x00000003a3000000| Complete | 135|0x00000003a4000000, 0x00000003a5000000, 0x00000003a5000000|100%| S|CS|TAMS 0x00000003a4000000| PB 0x00000003a4000000| Complete | 136|0x00000003a5000000, 0x00000003a6000000, 0x00000003a6000000|100%| S|CS|TAMS 0x00000003a5000000| PB 0x00000003a5000000| Complete | 137|0x00000003a6000000, 0x00000003a7000000, 0x00000003a7000000|100%| S|CS|TAMS 0x00000003a6000000| PB 0x00000003a6000000| Complete | 138|0x00000003a7000000, 0x00000003a8000000, 0x00000003a8000000|100%| S|CS|TAMS 0x00000003a7000000| PB 0x00000003a7000000| Complete | 139|0x00000003a8000000, 0x00000003a9000000, 0x00000003a9000000|100%| S|CS|TAMS 0x00000003a8000000| PB 0x00000003a8000000| Complete | 140|0x00000003a9000000, 0x00000003aa000000, 0x00000003aa000000|100%| S|CS|TAMS 0x00000003a9000000| PB 0x00000003a9000000| Complete | 141|0x00000003aa000000, 0x00000003aa000000, 0x00000003ab000000| 0%| F| |TAMS 0x00000003aa000000| PB 0x00000003aa000000| Untracked | 142|0x00000003ab000000, 0x00000003ab000000, 0x00000003ac000000| 0%| F| |TAMS 0x00000003ab000000| PB 0x00000003ab000000| Untracked | 143|0x00000003ac000000, 0x00000003ac000000, 0x00000003ad000000| 0%| F| |TAMS 0x00000003ac000000| PB 0x00000003ac000000| Untracked | 144|0x00000003ad000000, 0x00000003ad000000, 0x00000003ae000000| 0%| F| |TAMS 0x00000003ad000000| PB 0x00000003ad000000| Untracked | 145|0x00000003ae000000, 0x00000003ae000000, 0x00000003af000000| 0%| F| |TAMS 0x00000003ae000000| PB 0x00000003ae000000| Untracked | 146|0x00000003af000000, 0x00000003af000000, 0x00000003b0000000| 0%| F| |TAMS 0x00000003af000000| PB 0x00000003af000000| Untracked | 147|0x00000003b0000000, 0x00000003b1000000, 0x00000003b1000000|100%| S|CS|TAMS 0x00000003b0000000| PB 0x00000003b0000000| Complete | 148|0x00000003b1000000, 0x00000003b2000000, 0x00000003b2000000|100%| S|CS|TAMS 0x00000003b1000000| PB 0x00000003b1000000| Complete | 149|0x00000003b2000000, 0x00000003b3000000, 0x00000003b3000000|100%| S|CS|TAMS 0x00000003b2000000| PB 0x00000003b2000000| Complete | 150|0x00000003b3000000, 0x00000003b4000000, 0x00000003b4000000|100%| S|CS|TAMS 0x00000003b3000000| PB 0x00000003b3000000| Complete | 151|0x00000003b4000000, 0x00000003b5000000, 0x00000003b5000000|100%| S|CS|TAMS 0x00000003b4000000| PB 0x00000003b4000000| Complete | 152|0x00000003b5000000, 0x00000003b6000000, 0x00000003b6000000|100%| S|CS|TAMS 0x00000003b5000000| PB 0x00000003b5000000| Complete | 153|0x00000003b6000000, 0x00000003b6000000, 0x00000003b7000000| 0%| F| |TAMS 0x00000003b6000000| PB 0x00000003b6000000| Untracked | 154|0x00000003b7000000, 0x00000003b7000000, 0x00000003b8000000| 0%| F| |TAMS 0x00000003b7000000| PB 0x00000003b7000000| Untracked | 155|0x00000003b8000000, 0x00000003b9000000, 0x00000003b9000000|100%| S|CS|TAMS 0x00000003b8000000| PB 0x00000003b8000000| Complete | 156|0x00000003b9000000, 0x00000003b9000000, 0x00000003ba000000| 0%| F| |TAMS 0x00000003b9000000| PB 0x00000003b9000000| Untracked | 157|0x00000003ba000000, 0x00000003ba000000, 0x00000003bb000000| 0%| F| |TAMS 0x00000003ba000000| PB 0x00000003ba000000| Untracked | 158|0x00000003bb000000, 0x00000003bb000000, 0x00000003bc000000| 0%| F| |TAMS 0x00000003bb000000| PB 0x00000003bb000000| Untracked | 159|0x00000003bc000000, 0x00000003bc000000, 0x00000003bd000000| 0%| F| |TAMS 0x00000003bc000000| PB 0x00000003bc000000| Untracked | 160|0x00000003bd000000, 0x00000003bd000000, 0x00000003be000000| 0%| F| |TAMS 0x00000003bd000000| PB 0x00000003bd000000| Untracked | 161|0x00000003be000000, 0x00000003be000000, 0x00000003bf000000| 0%| F| |TAMS 0x00000003be000000| PB 0x00000003be000000| Untracked | 162|0x00000003bf000000, 0x00000003bf000000, 0x00000003c0000000| 0%| F| |TAMS 0x00000003bf000000| PB 0x00000003bf000000| Untracked | 163|0x00000003c0000000, 0x00000003c0000000, 0x00000003c1000000| 0%| F| |TAMS 0x00000003c0000000| PB 0x00000003c0000000| Untracked | 164|0x00000003c1000000, 0x00000003c1000000, 0x00000003c2000000| 0%| F| |TAMS 0x00000003c1000000| PB 0x00000003c1000000| Untracked | 165|0x00000003c2000000, 0x00000003c2000000, 0x00000003c3000000| 0%| F| |TAMS 0x00000003c2000000| PB 0x00000003c2000000| Untracked | 166|0x00000003c3000000, 0x00000003c3000000, 0x00000003c4000000| 0%| F| |TAMS 0x00000003c3000000| PB 0x00000003c3000000| Untracked | 167|0x00000003c4000000, 0x00000003c4000000, 0x00000003c5000000| 0%| F| |TAMS 0x00000003c4000000| PB 0x00000003c4000000| Untracked | 168|0x00000003c5000000, 0x00000003c5000000, 0x00000003c6000000| 0%| F| |TAMS 0x00000003c5000000| PB 0x00000003c5000000| Untracked | 169|0x00000003c6000000, 0x00000003c6000000, 0x00000003c7000000| 0%| F| |TAMS 0x00000003c6000000| PB 0x00000003c6000000| Untracked | 170|0x00000003c7000000, 0x00000003c7000000, 0x00000003c8000000| 0%| F| |TAMS 0x00000003c7000000| PB 0x00000003c7000000| Untracked | 171|0x00000003c8000000, 0x00000003c8000000, 0x00000003c9000000| 0%| F| |TAMS 0x00000003c8000000| PB 0x00000003c8000000| Untracked | 172|0x00000003c9000000, 0x00000003c9000000, 0x00000003ca000000| 0%| F| |TAMS 0x00000003c9000000| PB 0x00000003c9000000| Untracked | 173|0x00000003ca000000, 0x00000003ca000000, 0x00000003cb000000| 0%| F| |TAMS 0x00000003ca000000| PB 0x00000003ca000000| Untracked | 174|0x00000003cb000000, 0x00000003cb000000, 0x00000003cc000000| 0%| F| |TAMS 0x00000003cb000000| PB 0x00000003cb000000| Untracked | 175|0x00000003cc000000, 0x00000003cc000000, 0x00000003cd000000| 0%| F| |TAMS 0x00000003cc000000| PB 0x00000003cc000000| Untracked | 176|0x00000003cd000000, 0x00000003cd000000, 0x00000003ce000000| 0%| F| |TAMS 0x00000003cd000000| PB 0x00000003cd000000| Untracked | 177|0x00000003ce000000, 0x00000003ce000000, 0x00000003cf000000| 0%| F| |TAMS 0x00000003ce000000| PB 0x00000003ce000000| Untracked | 178|0x00000003cf000000, 0x00000003cf000000, 0x00000003d0000000| 0%| F| |TAMS 0x00000003cf000000| PB 0x00000003cf000000| Untracked | 179|0x00000003d0000000, 0x00000003d0000000, 0x00000003d1000000| 0%| F| |TAMS 0x00000003d0000000| PB 0x00000003d0000000| Untracked | 180|0x00000003d1000000, 0x00000003d1000000, 0x00000003d2000000| 0%| F| |TAMS 0x00000003d1000000| PB 0x00000003d1000000| Untracked | 181|0x00000003d2000000, 0x00000003d2000000, 0x00000003d3000000| 0%| F| |TAMS 0x00000003d2000000| PB 0x00000003d2000000| Untracked | 182|0x00000003d3000000, 0x00000003d3000000, 0x00000003d4000000| 0%| F| |TAMS 0x00000003d3000000| PB 0x00000003d3000000| Untracked | 183|0x00000003d4000000, 0x00000003d4000000, 0x00000003d5000000| 0%| F| |TAMS 0x00000003d4000000| PB 0x00000003d4000000| Untracked | 184|0x00000003d5000000, 0x00000003d5000000, 0x00000003d6000000| 0%| F| |TAMS 0x00000003d5000000| PB 0x00000003d5000000| Untracked | 185|0x00000003d6000000, 0x00000003d6000000, 0x00000003d7000000| 0%| F| |TAMS 0x00000003d6000000| PB 0x00000003d6000000| Untracked | 186|0x00000003d7000000, 0x00000003d7000000, 0x00000003d8000000| 0%| F| |TAMS 0x00000003d7000000| PB 0x00000003d7000000| Untracked | 187|0x00000003d8000000, 0x00000003d8000000, 0x00000003d9000000| 0%| F| |TAMS 0x00000003d8000000| PB 0x00000003d8000000| Untracked | 188|0x00000003d9000000, 0x00000003d9000000, 0x00000003da000000| 0%| F| |TAMS 0x00000003d9000000| PB 0x00000003d9000000| Untracked | 189|0x00000003da000000, 0x00000003da000000, 0x00000003db000000| 0%| F| |TAMS 0x00000003da000000| PB 0x00000003da000000| Untracked | 190|0x00000003db000000, 0x00000003db000000, 0x00000003dc000000| 0%| F| |TAMS 0x00000003db000000| PB 0x00000003db000000| Untracked | 191|0x00000003dc000000, 0x00000003dc000000, 0x00000003dd000000| 0%| F| |TAMS 0x00000003dc000000| PB 0x00000003dc000000| Untracked | 192|0x00000003dd000000, 0x00000003dd000000, 0x00000003de000000| 0%| F| |TAMS 0x00000003dd000000| PB 0x00000003dd000000| Untracked | 193|0x00000003de000000, 0x00000003de000000, 0x00000003df000000| 0%| F| |TAMS 0x00000003de000000| PB 0x00000003de000000| Untracked | 194|0x00000003df000000, 0x00000003df000000, 0x00000003e0000000| 0%| F| |TAMS 0x00000003df000000| PB 0x00000003df000000| Untracked | 195|0x00000003e0000000, 0x00000003e0000000, 0x00000003e1000000| 0%| F| |TAMS 0x00000003e0000000| PB 0x00000003e0000000| Untracked | 196|0x00000003e1000000, 0x00000003e1000000, 0x00000003e2000000| 0%| F| |TAMS 0x00000003e1000000| PB 0x00000003e1000000| Untracked | 197|0x00000003e2000000, 0x00000003e2000000, 0x00000003e3000000| 0%| F| |TAMS 0x00000003e2000000| PB 0x00000003e2000000| Untracked | 198|0x00000003e3000000, 0x00000003e3000000, 0x00000003e4000000| 0%| F| |TAMS 0x00000003e3000000| PB 0x00000003e3000000| Untracked | 199|0x00000003e4000000, 0x00000003e4000000, 0x00000003e5000000| 0%| F| |TAMS 0x00000003e4000000| PB 0x00000003e4000000| Untracked | 200|0x00000003e5000000, 0x00000003e5000000, 0x00000003e6000000| 0%| F| |TAMS 0x00000003e5000000| PB 0x00000003e5000000| Untracked | 201|0x00000003e6000000, 0x00000003e6000000, 0x00000003e7000000| 0%| F| |TAMS 0x00000003e6000000| PB 0x00000003e6000000| Untracked | 202|0x00000003e7000000, 0x00000003e7000000, 0x00000003e8000000| 0%| F| |TAMS 0x00000003e7000000| PB 0x00000003e7000000| Untracked | 203|0x00000003e8000000, 0x00000003e8000000, 0x00000003e9000000| 0%| F| |TAMS 0x00000003e8000000| PB 0x00000003e8000000| Untracked | 204|0x00000003e9000000, 0x00000003e9000000, 0x00000003ea000000| 0%| F| |TAMS 0x00000003e9000000| PB 0x00000003e9000000| Untracked | 205|0x00000003ea000000, 0x00000003ea000000, 0x00000003eb000000| 0%| F| |TAMS 0x00000003ea000000| PB 0x00000003ea000000| Untracked | 206|0x00000003eb000000, 0x00000003eb000000, 0x00000003ec000000| 0%| F| |TAMS 0x00000003eb000000| PB 0x00000003eb000000| Untracked | 207|0x00000003ec000000, 0x00000003ec000000, 0x00000003ed000000| 0%| F| |TAMS 0x00000003ec000000| PB 0x00000003ec000000| Untracked | 208|0x00000003ed000000, 0x00000003ed000000, 0x00000003ee000000| 0%| F| |TAMS 0x00000003ed000000| PB 0x00000003ed000000| Untracked | 209|0x00000003ee000000, 0x00000003ee000000, 0x00000003ef000000| 0%| F| |TAMS 0x00000003ee000000| PB 0x00000003ee000000| Untracked | 210|0x00000003ef000000, 0x00000003ef000000, 0x00000003f0000000| 0%| F| |TAMS 0x00000003ef000000| PB 0x00000003ef000000| Untracked | 211|0x00000003f0000000, 0x00000003f0000000, 0x00000003f1000000| 0%| F| |TAMS 0x00000003f0000000| PB 0x00000003f0000000| Untracked | 212|0x00000003f1000000, 0x00000003f1000000, 0x00000003f2000000| 0%| F| |TAMS 0x00000003f1000000| PB 0x00000003f1000000| Untracked | 213|0x00000003f2000000, 0x00000003f2000000, 0x00000003f3000000| 0%| F| |TAMS 0x00000003f2000000| PB 0x00000003f2000000| Untracked | 214|0x00000003f3000000, 0x00000003f3000000, 0x00000003f4000000| 0%| F| |TAMS 0x00000003f3000000| PB 0x00000003f3000000| Untracked | 215|0x00000003f4000000, 0x00000003f4000000, 0x00000003f5000000| 0%| F| |TAMS 0x00000003f4000000| PB 0x00000003f4000000| Untracked | 216|0x00000003f5000000, 0x00000003f5000000, 0x00000003f6000000| 0%| F| |TAMS 0x00000003f5000000| PB 0x00000003f5000000| Untracked | 217|0x00000003f6000000, 0x00000003f6000000, 0x00000003f7000000| 0%| F| |TAMS 0x00000003f6000000| PB 0x00000003f6000000| Untracked | 218|0x00000003f7000000, 0x00000003f7000000, 0x00000003f8000000| 0%| F| |TAMS 0x00000003f7000000| PB 0x00000003f7000000| Untracked | 219|0x00000003f8000000, 0x00000003f8000000, 0x00000003f9000000| 0%| F| |TAMS 0x00000003f8000000| PB 0x00000003f8000000| Untracked | 220|0x00000003f9000000, 0x00000003f9000000, 0x00000003fa000000| 0%| F| |TAMS 0x00000003f9000000| PB 0x00000003f9000000| Untracked | 221|0x00000003fa000000, 0x00000003fa000000, 0x00000003fb000000| 0%| F| |TAMS 0x00000003fa000000| PB 0x00000003fa000000| Untracked | 222|0x00000003fb000000, 0x00000003fb000000, 0x00000003fc000000| 0%| F| |TAMS 0x00000003fb000000| PB 0x00000003fb000000| Untracked | 223|0x00000003fc000000, 0x00000003fc000000, 0x00000003fd000000| 0%| F| |TAMS 0x00000003fc000000| PB 0x00000003fc000000| Untracked | 224|0x00000003fd000000, 0x00000003fd000000, 0x00000003fe000000| 0%| F| |TAMS 0x00000003fd000000| PB 0x00000003fd000000| Untracked | 225|0x00000003fe000000, 0x00000003fe000000, 0x00000003ff000000| 0%| F| |TAMS 0x00000003fe000000| PB 0x00000003fe000000| Untracked | 226|0x00000003ff000000, 0x00000003ff000000, 0x0000000400000000| 0%| F| |TAMS 0x00000003ff000000| PB 0x00000003ff000000| Untracked | 227|0x0000000400000000, 0x0000000400000000, 0x0000000401000000| 0%| F| |TAMS 0x0000000400000000| PB 0x0000000400000000| Untracked | 228|0x0000000401000000, 0x0000000401000000, 0x0000000402000000| 0%| F| |TAMS 0x0000000401000000| PB 0x0000000401000000| Untracked | 229|0x0000000402000000, 0x0000000402000000, 0x0000000403000000| 0%| F| |TAMS 0x0000000402000000| PB 0x0000000402000000| Untracked | 230|0x0000000403000000, 0x0000000403000000, 0x0000000404000000| 0%| F| |TAMS 0x0000000403000000| PB 0x0000000403000000| Untracked | 231|0x0000000404000000, 0x0000000404000000, 0x0000000405000000| 0%| F| |TAMS 0x0000000404000000| PB 0x0000000404000000| Untracked | 232|0x0000000405000000, 0x0000000405000000, 0x0000000406000000| 0%| F| |TAMS 0x0000000405000000| PB 0x0000000405000000| Untracked | 233|0x0000000406000000, 0x0000000406000000, 0x0000000407000000| 0%| F| |TAMS 0x0000000406000000| PB 0x0000000406000000| Untracked | 234|0x0000000407000000, 0x0000000407000000, 0x0000000408000000| 0%| F| |TAMS 0x0000000407000000| PB 0x0000000407000000| Untracked | 235|0x0000000408000000, 0x0000000408000000, 0x0000000409000000| 0%| F| |TAMS 0x0000000408000000| PB 0x0000000408000000| Untracked | 236|0x0000000409000000, 0x0000000409000000, 0x000000040a000000| 0%| F| |TAMS 0x0000000409000000| PB 0x0000000409000000| Untracked | 237|0x000000040a000000, 0x000000040a000000, 0x000000040b000000| 0%| F| |TAMS 0x000000040a000000| PB 0x000000040a000000| Untracked | 238|0x000000040b000000, 0x000000040b000000, 0x000000040c000000| 0%| F| |TAMS 0x000000040b000000| PB 0x000000040b000000| Untracked | 239|0x000000040c000000, 0x000000040c000000, 0x000000040d000000| 0%| F| |TAMS 0x000000040c000000| PB 0x000000040c000000| Untracked | 240|0x000000040d000000, 0x000000040d000000, 0x000000040e000000| 0%| F| |TAMS 0x000000040d000000| PB 0x000000040d000000| Untracked | 241|0x000000040e000000, 0x000000040e000000, 0x000000040f000000| 0%| F| |TAMS 0x000000040e000000| PB 0x000000040e000000| Untracked | 242|0x000000040f000000, 0x000000040f000000, 0x0000000410000000| 0%| F| |TAMS 0x000000040f000000| PB 0x000000040f000000| Untracked | 243|0x0000000410000000, 0x0000000410000000, 0x0000000411000000| 0%| F| |TAMS 0x0000000410000000| PB 0x0000000410000000| Untracked | 244|0x0000000411000000, 0x0000000411000000, 0x0000000412000000| 0%| F| |TAMS 0x0000000411000000| PB 0x0000000411000000| Untracked | 245|0x0000000412000000, 0x0000000412000000, 0x0000000413000000| 0%| F| |TAMS 0x0000000412000000| PB 0x0000000412000000| Untracked | 246|0x0000000413000000, 0x0000000413000000, 0x0000000414000000| 0%| F| |TAMS 0x0000000413000000| PB 0x0000000413000000| Untracked | 247|0x0000000414000000, 0x0000000414000000, 0x0000000415000000| 0%| F| |TAMS 0x0000000414000000| PB 0x0000000414000000| Untracked | 248|0x0000000415000000, 0x0000000415000000, 0x0000000416000000| 0%| F| |TAMS 0x0000000415000000| PB 0x0000000415000000| Untracked | 249|0x0000000416000000, 0x0000000416000000, 0x0000000417000000| 0%| F| |TAMS 0x0000000416000000| PB 0x0000000416000000| Untracked | 250|0x0000000417000000, 0x0000000417000000, 0x0000000418000000| 0%| F| |TAMS 0x0000000417000000| PB 0x0000000417000000| Untracked | 251|0x0000000418000000, 0x0000000418000000, 0x0000000419000000| 0%| F| |TAMS 0x0000000418000000| PB 0x0000000418000000| Untracked | 252|0x0000000419000000, 0x0000000419000000, 0x000000041a000000| 0%| F| |TAMS 0x0000000419000000| PB 0x0000000419000000| Untracked | 253|0x000000041a000000, 0x000000041a000000, 0x000000041b000000| 0%| F| |TAMS 0x000000041a000000| PB 0x000000041a000000| Untracked | 254|0x000000041b000000, 0x000000041b000000, 0x000000041c000000| 0%| F| |TAMS 0x000000041b000000| PB 0x000000041b000000| Untracked | 255|0x000000041c000000, 0x000000041c000000, 0x000000041d000000| 0%| F| |TAMS 0x000000041c000000| PB 0x000000041c000000| Untracked | 256|0x000000041d000000, 0x000000041d000000, 0x000000041e000000| 0%| F| |TAMS 0x000000041d000000| PB 0x000000041d000000| Untracked | 257|0x000000041e000000, 0x000000041e000000, 0x000000041f000000| 0%| F| |TAMS 0x000000041e000000| PB 0x000000041e000000| Untracked | 258|0x000000041f000000, 0x000000041f000000, 0x0000000420000000| 0%| F| |TAMS 0x000000041f000000| PB 0x000000041f000000| Untracked | 259|0x0000000420000000, 0x0000000420000000, 0x0000000421000000| 0%| F| |TAMS 0x0000000420000000| PB 0x0000000420000000| Untracked | 260|0x0000000421000000, 0x0000000421000000, 0x0000000422000000| 0%| F| |TAMS 0x0000000421000000| PB 0x0000000421000000| Untracked | 261|0x0000000422000000, 0x0000000422000000, 0x0000000423000000| 0%| F| |TAMS 0x0000000422000000| PB 0x0000000422000000| Untracked | 262|0x0000000423000000, 0x0000000423000000, 0x0000000424000000| 0%| F| |TAMS 0x0000000423000000| PB 0x0000000423000000| Untracked | 263|0x0000000424000000, 0x0000000424000000, 0x0000000425000000| 0%| F| |TAMS 0x0000000424000000| PB 0x0000000424000000| Untracked | 264|0x0000000425000000, 0x0000000425000000, 0x0000000426000000| 0%| F| |TAMS 0x0000000425000000| PB 0x0000000425000000| Untracked | 265|0x0000000426000000, 0x0000000426000000, 0x0000000427000000| 0%| F| |TAMS 0x0000000426000000| PB 0x0000000426000000| Untracked | 266|0x0000000427000000, 0x0000000427000000, 0x0000000428000000| 0%| F| |TAMS 0x0000000427000000| PB 0x0000000427000000| Untracked | 267|0x0000000428000000, 0x0000000428000000, 0x0000000429000000| 0%| F| |TAMS 0x0000000428000000| PB 0x0000000428000000| Untracked |1245|0x00000007fa000000, 0x00000007fb000000, 0x00000007fb000000|100%| O| |TAMS 0x00000007fb000000| PB 0x00000007fa000000| Untracked |1246|0x00000007fb000000, 0x00000007fc000000, 0x00000007fc000000|100%| O| |TAMS 0x00000007fc000000| PB 0x00000007fb000000| Untracked |1247|0x00000007fc000000, 0x00000007fd000000, 0x00000007fd000000|100%| O| |TAMS 0x00000007fd000000| PB 0x00000007fc000000| Untracked |1248|0x00000007fd000000, 0x00000007fd000000, 0x00000007fe000000| 0%| F| |TAMS 0x00000007fd000000| PB 0x00000007fd000000| Untracked |1249|0x00000007fe000000, 0x00000007ff000000, 0x00000007ff000000|100%| O| |TAMS 0x00000007ff000000| PB 0x00000007fe000000| Untracked |1250|0x00000007ff000000, 0x00000007ff7d6078, 0x0000000800000000| 48%| E| |TAMS 0x00000007ff000000| PB 0x00000007ff000000| Complete Card table byte_map: [0x00007fcf2e198000,0x00007fcf308b0000] _byte_map_base: 0x00007fcf2c8b0000 Marking Bits: (CMBitMap*) 0x00007fcf48054970 Bits: [0x00007fcf1a8d8000, 0x00007fcf2e198000) Polling page: 0x00007fcf50daa000 Metaspace: Usage: Non-class: 227.61 MB used. Class: 53.65 MB used. Both: 281.27 MB used. Virtual space: Non-class space: 256.00 MB reserved, 229.12 MB ( 90%) committed, 4 nodes. Class space: 1.00 GB reserved, 54.81 MB ( 5%) committed, 1 nodes. Both: 1.25 GB reserved, 283.94 MB ( 22%) committed. Chunk freelists: Non-Class: 10.84 MB Class: 9.03 MB Both: 19.88 MB MaxMetaspaceSize: unlimited CompressedClassSpaceSize: 1.00 GB Initial GC threshold: 21.00 MB Current GC threshold: 460.75 MB CDS: on - 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: 232. num_arena_births: 4358. num_arena_deaths: 34. num_vsnodes_births: 5. num_vsnodes_deaths: 0. num_space_committed: 4538. num_space_uncommitted: 0. num_chunks_returned_to_freelist: 279. num_chunks_taken_from_freelist: 16679. num_chunk_merges: 238. num_chunk_splits: 11539. num_chunks_enlarged: 7971. num_inconsistent_stats: 0. CodeHeap 'non-profiled nmethods': size=120028Kb used=26979Kb max_used=29887Kb free=93048Kb bounds [0x00007fcf38379000, 0x00007fcf3a0d9000, 0x00007fcf3f8b0000] CodeHeap 'profiled nmethods': size=120028Kb used=33420Kb max_used=46938Kb free=86607Kb bounds [0x00007fcf308b0000, 0x00007fcf336a0000, 0x00007fcf37de7000] CodeHeap 'non-nmethods': size=5704Kb used=2991Kb max_used=3039Kb free=2712Kb bounds [0x00007fcf37de7000, 0x00007fcf380f7000, 0x00007fcf38379000] total_blobs=22039 nmethods=20212 adapters=1730 compilation: enabled stopped_count=0, restarted_count=0 full_count=0 Compilation events (20 events): Event: 177.825 Thread 0x00007fce2d134340 nmethod 36458 0x00007fcf395ad190 code [0x00007fcf395ad340, 0x00007fcf395ad568] Event: 177.825 Thread 0x00007fce2d134340 36459 4 net.minecraft.world.level.redstone.NeighborUpdater::m_230770_ (36 bytes) Event: 177.828 Thread 0x00007fce2d134340 nmethod 36459 0x00007fcf39626510 code [0x00007fcf396266c0, 0x00007fcf396268b8] Event: 177.828 Thread 0x00007fce2d134340 36460 4 net.minecraft.world.level.block.Block::m_49908_ (68 bytes) Event: 177.828 Thread 0x00007fce2d134340 nmethod 36460 0x00007fcf395ace90 code [0x00007fcf395ad000, 0x00007fcf395ad098] Event: 177.828 Thread 0x00007fce2d134340 36464 4 net.minecraft.world.level.block.state.BlockBehaviour::m_6861_ (6 bytes) Event: 177.828 Thread 0x00007fce2d134340 nmethod 36464 0x00007fcf39626210 code [0x00007fcf39626380, 0x00007fcf39626408] Event: 177.828 Thread 0x00007fce2d134340 36463 4 com.google.common.collect.RegularImmutableMap$Values::size (8 bytes) Event: 177.829 Thread 0x00007fce906a7b90 nmethod 36450 0x00007fcf3888cc90 code [0x00007fcf3888cee0, 0x00007fcf3888de88] Event: 177.829 Thread 0x00007fce2d134340 nmethod 36463 0x00007fcf39056110 code [0x00007fcf390562a0, 0x00007fcf39056360] Event: 177.829 Thread 0x00007fce906a7b90 36430 4 net.minecraft.world.level.Level::m_7731_ (11 bytes) Event: 177.829 Thread 0x00007fce2d134340 36462 4 net.minecraft.world.level.Level::m_6933_ (178 bytes) Event: 177.839 Thread 0x00007fcf480d30e0 nmethod 36449 0x00007fcf39461a90 code [0x00007fcf39461e40, 0x00007fcf39463ea0] Event: 177.839 Thread 0x00007fcf480d30e0 36465 4 com.aetherteam.nitrogen.recipe.BlockStateIngredient::test (9 bytes) Event: 177.842 Thread 0x00007fcf480d30e0 nmethod 36465 0x00007fcf39aab110 code [0x00007fcf39aab2c0, 0x00007fcf39aab530] Event: 177.843 Thread 0x00007fcf480d30e0 36466 4 net.minecraft.world.level.block.LeavesBlock::m_54435_ (95 bytes) Event: 177.852 Thread 0x00007fcf480d30e0 nmethod 36466 0x00007fcf39d55e10 code [0x00007fcf39d56000, 0x00007fcf39d56448] Event: 177.852 Thread 0x00007fcf480d30e0 36467 4 com.aetherteam.aether.recipe.recipes.ban.BlockBanRecipe::banBlock (35 bytes) Event: 177.865 Thread 0x00007fcf480d30e0 nmethod 36467 0x00007fcf3883d010 code [0x00007fcf3883d220, 0x00007fcf3883d9e8] Event: 177.865 Thread 0x00007fcf480d30e0 36470 ! 4 net.minecraft.server.level.ServerLevel::m_7260_ (199 bytes) GC Heap History (20 events): Event: 123.775 GC heap before {Heap before GC invocations=85 (full 0): garbage-first heap total 4407296K, used 3927749K [0x000000031d000000, 0x0000000800000000) region size 16384K, 153 young (2506752K), 14 survivors (229376K) Metaspace used 276422K, committed 278976K, reserved 1310720K class space used 53367K, committed 54464K, reserved 1048576K } Event: 123.944 GC heap after {Heap after GC invocations=86 (full 0): garbage-first heap total 4407296K, used 1830770K [0x000000031d000000, 0x0000000800000000) region size 16384K, 20 young (327680K), 20 survivors (327680K) Metaspace used 276422K, committed 278976K, reserved 1310720K class space used 53367K, committed 54464K, reserved 1048576K } Event: 133.464 GC heap before {Heap before GC invocations=87 (full 0): garbage-first heap total 4407296K, used 3829618K [0x000000031d000000, 0x0000000800000000) region size 16384K, 143 young (2342912K), 20 survivors (327680K) Metaspace used 279012K, committed 281600K, reserved 1310720K class space used 53719K, committed 54848K, reserved 1048576K } Event: 133.771 GC heap after {Heap after GC invocations=88 (full 0): garbage-first heap total 4456448K, used 2105344K [0x000000031d000000, 0x0000000800000000) region size 16384K, 17 young (278528K), 17 survivors (278528K) Metaspace used 279012K, committed 281600K, reserved 1310720K class space used 53719K, committed 54848K, reserved 1048576K } Event: 140.120 GC heap before {Heap before GC invocations=88 (full 0): garbage-first heap total 4456448K, used 3923968K [0x000000031d000000, 0x0000000800000000) region size 16384K, 128 young (2097152K), 17 survivors (278528K) Metaspace used 279689K, committed 282240K, reserved 1310720K class space used 53777K, committed 54912K, reserved 1048576K } Event: 140.219 GC heap after {Heap after GC invocations=89 (full 0): garbage-first heap total 4456448K, used 2063186K [0x000000031d000000, 0x0000000800000000) region size 16384K, 4 young (65536K), 4 survivors (65536K) Metaspace used 279689K, committed 282240K, reserved 1310720K class space used 53777K, committed 54912K, reserved 1048576K } Event: 145.709 GC heap before {Heap before GC invocations=89 (full 0): garbage-first heap total 4456448K, used 4062034K [0x000000031d000000, 0x0000000800000000) region size 16384K, 126 young (2064384K), 4 survivors (65536K) Metaspace used 280099K, committed 282624K, reserved 1310720K class space used 53823K, committed 54912K, reserved 1048576K } Event: 145.741 GC heap after {Heap after GC invocations=90 (full 0): garbage-first heap total 4456448K, used 2080768K [0x000000031d000000, 0x0000000800000000) region size 16384K, 5 young (81920K), 5 survivors (81920K) Metaspace used 280099K, committed 282624K, reserved 1310720K class space used 53823K, committed 54912K, reserved 1048576K } Event: 151.805 GC heap before {Heap before GC invocations=91 (full 0): garbage-first heap total 4456448K, used 4112384K [0x000000031d000000, 0x0000000800000000) region size 16384K, 129 young (2113536K), 5 survivors (81920K) Metaspace used 280293K, committed 282816K, reserved 1310720K class space used 53829K, committed 54912K, reserved 1048576K } Event: 151.835 GC heap after {Heap after GC invocations=92 (full 0): garbage-first heap total 4456448K, used 2115117K [0x000000031d000000, 0x0000000800000000) region size 16384K, 8 young (131072K), 8 survivors (131072K) Metaspace used 280293K, committed 282816K, reserved 1310720K class space used 53829K, committed 54912K, reserved 1048576K } Event: 156.850 GC heap before {Heap before GC invocations=92 (full 0): garbage-first heap total 4456448K, used 4064813K [0x000000031d000000, 0x0000000800000000) region size 16384K, 127 young (2080768K), 8 survivors (131072K) Metaspace used 280342K, committed 282880K, reserved 1310720K class space used 53829K, committed 54912K, reserved 1048576K } Event: 156.961 GC heap after {Heap after GC invocations=93 (full 0): garbage-first heap total 4489216K, used 2284148K [0x000000031d000000, 0x0000000800000000) region size 16384K, 16 young (262144K), 16 survivors (262144K) Metaspace used 280342K, committed 282880K, reserved 1310720K class space used 53829K, committed 54912K, reserved 1048576K } Event: 158.810 GC heap before {Heap before GC invocations=93 (full 0): garbage-first heap total 4489216K, used 3955316K [0x000000031d000000, 0x0000000800000000) region size 16384K, 119 young (1949696K), 16 survivors (262144K) Metaspace used 280345K, committed 282880K, reserved 1310720K class space used 53829K, committed 54912K, reserved 1048576K } Event: 158.867 GC heap after {Heap after GC invocations=94 (full 0): garbage-first heap total 4489216K, used 2220628K [0x000000031d000000, 0x0000000800000000) region size 16384K, 4 young (65536K), 4 survivors (65536K) Metaspace used 280345K, committed 282880K, reserved 1310720K class space used 53829K, committed 54912K, reserved 1048576K } Event: 164.562 GC heap before {Heap before GC invocations=95 (full 0): garbage-first heap total 4489216K, used 4072020K [0x000000031d000000, 0x0000000800000000) region size 16384K, 117 young (1916928K), 4 survivors (65536K) Metaspace used 280500K, committed 283072K, reserved 1310720K class space used 53845K, committed 54976K, reserved 1048576K } Event: 164.596 GC heap after {Heap after GC invocations=96 (full 0): garbage-first heap total 4489216K, used 2246335K [0x000000031d000000, 0x0000000800000000) region size 16384K, 6 young (98304K), 6 survivors (98304K) Metaspace used 280500K, committed 283072K, reserved 1310720K class space used 53845K, committed 54976K, reserved 1048576K } Event: 170.573 GC heap before {Heap before GC invocations=96 (full 0): garbage-first heap total 4489216K, used 4130495K [0x000000031d000000, 0x0000000800000000) region size 16384K, 121 young (1982464K), 6 survivors (98304K) Metaspace used 280628K, committed 283200K, reserved 1310720K class space used 53848K, committed 54976K, reserved 1048576K } Event: 170.624 GC heap after {Heap after GC invocations=97 (full 0): garbage-first heap total 4489216K, used 2230568K [0x000000031d000000, 0x0000000800000000) region size 16384K, 8 young (131072K), 8 survivors (131072K) Metaspace used 280628K, committed 283200K, reserved 1310720K class space used 53848K, committed 54976K, reserved 1048576K } Event: 177.559 GC heap before {Heap before GC invocations=97 (full 0): garbage-first heap total 4489216K, used 4098344K [0x000000031d000000, 0x0000000800000000) region size 16384K, 122 young (1998848K), 8 survivors (131072K) Metaspace used 287963K, committed 290688K, reserved 1310720K class space used 54940K, committed 56128K, reserved 1048576K } Event: 177.613 GC heap after {Heap after GC invocations=98 (full 0): garbage-first heap total 4489216K, used 2336918K [0x000000031d000000, 0x0000000800000000) region size 16384K, 14 young (229376K), 14 survivors (229376K) Metaspace used 287963K, committed 290688K, reserved 1310720K class space used 54940K, committed 56128K, reserved 1048576K } Dll operation events (13 events): Event: 0.002 Loaded shared library /opt/java/openjdk/lib/libjava.so Event: 0.043 Loaded shared library /opt/java/openjdk/lib/libjsvml.so Event: 0.046 Loaded shared library /opt/java/openjdk/lib/libnio.so Event: 0.081 Loaded shared library /opt/java/openjdk/lib/libzip.so Event: 0.171 Loaded shared library /opt/java/openjdk/lib/libjimage.so Event: 0.223 Loaded shared library /opt/java/openjdk/lib/libnet.so Event: 0.401 Loaded shared library /opt/java/openjdk/lib/libverify.so Event: 2.900 Loaded shared library /opt/java/openjdk/lib/libmanagement.so Event: 2.902 Loaded shared library /opt/java/openjdk/lib/libmanagement_ext.so Event: 19.413 Loaded shared library /home/container/.cache/JNA/temp/jna17129922086933746827.tmp Event: 29.746 Loaded shared library /opt/java/openjdk/lib/libextnet.so Event: 110.341 Loaded shared library /tmp/libnetty_transport_native_epoll_x86_6412819734511355330687.so Event: 112.378 Loaded shared library /tmp/libgdx?/12cf652/libKrunchJni64.so Deoptimization events (20 events): Event: 177.776 Thread 0x00007fcdd8540960 Uncommon trap: trap_request=0xffffffbe fr.pc=0x00007fcf392bb84c relative=0x0000000000000a4c Event: 177.776 Thread 0x00007fcdd8540960 Uncommon trap: reason=profile_predicate action=maybe_recompile pc=0x00007fcf392bb84c method=net.minecraft.world.level.redstone.CollectingNeighborUpdater.m_230645_()V @ 93 c2 Event: 177.776 Thread 0x00007fcdd8540960 DEOPT PACKING pc=0x00007fcf392bb84c sp=0x00007fceb63f1ca0 Event: 177.776 Thread 0x00007fcdd8540960 DEOPT UNPACKING pc=0x00007fcf37e3af99 sp=0x00007fceb63f1c88 mode 2 Event: 177.776 Thread 0x00007fcdd8540960 Uncommon trap: trap_request=0xffffffbe fr.pc=0x00007fcf392bb84c relative=0x0000000000000a4c Event: 177.776 Thread 0x00007fcdd8540960 Uncommon trap: reason=profile_predicate action=maybe_recompile pc=0x00007fcf392bb84c method=net.minecraft.world.level.redstone.CollectingNeighborUpdater.m_230645_()V @ 93 c2 Event: 177.776 Thread 0x00007fcdd8540960 DEOPT PACKING pc=0x00007fcf392bb84c sp=0x00007fceb63f1ca0 Event: 177.776 Thread 0x00007fcdd8540960 DEOPT UNPACKING pc=0x00007fcf37e3af99 sp=0x00007fceb63f1c88 mode 2 Event: 177.776 Thread 0x00007fcdd8540960 Uncommon trap: trap_request=0xffffffbe fr.pc=0x00007fcf392bb84c relative=0x0000000000000a4c Event: 177.776 Thread 0x00007fcdd8540960 Uncommon trap: reason=profile_predicate action=maybe_recompile pc=0x00007fcf392bb84c method=net.minecraft.world.level.redstone.CollectingNeighborUpdater.m_230645_()V @ 93 c2 Event: 177.776 Thread 0x00007fcdd8540960 DEOPT PACKING pc=0x00007fcf392bb84c sp=0x00007fceb63f1ca0 Event: 177.776 Thread 0x00007fcdd8540960 DEOPT UNPACKING pc=0x00007fcf37e3af99 sp=0x00007fceb63f1c88 mode 2 Event: 177.776 Thread 0x00007fcdd8540960 Uncommon trap: trap_request=0xffffffbe fr.pc=0x00007fcf392bb84c relative=0x0000000000000a4c Event: 177.776 Thread 0x00007fcdd8540960 Uncommon trap: reason=profile_predicate action=maybe_recompile pc=0x00007fcf392bb84c method=net.minecraft.world.level.redstone.CollectingNeighborUpdater.m_230645_()V @ 93 c2 Event: 177.776 Thread 0x00007fcdd8540960 DEOPT PACKING pc=0x00007fcf392bb84c sp=0x00007fceb63f1ca0 Event: 177.776 Thread 0x00007fcdd8540960 DEOPT UNPACKING pc=0x00007fcf37e3af99 sp=0x00007fceb63f1c88 mode 2 Event: 177.815 Thread 0x00007fcdd8540960 Uncommon trap: trap_request=0xffffffbe fr.pc=0x00007fcf39d13414 relative=0x0000000000001014 Event: 177.815 Thread 0x00007fcdd8540960 Uncommon trap: reason=profile_predicate action=maybe_recompile pc=0x00007fcf39d13414 method=net.minecraft.world.level.redstone.CollectingNeighborUpdater.m_230645_()V @ 93 c2 Event: 177.815 Thread 0x00007fcdd8540960 DEOPT PACKING pc=0x00007fcf39d13414 sp=0x00007fceb63f1d20 Event: 177.815 Thread 0x00007fcdd8540960 DEOPT UNPACKING pc=0x00007fcf37e3af99 sp=0x00007fceb63f1c88 mode 2 Classes loaded (20 events): Event: 174.382 Loading class java/nio/channels/MulticastChannel Event: 174.382 Loading class java/nio/channels/MulticastChannel done Event: 174.382 Loading class java/nio/channels/DatagramChannel done Event: 174.382 Loading class sun/nio/ch/DatagramChannelImpl done Event: 174.386 Loading class sun/nio/ch/DatagramDispatcher Event: 174.387 Loading class sun/nio/ch/DatagramDispatcher done Event: 174.387 Loading class sun/net/ResourceManager Event: 174.387 Loading class sun/net/ResourceManager done Event: 174.387 Loading class sun/nio/ch/NativeSocketAddress Event: 174.388 Loading class sun/nio/ch/NativeSocketAddress done Event: 174.388 Loading class sun/nio/ch/DatagramSocketAdaptor Event: 174.389 Loading class sun/nio/ch/DatagramSocketAdaptor done Event: 174.389 Loading class sun/nio/ch/DatagramSocketAdaptor$DatagramSockets Event: 174.389 Loading class sun/nio/ch/DatagramSocketAdaptor$DatagramSockets done Event: 174.389 Loading class sun/nio/ch/DatagramChannelImpl$DefaultOptionsHolder Event: 174.389 Loading class sun/nio/ch/DatagramChannelImpl$DefaultOptionsHolder done Event: 174.391 Loading class java/net/DatagramPacket Event: 174.391 Loading class java/net/DatagramPacket done Event: 176.472 Loading class java/util/PriorityQueue$Itr Event: 176.473 Loading class java/util/PriorityQueue$Itr done Classes unloaded (17 events): Event: 39.974 Thread 0x00007fcf480be250 Unloading class 0x00007fcebe286800 'java/lang/invoke/LambdaForm$MH+0x00007fcebe286800' Event: 39.974 Thread 0x00007fcf480be250 Unloading class 0x00007fcebe286400 'java/lang/invoke/LambdaForm$MH+0x00007fcebe286400' Event: 39.974 Thread 0x00007fcf480be250 Unloading class 0x00007fcebe285800 'java/lang/invoke/LambdaForm$MH+0x00007fcebe285800' Event: 39.974 Thread 0x00007fcf480be250 Unloading class 0x00007fcebe285000 'java/lang/invoke/LambdaForm$MH+0x00007fcebe285000' Event: 39.974 Thread 0x00007fcf480be250 Unloading class 0x00007fcebe284800 'java/lang/invoke/LambdaForm$MH+0x00007fcebe284800' Event: 39.974 Thread 0x00007fcf480be250 Unloading class 0x00007fcebe284400 'java/lang/invoke/LambdaForm$MH+0x00007fcebe284400' Event: 39.974 Thread 0x00007fcf480be250 Unloading class 0x00007fcebe284000 'java/lang/invoke/LambdaForm$MH+0x00007fcebe284000' Event: 147.266 Thread 0x00007fcf480be250 Unloading class 0x00007fcebf4ab000 'java/lang/invoke/LambdaForm$DMH+0x00007fcebf4ab000' Event: 147.266 Thread 0x00007fcf480be250 Unloading class 0x00007fcebf4aa800 'java/lang/invoke/LambdaForm$DMH+0x00007fcebf4aa800' Event: 147.266 Thread 0x00007fcf480be250 Unloading class 0x00007fcebf4aa400 'java/lang/invoke/LambdaForm$DMH+0x00007fcebf4aa400' Event: 147.266 Thread 0x00007fcf480be250 Unloading class 0x00007fcebf4aac00 'java/lang/invoke/LambdaForm$DMH+0x00007fcebf4aac00' Event: 147.266 Thread 0x00007fcf480be250 Unloading class 0x00007fcebf4ab400 'java/lang/invoke/LambdaForm$DMH+0x00007fcebf4ab400' Event: 147.266 Thread 0x00007fcf480be250 Unloading class 0x00007fcebf4a9c00 'java/lang/invoke/LambdaForm$DMH+0x00007fcebf4a9c00' Event: 147.266 Thread 0x00007fcf480be250 Unloading class 0x00007fcebf4a9800 'java/lang/invoke/LambdaForm$DMH+0x00007fcebf4a9800' Event: 147.266 Thread 0x00007fcf480be250 Unloading class 0x00007fcebf4a9000 'java/lang/invoke/LambdaForm$DMH+0x00007fcebf4a9000' Event: 147.266 Thread 0x00007fcf480be250 Unloading class 0x00007fcebf4a9400 'java/lang/invoke/LambdaForm$DMH+0x00007fcebf4a9400' Event: 147.266 Thread 0x00007fcf480be250 Unloading class 0x00007fcebf4a8c00 'java/lang/invoke/LambdaForm$DMH+0x00007fcebf4a8c00' Classes redefined (0 events): No events Internal exceptions (20 events): Event: 176.443 Thread 0x00007fcdd8540960 Exception <a 'java/lang/NullPointerException'{0x00000003ce018ac0}> (0x00000003ce018ac0) thrown [src/hotspot/share/interpreter/linkResolver.cpp, line 1372] Event: 176.443 Thread 0x00007fcdd8540960 Exception <a 'java/lang/NullPointerException'{0x00000003ce018da0}> (0x00000003ce018da0) thrown [src/hotspot/share/interpreter/linkResolver.cpp, line 1372] Event: 176.443 Thread 0x00007fcdd8540960 Exception <a 'java/lang/NullPointerException'{0x00000003ce019080}> (0x00000003ce019080) thrown [src/hotspot/share/interpreter/linkResolver.cpp, line 1372] Event: 176.443 Thread 0x00007fcdd8540960 Exception <a 'java/lang/NullPointerException'{0x00000003ce019360}> (0x00000003ce019360) thrown [src/hotspot/share/interpreter/linkResolver.cpp, line 1372] Event: 176.443 Thread 0x00007fcdd8540960 Exception <a 'java/lang/NullPointerException'{0x00000003ce019640}> (0x00000003ce019640) thrown [src/hotspot/share/interpreter/linkResolver.cpp, line 1372] Event: 176.443 Thread 0x00007fcdd8540960 Exception <a 'java/lang/NullPointerException'{0x00000003ce019c00}> (0x00000003ce019c00) thrown [src/hotspot/share/interpreter/linkResolver.cpp, line 1372] Event: 176.443 Thread 0x00007fcdd8540960 Exception <a 'java/lang/NullPointerException'{0x00000003ce019ee0}> (0x00000003ce019ee0) thrown [src/hotspot/share/interpreter/linkResolver.cpp, line 1372] Event: 176.443 Thread 0x00007fcdd8540960 Exception <a 'java/lang/NullPointerException'{0x00000003ce01a780}> (0x00000003ce01a780) thrown [src/hotspot/share/interpreter/linkResolver.cpp, line 1372] Event: 176.443 Thread 0x00007fcdd8540960 Exception <a 'java/lang/NullPointerException'{0x00000003ce01aa60}> (0x00000003ce01aa60) thrown [src/hotspot/share/interpreter/linkResolver.cpp, line 1372] Event: 176.443 Thread 0x00007fcdd8540960 Exception <a 'java/lang/NullPointerException'{0x00000003ce01b020}> (0x00000003ce01b020) thrown [src/hotspot/share/interpreter/linkResolver.cpp, line 1372] Event: 176.443 Thread 0x00007fcdd8540960 Exception <a 'java/lang/NullPointerException'{0x00000003ce01b300}> (0x00000003ce01b300) thrown [src/hotspot/share/interpreter/linkResolver.cpp, line 1372] Event: 176.443 Thread 0x00007fcdd8540960 Exception <a 'java/lang/NullPointerException'{0x00000003ce01b5e0}> (0x00000003ce01b5e0) thrown [src/hotspot/share/interpreter/linkResolver.cpp, line 1372] Event: 176.443 Thread 0x00007fcdd8540960 Exception <a 'java/lang/NullPointerException'{0x00000003ce01b8c0}> (0x00000003ce01b8c0) thrown [src/hotspot/share/interpreter/linkResolver.cpp, line 1372] Event: 176.443 Thread 0x00007fcdd8540960 Exception <a 'java/lang/NullPointerException'{0x00000003ce01bba0}> (0x00000003ce01bba0) thrown [src/hotspot/share/interpreter/linkResolver.cpp, line 1372] Event: 176.443 Thread 0x00007fcdd8540960 Exception <a 'java/lang/NullPointerException'{0x00000003ce01c160}> (0x00000003ce01c160) thrown [src/hotspot/share/interpreter/linkResolver.cpp, line 1372] Event: 176.443 Thread 0x00007fcdd8540960 Exception <a 'java/lang/NullPointerException'{0x00000003ce01c440}> (0x00000003ce01c440) thrown [src/hotspot/share/interpreter/linkResolver.cpp, line 1372] Event: 176.510 Thread 0x00007fcdd8540960 Implicit null exception at 0x00007fcf397c67da to 0x00007fcf397c6854 Event: 176.569 Thread 0x00007fcdd8540960 Exception <a 'java/lang/NoSuchMethodError'{0x00000003cd315ef8}: 'void java.lang.invoke.DirectMethodHandle$Holder.invokeSpecial(java.lang.Object, java.lang.Object, java.lang.Object, java.lang.Object, double, double, double)'> (0x00000003cd315ef8) thrown [src/hotspot/share/interpreter/linkResolver.cpp, line 772] Event: 176.842 Thread 0x00007fcdd8540960 Exception <a 'java/lang/IncompatibleClassChangeError'{0x00000003cd9d81a8}: Found class java.lang.Object, but interface was expected> (0x00000003cd9d81a8) thrown [src/hotspot/share/interpreter/linkResolver.cpp, line 840] Event: 177.435 Thread 0x00007fcdd8540960 Exception <a 'java/lang/NoSuchMethodError'{0x00000003b95bcfd8}: 'void java.lang.invoke.DirectMethodHandle$Holder.invokeStatic(java.lang.Object, int, int, java.lang.Object, java.lang.Object)'> (0x00000003b95bcfd8) thrown [src/hotspot/share/interpreter/linkResolver.cpp, line 772] ZGC Phase Switch (0 events): No events VM Operations (20 events): Event: 175.923 Executing VM operation: HandshakeAllThreads (Deoptimize) Event: 175.923 Executing VM operation: HandshakeAllThreads (Deoptimize) done Event: 176.058 Executing VM operation: ICBufferFull Event: 176.058 Executing VM operation: ICBufferFull done Event: 176.307 Executing VM operation: HandshakeAllThreads (Deoptimize) Event: 176.307 Executing VM operation: HandshakeAllThreads (Deoptimize) done Event: 176.396 Executing VM operation: HandshakeAllThreads (Deoptimize) Event: 176.396 Executing VM operation: HandshakeAllThreads (Deoptimize) done Event: 176.468 Executing VM operation: HandshakeAllThreads (Deoptimize) Event: 176.468 Executing VM operation: HandshakeAllThreads (Deoptimize) done Event: 176.563 Executing VM operation: HandshakeAllThreads (Deoptimize) Event: 176.563 Executing VM operation: HandshakeAllThreads (Deoptimize) done Event: 176.761 Executing VM operation: ICBufferFull Event: 176.762 Executing VM operation: ICBufferFull done Event: 176.809 Executing VM operation: HandshakeAllThreads (Deoptimize) Event: 176.809 Executing VM operation: HandshakeAllThreads (Deoptimize) done Event: 177.442 Executing VM operation: HandshakeAllThreads (Deoptimize) Event: 177.442 Executing VM operation: HandshakeAllThreads (Deoptimize) done Event: 177.559 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) Event: 177.613 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done Events (20 events): Event: 174.049 Thread 0x00007fce906a7b90 Thread added: 0x00007fce906a7b90 Event: 174.049 Protecting memory [0x00007fcf08dfb000,0x00007fcf08dff000] with protection modes 0 Event: 174.050 Thread 0x00007fce90650d40 Thread added: 0x00007fce90650d40 Event: 174.050 Protecting memory [0x00007fceb4fe3000,0x00007fceb4fe7000] with protection modes 0 Event: 174.367 Thread 0x00007fcdbc272c80 Thread added: 0x00007fcdbc272c80 Event: 174.367 Protecting memory [0x00007fceb51e5000,0x00007fceb51e9000] with protection modes 0 Event: 174.390 Thread 0x00007fcdbc330ff0 Thread added: 0x00007fcdbc330ff0 Event: 174.390 Protecting memory [0x00007fceb42e3000,0x00007fceb42e7000] with protection modes 0 Event: 174.546 Thread 0x00007fce90650d40 Thread exited: 0x00007fce90650d40 Event: 174.636 Thread 0x00007fce90650d40 Thread added: 0x00007fce90650d40 Event: 174.636 Protecting memory [0x00007fceb4fe3000,0x00007fceb4fe7000] with protection modes 0 Event: 175.941 Thread 0x00007fce90650d40 Thread exited: 0x00007fce90650d40 Event: 176.140 Thread 0x00007fce906a7b90 Thread exited: 0x00007fce906a7b90 Event: 176.200 Thread 0x00007fce906a7b90 Thread added: 0x00007fce906a7b90 Event: 176.200 Protecting memory [0x00007fcf08dfb000,0x00007fcf08dff000] with protection modes 0 Event: 176.620 Thread 0x00007fce90650d40 Thread added: 0x00007fce90650d40 Event: 176.620 Protecting memory [0x00007fceb4fe3000,0x00007fceb4fe7000] with protection modes 0 Event: 177.226 Thread 0x00007fce90650d40 Thread exited: 0x00007fce90650d40 Event: 177.640 Thread 0x00007fce2d134340 Thread added: 0x00007fce2d134340 Event: 177.640 Protecting memory [0x00007fceb4fe3000,0x00007fceb4fe7000] with protection modes 0 Dynamic libraries: 31d000000-429000000 rw-p 00000000 00:00 0 429000000-7fa000000 ---p 00000000 00:00 0 7fa000000-7ff000000 rw-p 00000000 00:00 0 7ff000000-7ff108000 rw-p 00cea000 08:01 284831 /opt/java/openjdk/lib/server/classes.jsa 7ff108000-800000000 rw-p 00000000 00:00 0 556c6b5a5000-556c6b5a6000 r-xp 00000000 08:01 284332 /opt/java/openjdk/bin/java 556c6b5a7000-556c6b5a8000 r--p 00001000 08:01 284332 /opt/java/openjdk/bin/java 556c6b5a8000-556c6b5a9000 rw-p 00002000 08:01 284332 /opt/java/openjdk/bin/java 556c6b8ec000-556c6b934000 rw-p 00000000 00:00 0 [heap] 7fccbfe48000-7fccbfe49000 ---p 00000000 00:00 0 7fccbfe49000-7fccc0649000 rw-p 00000000 00:00 0 7fccc0649000-7fccc064a000 ---p 00000000 00:00 0 7fccc064a000-7fccc0e4a000 rw-p 00000000 00:00 0 7fccc0e4a000-7fccc0e4b000 ---p 00000000 00:00 0 7fccc0e4b000-7fccc164b000 rw-p 00000000 00:00 0 7fccc164b000-7fccc164c000 ---p 00000000 00:00 0 7fccc164c000-7fccc1e4c000 rw-p 00000000 00:00 0 7fccc1e4c000-7fccc1e4d000 ---p 00000000 00:00 0 7fccc1e4d000-7fccc264d000 rw-p 00000000 00:00 0 7fccc264d000-7fccc264e000 ---p 00000000 00:00 0 7fccc264e000-7fccc2e4e000 rw-p 00000000 00:00 0 7fccc2e4e000-7fccc2e4f000 ---p 00000000 00:00 0 7fccc2e4f000-7fccc364f000 rw-p 00000000 00:00 0 7fccc364f000-7fccc3650000 ---p 00000000 00:00 0 7fccc3650000-7fccc3e50000 rw-p 00000000 00:00 0 7fccc3e50000-7fccc3e51000 ---p 00000000 00:00 0 7fccc3e51000-7fccc4651000 rw-p 00000000 00:00 0 7fccc4651000-7fccc4652000 ---p 00000000 00:00 0 7fccc4652000-7fccc4e52000 rw-p 00000000 00:00 0 7fccc4e52000-7fccc4e53000 ---p 00000000 00:00 0 7fccc4e53000-7fccc5653000 rw-p 00000000 00:00 0 7fccc5653000-7fccc5654000 ---p 00000000 00:00 0 7fccc5654000-7fccc5e54000 rw-p 00000000 00:00 0 7fccc5e54000-7fccc5e55000 ---p 00000000 00:00 0 7fccc5e55000-7fccc6655000 rw-p 00000000 00:00 0 7fccc6655000-7fccc6656000 ---p 00000000 00:00 0 7fccc6656000-7fccc6e56000 rw-p 00000000 00:00 0 7fccc6e56000-7fccc6e57000 ---p 00000000 00:00 0 7fccc6e57000-7fccc7657000 rw-p 00000000 00:00 0 7fccc7657000-7fccc7658000 ---p 00000000 00:00 0 7fccc7658000-7fccc7e58000 rw-p 00000000 00:00 0 7fccc7e58000-7fccc7e59000 ---p 00000000 00:00 0 7fccc7e59000-7fccc8659000 rw-p 00000000 00:00 0 7fccc8659000-7fccc865a000 ---p 00000000 00:00 0 7fccc865a000-7fccc8e5a000 rw-p 00000000 00:00 0 7fccc8e5a000-7fccc8e5b000 ---p 00000000 00:00 0 7fccc8e5b000-7fccc965b000 rw-p 00000000 00:00 0 7fccc965b000-7fccc965c000 ---p 00000000 00:00 0 7fccc965c000-7fccc9e5c000 rw-p 00000000 00:00 0 7fccc9e5c000-7fccc9e5d000 ---p 00000000 00:00 0 7fccc9e5d000-7fccca65d000 rw-p 00000000 00:00 0 7fccca65d000-7fccca65e000 ---p 00000000 00:00 0 7fccca65e000-7fcccae5e000 rw-p 00000000 00:00 0 7fcccae5e000-7fcccae5f000 ---p 00000000 00:00 0 7fcccae5f000-7fcccb65f000 rw-p 00000000 00:00 0 7fcccb65f000-7fcccb660000 ---p 00000000 00:00 0 7fcccb660000-7fcccbe60000 rw-p 00000000 00:00 0 7fcccbe60000-7fcccbe61000 ---p 00000000 00:00 0 7fcccbe61000-7fcccc661000 rw-p 00000000 00:00 0 7fcccc661000-7fcccc662000 ---p 00000000 00:00 0 7fcccc662000-7fcccce62000 rw-p 00000000 00:00 0 7fcccce62000-7fcccce63000 ---p 00000000 00:00 0 7fcccce63000-7fcccd663000 rw-p 00000000 00:00 0 7fcccd663000-7fcccd664000 ---p 00000000 00:00 0 7fcccd664000-7fcccde64000 rw-p 00000000 00:00 0 7fcccde64000-7fcccde65000 ---p 00000000 00:00 0 7fcccde65000-7fccce665000 rw-p 00000000 00:00 0 7fccce665000-7fccce666000 ---p 00000000 00:00 0 7fccce666000-7fcccee66000 rw-p 00000000 00:00 0 7fcccee66000-7fcccee67000 ---p 00000000 00:00 0 7fcccee67000-7fcccf667000 rw-p 00000000 00:00 0 7fcccf667000-7fcccf668000 ---p 00000000 00:00 0 7fcccf668000-7fcccfe68000 rw-p 00000000 00:00 0 7fcccfe68000-7fcccfe69000 ---p 00000000 00:00 0 7fcccfe69000-7fccd0669000 rw-p 00000000 00:00 0 7fccd0669000-7fccd066a000 ---p 00000000 00:00 0 7fccd066a000-7fccd0e6a000 rw-p 00000000 00:00 0 7fccd0e6a000-7fccd0e6b000 ---p 00000000 00:00 0 7fccd0e6b000-7fccd166b000 rw-p 00000000 00:00 0 7fccd166b000-7fccd166c000 ---p 00000000 00:00 0 7fccd166c000-7fccd1e6c000 rw-p 00000000 00:00 0 7fccd1e6c000-7fccd1e6d000 ---p 00000000 00:00 0 7fccd1e6d000-7fccd266d000 rw-p 00000000 00:00 0 7fccd266d000-7fccd266e000 ---p 00000000 00:00 0 7fccd266e000-7fccd2e6e000 rw-p 00000000 00:00 0 7fccd2e6e000-7fccd2e6f000 ---p 00000000 00:00 0 7fccd2e6f000-7fccd366f000 rw-p 00000000 00:00 0 7fccd366f000-7fccd3670000 ---p 00000000 00:00 0 7fccd3670000-7fccd3e70000 rw-p 00000000 00:00 0 7fccd3e70000-7fccd3e71000 ---p 00000000 00:00 0 7fccd3e71000-7fccd4671000 rw-p 00000000 00:00 0 7fccd4671000-7fccd4672000 ---p 00000000 00:00 0 7fccd4672000-7fccd4e72000 rw-p 00000000 00:00 0 7fccd4e72000-7fccd4e73000 ---p 00000000 00:00 0 7fccd4e73000-7fccd5673000 rw-p 00000000 00:00 0 7fccd5673000-7fccd5674000 ---p 00000000 00:00 0 7fccd5674000-7fccd5e74000 rw-p 00000000 00:00 0 7fccd5e74000-7fccd5e75000 ---p 00000000 00:00 0 7fccd5e75000-7fccd6675000 rw-p 00000000 00:00 0 7fccd6675000-7fccd6676000 ---p 00000000 00:00 0 7fccd6676000-7fccd6e76000 rw-p 00000000 00:00 0 7fccd6e76000-7fccd6e77000 ---p 00000000 00:00 0 7fccd6e77000-7fccd7677000 rw-p 00000000 00:00 0 7fccd7677000-7fccd7678000 ---p 00000000 00:00 0 7fccd7678000-7fccd7e78000 rw-p 00000000 00:00 0 7fccd7e78000-7fccd7e79000 ---p 00000000 00:00 0 7fccd7e79000-7fccd8679000 rw-p 00000000 00:00 0 7fccd8679000-7fccd867a000 ---p 00000000 00:00 0 7fccd867a000-7fccd8e7a000 rw-p 00000000 00:00 0 7fccd8e7a000-7fccd8e7b000 ---p 00000000 00:00 0 7fccd8e7b000-7fccd967b000 rw-p 00000000 00:00 0 7fccd967b000-7fccd967c000 ---p 00000000 00:00 0 7fccd967c000-7fccd9e7c000 rw-p 00000000 00:00 0 7fccd9e7c000-7fccd9e7d000 ---p 00000000 00:00 0 7fccd9e7d000-7fccda67d000 rw-p 00000000 00:00 0 7fccda67d000-7fccda67e000 ---p 00000000 00:00 0 7fccda67e000-7fccdae7e000 rw-p 00000000 00:00 0 7fccdae7e000-7fccdae7f000 ---p 00000000 00:00 0 7fccdae7f000-7fccdb67f000 rw-p 00000000 00:00 0 7fccdb67f000-7fccdb680000 ---p 00000000 00:00 0 7fccdb680000-7fccdbe80000 rw-p 00000000 00:00 0 7fccdbe80000-7fccdbe81000 ---p 00000000 00:00 0 7fccdbe81000-7fccdc681000 rw-p 00000000 00:00 0 7fccdc681000-7fccdc682000 ---p 00000000 00:00 0 7fccdc682000-7fccdce82000 rw-p 00000000 00:00 0 7fccdce82000-7fccdce83000 ---p 00000000 00:00 0 7fccdce83000-7fccdd683000 rw-p 00000000 00:00 0 7fccdd683000-7fccdd684000 ---p 00000000 00:00 0 7fccdd684000-7fccdde84000 rw-p 00000000 00:00 0 7fccdde84000-7fccdde85000 ---p 00000000 00:00 0 7fccdde85000-7fccde685000 rw-p 00000000 00:00 0 7fccde685000-7fccde686000 ---p 00000000 00:00 0 7fccde686000-7fccdee86000 rw-p 00000000 00:00 0 7fccdee86000-7fccdee87000 ---p 00000000 00:00 0 7fccdee87000-7fccdf687000 rw-p 00000000 00:00 0 7fccdf687000-7fccdf688000 ---p 00000000 00:00 0 7fccdf688000-7fccdfe88000 rw-p 00000000 00:00 0 7fccdfe88000-7fccdfe89000 ---p 00000000 00:00 0 7fccdfe89000-7fcce0689000 rw-p 00000000 00:00 0 7fcce0689000-7fcce068a000 ---p 00000000 00:00 0 7fcce068a000-7fcce0e8a000 rw-p 00000000 00:00 0 7fcce0e8a000-7fcce0e8b000 ---p 00000000 00:00 0 7fcce0e8b000-7fcce168b000 rw-p 00000000 00:00 0 7fcce168b000-7fcce168c000 ---p 00000000 00:00 0 7fcce168c000-7fcce1e8c000 rw-p 00000000 00:00 0 7fcce1e8c000-7fcce1e8d000 ---p 00000000 00:00 0 7fcce1e8d000-7fcce268d000 rw-p 00000000 00:00 0 7fcce268d000-7fcce268e000 ---p 00000000 00:00 0 7fcce268e000-7fcce2e8e000 rw-p 00000000 00:00 0 7fcce2e8e000-7fcce2e8f000 ---p 00000000 00:00 0 7fcce2e8f000-7fcce368f000 rw-p 00000000 00:00 0 7fcce368f000-7fcce3690000 ---p 00000000 00:00 0 7fcce3690000-7fcce3e90000 rw-p 00000000 00:00 0 7fcce3e90000-7fcce3e91000 ---p 00000000 00:00 0 7fcce3e91000-7fcce4691000 rw-p 00000000 00:00 0 7fcce4691000-7fcce4692000 ---p 00000000 00:00 0 7fcce4692000-7fcce4e92000 rw-p 00000000 00:00 0 7fcce4e92000-7fcce4e93000 ---p 00000000 00:00 0 7fcce4e93000-7fcce5693000 rw-p 00000000 00:00 0 7fcce5693000-7fcce5694000 ---p 00000000 00:00 0 7fcce5694000-7fcce5e94000 rw-p 00000000 00:00 0 7fcce5e94000-7fcce5e95000 ---p 00000000 00:00 0 7fcce5e95000-7fcce6695000 rw-p 00000000 00:00 0 7fcce6695000-7fcce6696000 ---p 00000000 00:00 0 7fcce6696000-7fcce6e96000 rw-p 00000000 00:00 0 7fcce6e96000-7fcce6e97000 ---p 00000000 00:00 0 7fcce6e97000-7fcce7697000 rw-p 00000000 00:00 0 7fcce7697000-7fcce7698000 ---p 00000000 00:00 0 7fcce7698000-7fcce7e98000 rw-p 00000000 00:00 0 7fcce7e98000-7fcce7e99000 ---p 00000000 00:00 0 7fcce7e99000-7fcce8699000 rw-p 00000000 00:00 0 7fcce8699000-7fcce869a000 ---p 00000000 00:00 0 7fcce869a000-7fcce8e9a000 rw-p 00000000 00:00 0 7fcce8e9a000-7fcce8e9b000 ---p 00000000 00:00 0 7fcce8e9b000-7fcce969b000 rw-p 00000000 00:00 0 7fcce969b000-7fcce969c000 ---p 00000000 00:00 0 7fcce969c000-7fcce9e9c000 rw-p 00000000 00:00 0 7fcce9e9c000-7fcce9e9d000 ---p 00000000 00:00 0 7fcce9e9d000-7fccea69d000 rw-p 00000000 00:00 0 7fccea69d000-7fccea69e000 ---p 00000000 00:00 0 7fccea69e000-7fcceae9e000 rw-p 00000000 00:00 0 7fcceae9e000-7fcceae9f000 ---p 00000000 00:00 0 7fcceae9f000-7fcceb69f000 rw-p 00000000 00:00 0 7fcceb69f000-7fcceb6a0000 ---p 00000000 00:00 0 7fcceb6a0000-7fccebea0000 rw-p 00000000 00:00 0 7fccebea0000-7fccebea1000 ---p 00000000 00:00 0 7fccebea1000-7fccec6a1000 rw-p 00000000 00:00 0 7fccec6a1000-7fccec6a2000 ---p 00000000 00:00 0 7fccec6a2000-7fccecea2000 rw-p 00000000 00:00 0 7fccecea2000-7fccecea3000 ---p 00000000 00:00 0 7fccecea3000-7fcced6a3000 rw-p 00000000 00:00 0 7fcced6a3000-7fcced6a4000 ---p 00000000 00:00 0 7fcced6a4000-7fccedea4000 rw-p 00000000 00:00 0 7fccedea4000-7fccedea5000 ---p 00000000 00:00 0 7fccedea5000-7fccee6a5000 rw-p 00000000 00:00 0 7fccee6a5000-7fccee6a6000 ---p 00000000 00:00 0 7fccee6a6000-7fcceeea6000 rw-p 00000000 00:00 0 7fcceeea6000-7fcceeea7000 ---p 00000000 00:00 0 7fcceeea7000-7fccef6a7000 rw-p 00000000 00:00 0 7fccef6a7000-7fccef6a8000 ---p 00000000 00:00 0 7fccef6a8000-7fccefea8000 rw-p 00000000 00:00 0 7fccefea8000-7fccefea9000 ---p 00000000 00:00 0 7fccefea9000-7fccf06a9000 rw-p 00000000 00:00 0 7fccf06a9000-7fccf06aa000 ---p 00000000 00:00 0 7fccf06aa000-7fccf0eaa000 rw-p 00000000 00:00 0 7fccf0eaa000-7fccf0eab000 ---p 00000000 00:00 0 7fccf0eab000-7fccf16ab000 rw-p 00000000 00:00 0 7fccf16ab000-7fccf16ac000 ---p 00000000 00:00 0 7fccf16ac000-7fccf1eac000 rw-p 00000000 00:00 0 7fccf1eac000-7fccf1ead000 ---p 00000000 00:00 0 7fccf1ead000-7fccf26ad000 rw-p 00000000 00:00 0 7fccf26ad000-7fccf26ae000 ---p 00000000 00:00 0 7fccf26ae000-7fccf2eae000 rw-p 00000000 00:00 0 7fccf2eae000-7fccf2eaf000 ---p 00000000 00:00 0 7fccf2eaf000-7fccf36af000 rw-p 00000000 00:00 0 7fccf36af000-7fccf36b0000 ---p 00000000 00:00 0 7fccf36b0000-7fccf3eb0000 rw-p 00000000 00:00 0 7fccf3eb0000-7fccf3eb1000 ---p 00000000 00:00 0 7fccf3eb1000-7fccf46b1000 rw-p 00000000 00:00 0 7fccf46b1000-7fccf46b2000 ---p 00000000 00:00 0 7fccf46b2000-7fccf4eb2000 rw-p 00000000 00:00 0 7fccf4eb2000-7fccf4eb3000 ---p 00000000 00:00 0 7fccf4eb3000-7fccf56b3000 rw-p 00000000 00:00 0 7fccf56b3000-7fccf56b4000 ---p 00000000 00:00 0 7fccf56b4000-7fccf5eb4000 rw-p 00000000 00:00 0 7fccf5eb4000-7fccf5eb5000 ---p 00000000 00:00 0 7fccf5eb5000-7fccf66b5000 rw-p 00000000 00:00 0 7fccf66b5000-7fccf66b6000 ---p 00000000 00:00 0 7fccf66b6000-7fccf6eb6000 rw-p 00000000 00:00 0 7fccf6eb6000-7fccf6eb7000 ---p 00000000 00:00 0 7fccf6eb7000-7fccf76b7000 rw-p 00000000 00:00 0 7fccf76b7000-7fccf76b8000 ---p 00000000 00:00 0 7fccf76b8000-7fccf7eb8000 rw-p 00000000 00:00 0 7fccf7eb8000-7fccf7eb9000 ---p 00000000 00:00 0 7fccf7eb9000-7fccf86b9000 rw-p 00000000 00:00 0 7fccf86b9000-7fccf86ba000 ---p 00000000 00:00 0 7fccf86ba000-7fccf8eba000 rw-p 00000000 00:00 0 7fccf8eba000-7fccf8ebb000 ---p 00000000 00:00 0 7fccf8ebb000-7fccf96bb000 rw-p 00000000 00:00 0 7fccf96bb000-7fccf96bc000 ---p 00000000 00:00 0 7fccf96bc000-7fccf9ebc000 rw-p 00000000 00:00 0 7fccf9ebc000-7fccf9ebd000 ---p 00000000 00:00 0 7fccf9ebd000-7fccfa6bd000 rw-p 00000000 00:00 0 7fccfa6bd000-7fccfa6be000 ---p 00000000 00:00 0 7fccfa6be000-7fccfaebe000 rw-p 00000000 00:00 0 7fccfaebe000-7fccfaebf000 ---p 00000000 00:00 0 7fccfaebf000-7fccfb6bf000 rw-p 00000000 00:00 0 7fccfb6bf000-7fccfb6c0000 ---p 00000000 00:00 0 7fccfb6c0000-7fccfbec0000 rw-p 00000000 00:00 0 7fccfbec0000-7fccfbec1000 ---p 00000000 00:00 0 7fccfbec1000-7fccfc6c1000 rw-p 00000000 00:00 0 7fccfc6c1000-7fccfc6c2000 ---p 00000000 00:00 0 7fccfc6c2000-7fccfcec2000 rw-p 00000000 00:00 0 7fccfcec2000-7fccfcec3000 ---p 00000000 00:00 0 7fccfcec3000-7fccfd6c3000 rw-p 00000000 00:00 0 7fccfd6c3000-7fccfd6c4000 ---p 00000000 00:00 0 7fccfd6c4000-7fccfdec4000 rw-p 00000000 00:00 0 7fccfdec4000-7fccfdec5000 ---p 00000000 00:00 0 7fccfdec5000-7fccfe6c5000 rw-p 00000000 00:00 0 7fccfe6c5000-7fccfe6c6000 ---p 00000000 00:00 0 7fccfe6c6000-7fccfeec6000 rw-p 00000000 00:00 0 7fccfeec6000-7fccfeec7000 ---p 00000000 00:00 0 7fccfeec7000-7fccff6c7000 rw-p 00000000 00:00 0 7fccff6c7000-7fccff6c8000 ---p 00000000 00:00 0 7fccff6c8000-7fccffec8000 rw-p 00000000 00:00 0 7fccffec8000-7fccffec9000 ---p 00000000 00:00 0 7fccffec9000-7fcd006c9000 rw-p 00000000 00:00 0 7fcd006c9000-7fcd006ca000 ---p 00000000 00:00 0 7fcd006ca000-7fcd00eca000 rw-p 00000000 00:00 0 7fcd00eca000-7fcd00ecb000 ---p 00000000 00:00 0 7fcd00ecb000-7fcd016cb000 rw-p 00000000 00:00 0 7fcd016cb000-7fcd016cc000 ---p 00000000 00:00 0 7fcd016cc000-7fcd01ecc000 rw-p 00000000 00:00 0 7fcd01ecc000-7fcd01ecd000 ---p 00000000 00:00 0 7fcd01ecd000-7fcd026cd000 rw-p 00000000 00:00 0 7fcd026cd000-7fcd026ce000 ---p 00000000 00:00 0 7fcd026ce000-7fcd02ece000 rw-p 00000000 00:00 0 7fcd02ece000-7fcd02ecf000 ---p 00000000 00:00 0 7fcd02ecf000-7fcd036cf000 rw-p 00000000 00:00 0 7fcd036cf000-7fcd036d0000 ---p 00000000 00:00 0 7fcd036d0000-7fcd03ed0000 rw-p 00000000 00:00 0 7fcd03ed0000-7fcd03ed1000 ---p 00000000 00:00 0 7fcd03ed1000-7fcd046d1000 rw-p 00000000 00:00 0 7fcd046d1000-7fcd046d2000 ---p 00000000 00:00 0 7fcd046d2000-7fcd04ed2000 rw-p 00000000 00:00 0 7fcd04ed2000-7fcd04ed3000 ---p 00000000 00:00 0 7fcd04ed3000-7fcd056d3000 rw-p 00000000 00:00 0 7fcd056d3000-7fcd056d4000 ---p 00000000 00:00 0 7fcd056d4000-7fcd05ed4000 rw-p 00000000 00:00 0 7fcd05ed4000-7fcd05ed5000 ---p 00000000 00:00 0 7fcd05ed5000-7fcd066d5000 rw-p 00000000 00:00 0 7fcd066d5000-7fcd066d6000 ---p 00000000 00:00 0 7fcd066d6000-7fcd06ed6000 rw-p 00000000 00:00 0 7fcd06ed6000-7fcd06ed7000 ---p 00000000 00:00 0 7fcd06ed7000-7fcd076d7000 rw-p 00000000 00:00 0 7fcd076d7000-7fcd076d8000 ---p 00000000 00:00 0 7fcd076d8000-7fcd07ed8000 rw-p 00000000 00:00 0 7fcd07ed8000-7fcd07ed9000 ---p 00000000 00:00 0 7fcd07ed9000-7fcd086d9000 rw-p 00000000 00:00 0 7fcd086d9000-7fcd086da000 ---p 00000000 00:00 0 7fcd086da000-7fcd08eda000 rw-p 00000000 00:00 0 7fcd08eda000-7fcd08edb000 ---p 00000000 00:00 0 7fcd08edb000-7fcd096db000 rw-p 00000000 00:00 0 7fcd096db000-7fcd096dc000 ---p 00000000 00:00 0 7fcd096dc000-7fcd09edc000 rw-p 00000000 00:00 0 7fcd09edc000-7fcd09edd000 ---p 00000000 00:00 0 7fcd09edd000-7fcd0a6dd000 rw-p 00000000 00:00 0 7fcd0a6dd000-7fcd0a6de000 ---p 00000000 00:00 0 7fcd0a6de000-7fcd0aede000 rw-p 00000000 00:00 0 7fcd0aede000-7fcd0aedf000 ---p 00000000 00:00 0 7fcd0aedf000-7fcd0b6df000 rw-p 00000000 00:00 0 7fcd0b6df000-7fcd0b6e0000 ---p 00000000 00:00 0 7fcd0b6e0000-7fcd0bee0000 rw-p 00000000 00:00 0 7fcd0bee0000-7fcd0bee1000 ---p 00000000 00:00 0 7fcd0bee1000-7fcd0c6e1000 rw-p 00000000 00:00 0 7fcd0c6e1000-7fcd0c6e2000 ---p 00000000 00:00 0 7fcd0c6e2000-7fcd0cee2000 rw-p 00000000 00:00 0 7fcd0cee2000-7fcd0cee3000 ---p 00000000 00:00 0 7fcd0cee3000-7fcd0d6e3000 rw-p 00000000 00:00 0 7fcd0d6e3000-7fcd0d6e4000 ---p 00000000 00:00 0 7fcd0d6e4000-7fcd0dee4000 rw-p 00000000 00:00 0 7fcd0dee4000-7fcd0dee5000 ---p 00000000 00:00 0 7fcd0dee5000-7fcd0e6e5000 rw-p 00000000 00:00 0 7fcd0e6e5000-7fcd0e6e6000 ---p 00000000 00:00 0 7fcd0e6e6000-7fcd0eee6000 rw-p 00000000 00:00 0 7fcd0eee6000-7fcd0eee7000 ---p 00000000 00:00 0 7fcd0eee7000-7fcd0f6e7000 rw-p 00000000 00:00 0 7fcd0f6e7000-7fcd0f6e8000 ---p 00000000 00:00 0 7fcd0f6e8000-7fcd0fee8000 rw-p 00000000 00:00 0 7fcd0fee8000-7fcd0fee9000 ---p 00000000 00:00 0 7fcd0fee9000-7fcd106e9000 rw-p 00000000 00:00 0 7fcd106e9000-7fcd106ea000 ---p 00000000 00:00 0 7fcd106ea000-7fcd10eea000 rw-p 00000000 00:00 0 7fcd10eea000-7fcd10eeb000 ---p 00000000 00:00 0 7fcd10eeb000-7fcd116eb000 rw-p 00000000 00:00 0 7fcd116eb000-7fcd116ec000 ---p 00000000 00:00 0 7fcd116ec000-7fcd11eec000 rw-p 00000000 00:00 0 7fcd11eec000-7fcd11eed000 ---p 00000000 00:00 0 7fcd11eed000-7fcd126ed000 rw-p 00000000 00:00 0 7fcd126ed000-7fcd126ee000 ---p 00000000 00:00 0 7fcd126ee000-7fcd12eee000 rw-p 00000000 00:00 0 7fcd12eee000-7fcd12eef000 ---p 00000000 00:00 0 7fcd12eef000-7fcd136ef000 rw-p 00000000 00:00 0 7fcd136ef000-7fcd136f0000 ---p 00000000 00:00 0 7fcd136f0000-7fcd13ef0000 rw-p 00000000 00:00 0 7fcd13ef0000-7fcd13ef1000 ---p 00000000 00:00 0 7fcd13ef1000-7fcd146f1000 rw-p 00000000 00:00 0 7fcd146f1000-7fcd146f2000 ---p 00000000 00:00 0 7fcd146f2000-7fcd14ef2000 rw-p 00000000 00:00 0 7fcd14ef2000-7fcd14ef3000 ---p 00000000 00:00 0 7fcd14ef3000-7fcd156f3000 rw-p 00000000 00:00 0 7fcd156f3000-7fcd156f4000 ---p 00000000 00:00 0 7fcd156f4000-7fcd15ef4000 rw-p 00000000 00:00 0 7fcd15ef4000-7fcd15ef5000 ---p 00000000 00:00 0 7fcd15ef5000-7fcd166f5000 rw-p 00000000 00:00 0 7fcd166f5000-7fcd166f6000 ---p 00000000 00:00 0 7fcd166f6000-7fcd16ef6000 rw-p 00000000 00:00 0 7fcd16ef6000-7fcd16ef7000 ---p 00000000 00:00 0 7fcd16ef7000-7fcd176f7000 rw-p 00000000 00:00 0 7fcd176f7000-7fcd176f8000 ---p 00000000 00:00 0 7fcd176f8000-7fcd17ef8000 rw-p 00000000 00:00 0 7fcd17ef8000-7fcd17ef9000 ---p 00000000 00:00 0 7fcd17ef9000-7fcd186f9000 rw-p 00000000 00:00 0 7fcd186f9000-7fcd186fa000 ---p 00000000 00:00 0 7fcd186fa000-7fcd18efa000 rw-p 00000000 00:00 0 7fcd18efa000-7fcd18efb000 ---p 00000000 00:00 0 7fcd18efb000-7fcd196fb000 rw-p 00000000 00:00 0 7fcd196fb000-7fcd196fc000 ---p 00000000 00:00 0 7fcd196fc000-7fcd19efc000 rw-p 00000000 00:00 0 7fcd19efc000-7fcd19efd000 ---p 00000000 00:00 0 7fcd19efd000-7fcd1a6fd000 rw-p 00000000 00:00 0 7fcd1a6fd000-7fcd1a6fe000 ---p 00000000 00:00 0 7fcd1a6fe000-7fcd1aefe000 rw-p 00000000 00:00 0 7fcd1aefe000-7fcd1aeff000 ---p 00000000 00:00 0 7fcd1aeff000-7fcd1b6ff000 rw-p 00000000 00:00 0 7fcd1b6ff000-7fcd1b700000 ---p 00000000 00:00 0 7fcd1b700000-7fcd1bf00000 rw-p 00000000 00:00 0 7fcd1bf00000-7fcd1bf01000 ---p 00000000 00:00 0 7fcd1bf01000-7fcd1c701000 rw-p 00000000 00:00 0 7fcd1c701000-7fcd1c702000 ---p 00000000 00:00 0 7fcd1c702000-7fcd1cf02000 rw-p 00000000 00:00 0 7fcd1cf02000-7fcd1cf03000 ---p 00000000 00:00 0 7fcd1cf03000-7fcd1d703000 rw-p 00000000 00:00 0 7fcd1d703000-7fcd1d704000 ---p 00000000 00:00 0 7fcd1d704000-7fcd1df04000 rw-p 00000000 00:00 0 7fcd1df04000-7fcd1df05000 ---p 00000000 00:00 0 7fcd1df05000-7fcd1e705000 rw-p 00000000 00:00 0 7fcd1e705000-7fcd1e706000 ---p 00000000 00:00 0 7fcd1e706000-7fcd1ef06000 rw-p 00000000 00:00 0 7fcd1ef06000-7fcd1ef07000 ---p 00000000 00:00 0 7fcd1ef07000-7fcd1f707000 rw-p 00000000 00:00 0 7fcd1f707000-7fcd1f708000 ---p 00000000 00:00 0 7fcd1f708000-7fcd1ff08000 rw-p 00000000 00:00 0 7fcd1ff08000-7fcd1ff09000 ---p 00000000 00:00 0 7fcd1ff09000-7fcd20709000 rw-p 00000000 00:00 0 7fcd20709000-7fcd2070a000 ---p 00000000 00:00 0 7fcd2070a000-7fcd20f0a000 rw-p 00000000 00:00 0 7fcd20f0a000-7fcd20f0b000 ---p 00000000 00:00 0 7fcd20f0b000-7fcd2170b000 rw-p 00000000 00:00 0 7fcd2170b000-7fcd2170c000 ---p 00000000 00:00 0 7fcd2170c000-7fcd21f0c000 rw-p 00000000 00:00 0 7fcd21f0c000-7fcd21f0d000 ---p 00000000 00:00 0 7fcd21f0d000-7fcd2270d000 rw-p 00000000 00:00 0 7fcd2270d000-7fcd2270e000 ---p 00000000 00:00 0 7fcd2270e000-7fcd22f0e000 rw-p 00000000 00:00 0 7fcd22f0e000-7fcd22f0f000 ---p 00000000 00:00 0 7fcd22f0f000-7fcd2370f000 rw-p 00000000 00:00 0 7fcd2370f000-7fcd23710000 ---p 00000000 00:00 0 7fcd23710000-7fcd23f10000 rw-p 00000000 00:00 0 7fcd23f10000-7fcd23f11000 ---p 00000000 00:00 0 7fcd23f11000-7fcd24711000 rw-p 00000000 00:00 0 7fcd24711000-7fcd24712000 ---p 00000000 00:00 0 7fcd24712000-7fcd24f12000 rw-p 00000000 00:00 0 7fcd24f12000-7fcd24f13000 ---p 00000000 00:00 0 7fcd24f13000-7fcd25713000 rw-p 00000000 00:00 0 7fcd25713000-7fcd25714000 ---p 00000000 00:00 0 7fcd25714000-7fcd25f14000 rw-p 00000000 00:00 0 7fcd25f14000-7fcd25f15000 ---p 00000000 00:00 0 7fcd25f15000-7fcd26715000 rw-p 00000000 00:00 0 7fcd26715000-7fcd26716000 ---p 00000000 00:00 0 7fcd26716000-7fcd26f16000 rw-p 00000000 00:00 0 7fcd26f16000-7fcd26f17000 ---p 00000000 00:00 0 7fcd26f17000-7fcd27717000 rw-p 00000000 00:00 0 7fcd27717000-7fcd27718000 ---p 00000000 00:00 0 7fcd27718000-7fcd27f18000 rw-p 00000000 00:00 0 7fcd27f18000-7fcd27f19000 ---p 00000000 00:00 0 7fcd27f19000-7fcd28719000 rw-p 00000000 00:00 0 7fcd28719000-7fcd2871a000 ---p 00000000 00:00 0 7fcd2871a000-7fcd28f1a000 rw-p 00000000 00:00 0 7fcd28f1a000-7fcd28f1b000 ---p 00000000 00:00 0 7fcd28f1b000-7fcd2971b000 rw-p 00000000 00:00 0 7fcd2971b000-7fcd2971c000 ---p 00000000 00:00 0 7fcd2971c000-7fcd29f1c000 rw-p 00000000 00:00 0 7fcd29f1c000-7fcd29f1d000 ---p 00000000 00:00 0 7fcd29f1d000-7fcd2a71d000 rw-p 00000000 00:00 0 7fcd2a71d000-7fcd2a71e000 ---p 00000000 00:00 0 7fcd2a71e000-7fcd2af1e000 rw-p 00000000 00:00 0 7fcd2af1e000-7fcd2af1f000 ---p 00000000 00:00 0 7fcd2af1f000-7fcd2b71f000 rw-p 00000000 00:00 0 7fcd2b71f000-7fcd2b720000 ---p 00000000 00:00 0 7fcd2b720000-7fcd2bf20000 rw-p 00000000 00:00 0 7fcd2bf20000-7fcd2bf21000 ---p 00000000 00:00 0 7fcd2bf21000-7fcd2c721000 rw-p 00000000 00:00 0 7fcd2c721000-7fcd2c722000 ---p 00000000 00:00 0 7fcd2c722000-7fcd2cf22000 rw-p 00000000 00:00 0 7fcd2cf22000-7fcd2cf23000 ---p 00000000 00:00 0 7fcd2cf23000-7fcd2d723000 rw-p 00000000 00:00 0 7fcd2d723000-7fcd2d724000 ---p 00000000 00:00 0 7fcd2d724000-7fcd2df24000 rw-p 00000000 00:00 0 7fcd2df24000-7fcd2df25000 ---p 00000000 00:00 0 7fcd2df25000-7fcd2e725000 rw-p 00000000 00:00 0 7fcd2e725000-7fcd2e726000 ---p 00000000 00:00 0 7fcd2e726000-7fcd2ef26000 rw-p 00000000 00:00 0 7fcd2ef26000-7fcd2ef27000 ---p 00000000 00:00 0 7fcd2ef27000-7fcd2f727000 rw-p 00000000 00:00 0 7fcd2f727000-7fcd2f728000 ---p 00000000 00:00 0 7fcd2f728000-7fcd2ff28000 rw-p 00000000 00:00 0 7fcd2ff28000-7fcd2ff29000 ---p 00000000 00:00 0 7fcd2ff29000-7fcd30729000 rw-p 00000000 00:00 0 7fcd30729000-7fcd3072a000 ---p 00000000 00:00 0 7fcd3072a000-7fcd30f2a000 rw-p 00000000 00:00 0 7fcd30f2a000-7fcd30f2b000 ---p 00000000 00:00 0 7fcd30f2b000-7fcd3172b000 rw-p 00000000 00:00 0 7fcd3172b000-7fcd3172c000 ---p 00000000 00:00 0 7fcd3172c000-7fcd31f2c000 rw-p 00000000 00:00 0 7fcd31f2c000-7fcd31f2d000 ---p 00000000 00:00 0 7fcd31f2d000-7fcd3272d000 rw-p 00000000 00:00 0 7fcd3272d000-7fcd3272e000 ---p 00000000 00:00 0 7fcd3272e000-7fcd32f2e000 rw-p 00000000 00:00 0 7fcd32f2e000-7fcd32f2f000 ---p 00000000 00:00 0 7fcd32f2f000-7fcd3372f000 rw-p 00000000 00:00 0 7fcd3372f000-7fcd33730000 ---p 00000000 00:00 0 7fcd33730000-7fcd33f30000 rw-p 00000000 00:00 0 7fcd33f30000-7fcd33f31000 ---p 00000000 00:00 0 7fcd33f31000-7fcd34731000 rw-p 00000000 00:00 0 7fcd34731000-7fcd34732000 ---p 00000000 00:00 0 7fcd34732000-7fcd34f32000 rw-p 00000000 00:00 0 7fcd34f32000-7fcd34f33000 ---p 00000000 00:00 0 7fcd34f33000-7fcd35733000 rw-p 00000000 00:00 0 7fcd35733000-7fcd35734000 ---p 00000000 00:00 0 7fcd35734000-7fcd35f34000 rw-p 00000000 00:00 0 7fcd35f34000-7fcd35f35000 ---p 00000000 00:00 0 7fcd35f35000-7fcd36735000 rw-p 00000000 00:00 0 7fcd36735000-7fcd36736000 ---p 00000000 00:00 0 7fcd36736000-7fcd36f36000 rw-p 00000000 00:00 0 7fcd36f36000-7fcd36f37000 ---p 00000000 00:00 0 7fcd36f37000-7fcd37737000 rw-p 00000000 00:00 0 7fcd37737000-7fcd37738000 ---p 00000000 00:00 0 7fcd37738000-7fcd37f38000 rw-p 00000000 00:00 0 7fcd37f38000-7fcd37f39000 ---p 00000000 00:00 0 7fcd37f39000-7fcd38739000 rw-p 00000000 00:00 0 7fcd38739000-7fcd3873a000 ---p 00000000 00:00 0 7fcd3873a000-7fcd38f3a000 rw-p 00000000 00:00 0 7fcd38f3a000-7fcd38f3b000 ---p 00000000 00:00 0 7fcd38f3b000-7fcd3973b000 rw-p 00000000 00:00 0 7fcd3973b000-7fcd3973c000 ---p 00000000 00:00 0 7fcd3973c000-7fcd39f3c000 rw-p 00000000 00:00 0 7fcd39f3c000-7fcd39f3d000 ---p 00000000 00:00 0 7fcd39f3d000-7fcd3a73d000 rw-p 00000000 00:00 0 7fcd3a73d000-7fcd3a73e000 ---p 00000000 00:00 0 7fcd3a73e000-7fcd3af3e000 rw-p 00000000 00:00 0 7fcd3af3e000-7fcd3af3f000 ---p 00000000 00:00 0 7fcd3af3f000-7fcd3b73f000 rw-p 00000000 00:00 0 7fcd3b73f000-7fcd3b740000 ---p 00000000 00:00 0 7fcd3b740000-7fcd3bf40000 rw-p 00000000 00:00 0 7fcd3bf40000-7fcd3bf41000 ---p 00000000 00:00 0 7fcd3bf41000-7fcd3c741000 rw-p 00000000 00:00 0 7fcd3c741000-7fcd3c742000 ---p 00000000 00:00 0 7fcd3c742000-7fcd3cf42000 rw-p 00000000 00:00 0 7fcd3cf42000-7fcd3cf43000 ---p 00000000 00:00 0 7fcd3cf43000-7fcd3d743000 rw-p 00000000 00:00 0 7fcd3d743000-7fcd3d744000 ---p 00000000 00:00 0 7fcd3d744000-7fcd3df44000 rw-p 00000000 00:00 0 7fcd3df44000-7fcd3df45000 ---p 00000000 00:00 0 7fcd3df45000-7fcd3e745000 rw-p 00000000 00:00 0 7fcd3e745000-7fcd3e746000 ---p 00000000 00:00 0 7fcd3e746000-7fcd3ef46000 rw-p 00000000 00:00 0 7fcd3ef46000-7fcd3ef47000 ---p 00000000 00:00 0 7fcd3ef47000-7fcd3f747000 rw-p 00000000 00:00 0 7fcd3f747000-7fcd3f748000 ---p 00000000 00:00 0 7fcd3f748000-7fcd3ff48000 rw-p 00000000 00:00 0 7fcd3ff48000-7fcd3ff49000 ---p 00000000 00:00 0 7fcd3ff49000-7fcd40749000 rw-p 00000000 00:00 0 7fcd40749000-7fcd4074a000 ---p 00000000 00:00 0 7fcd4074a000-7fcd40f4a000 rw-p 00000000 00:00 0 7fcd40f4a000-7fcd40f4b000 ---p 00000000 00:00 0 7fcd40f4b000-7fcd4174b000 rw-p 00000000 00:00 0 7fcd4174b000-7fcd4174c000 ---p 00000000 00:00 0 7fcd4174c000-7fcd41f4c000 rw-p 00000000 00:00 0 7fcd41f4c000-7fcd41f4d000 ---p 00000000 00:00 0 7fcd41f4d000-7fcd4274d000 rw-p 00000000 00:00 0 7fcd4274d000-7fcd4274e000 ---p 00000000 00:00 0 7fcd4274e000-7fcd42f4e000 rw-p 00000000 00:00 0 7fcd42f4e000-7fcd42f4f000 ---p 00000000 00:00 0 7fcd42f4f000-7fcd4374f000 rw-p 00000000 00:00 0 7fcd4374f000-7fcd43750000 ---p 00000000 00:00 0 7fcd43750000-7fcd43f50000 rw-p 00000000 00:00 0 7fcd43f50000-7fcd43f51000 ---p 00000000 00:00 0 7fcd43f51000-7fcd44751000 rw-p 00000000 00:00 0 7fcd44751000-7fcd44752000 ---p 00000000 00:00 0 7fcd44752000-7fcd44f52000 rw-p 00000000 00:00 0 7fcd44f52000-7fcd44f53000 ---p 00000000 00:00 0 7fcd44f53000-7fcd45753000 rw-p 00000000 00:00 0 7fcd45753000-7fcd45754000 ---p 00000000 00:00 0 7fcd45754000-7fcd45f54000 rw-p 00000000 00:00 0 7fcd45f54000-7fcd45f55000 ---p 00000000 00:00 0 7fcd45f55000-7fcd46755000 rw-p 00000000 00:00 0 7fcd46755000-7fcd46756000 ---p 00000000 00:00 0 7fcd46756000-7fcd46f56000 rw-p 00000000 00:00 0 7fcd46f56000-7fcd46f57000 ---p 00000000 00:00 0 7fcd46f57000-7fcd47757000 rw-p 00000000 00:00 0 7fcd47757000-7fcd47758000 ---p 00000000 00:00 0 7fcd47758000-7fcd47f58000 rw-p 00000000 00:00 0 7fcd47f58000-7fcd47f59000 ---p 00000000 00:00 0 7fcd47f59000-7fcd48759000 rw-p 00000000 00:00 0 7fcd48759000-7fcd4875a000 ---p 00000000 00:00 0 7fcd4875a000-7fcd48f5a000 rw-p 00000000 00:00 0 7fcd48f5a000-7fcd48f5b000 ---p 00000000 00:00 0 7fcd48f5b000-7fcd4975b000 rw-p 00000000 00:00 0 7fcd4975b000-7fcd4975c000 ---p 00000000 00:00 0 7fcd4975c000-7fcd49f5c000 rw-p 00000000 00:00 0 7fcd49f5c000-7fcd49f5d000 ---p 00000000 00:00 0 7fcd49f5d000-7fcd4a75d000 rw-p 00000000 00:00 0 7fcd4a75d000-7fcd4a75e000 ---p 00000000 00:00 0 7fcd4a75e000-7fcd4af5e000 rw-p 00000000 00:00 0 7fcd4af5e000-7fcd4af5f000 ---p 00000000 00:00 0 7fcd4af5f000-7fcd4b75f000 rw-p 00000000 00:00 0 7fcd4b75f000-7fcd4b760000 ---p 00000000 00:00 0 7fcd4b760000-7fcd4bf60000 rw-p 00000000 00:00 0 7fcd4bf60000-7fcd4bf61000 ---p 00000000 00:00 0 7fcd4bf61000-7fcd4c761000 rw-p 00000000 00:00 0 7fcd4c761000-7fcd4c762000 ---p 00000000 00:00 0 7fcd4c762000-7fcd4cf62000 rw-p 00000000 00:00 0 7fcd4cf62000-7fcd4cf63000 ---p 00000000 00:00 0 7fcd4cf63000-7fcd4d763000 rw-p 00000000 00:00 0 7fcd4d763000-7fcd4d764000 ---p 00000000 00:00 0 7fcd4d764000-7fcd4df64000 rw-p 00000000 00:00 0 7fcd4df64000-7fcd4df65000 ---p 00000000 00:00 0 7fcd4df65000-7fcd4e765000 rw-p 00000000 00:00 0 7fcd4e765000-7fcd4e766000 ---p 00000000 00:00 0 7fcd4e766000-7fcd4ef66000 rw-p 00000000 00:00 0 7fcd4ef66000-7fcd4ef67000 ---p 00000000 00:00 0 7fcd4ef67000-7fcd4f767000 rw-p 00000000 00:00 0 7fcd4f767000-7fcd4f768000 ---p 00000000 00:00 0 7fcd4f768000-7fcd4ff68000 rw-p 00000000 00:00 0 7fcd4ff68000-7fcd4ff69000 ---p 00000000 00:00 0 7fcd4ff69000-7fcd50769000 rw-p 00000000 00:00 0 7fcd50769000-7fcd5076a000 ---p 00000000 00:00 0 7fcd5076a000-7fcd50f6a000 rw-p 00000000 00:00 0 7fcd50f6a000-7fcd50f6b000 ---p 00000000 00:00 0 7fcd50f6b000-7fcd5176b000 rw-p 00000000 00:00 0 7fcd5176b000-7fcd5176c000 ---p 00000000 00:00 0 7fcd5176c000-7fcd51f6c000 rw-p 00000000 00:00 0 7fcd51f6c000-7fcd51f6d000 ---p 00000000 00:00 0 7fcd51f6d000-7fcd5276d000 rw-p 00000000 00:00 0 7fcd5276d000-7fcd5276e000 ---p 00000000 00:00 0 7fcd5276e000-7fcd52f6e000 rw-p 00000000 00:00 0 7fcd52f6e000-7fcd52f6f000 ---p 00000000 00:00 0 7fcd52f6f000-7fcd5376f000 rw-p 00000000 00:00 0 7fcd5376f000-7fcd53770000 ---p 00000000 00:00 0 7fcd53770000-7fcd53f70000 rw-p 00000000 00:00 0 7fcd53f70000-7fcd53f71000 ---p 00000000 00:00 0 7fcd53f71000-7fcd54771000 rw-p 00000000 00:00 0 7fcd54771000-7fcd54772000 ---p 00000000 00:00 0 7fcd54772000-7fcd54f72000 rw-p 00000000 00:00 0 7fcd54f72000-7fcd54f73000 ---p 00000000 00:00 0 7fcd54f73000-7fcd55773000 rw-p 00000000 00:00 0 7fcd55773000-7fcd55774000 ---p 00000000 00:00 0 7fcd55774000-7fcd55f74000 rw-p 00000000 00:00 0 7fcd55f74000-7fcd55f75000 ---p 00000000 00:00 0 7fcd55f75000-7fcd56775000 rw-p 00000000 00:00 0 7fcd56775000-7fcd56776000 ---p 00000000 00:00 0 7fcd56776000-7fcd56f76000 rw-p 00000000 00:00 0 7fcd56f76000-7fcd56f77000 ---p 00000000 00:00 0 7fcd56f77000-7fcd57777000 rw-p 00000000 00:00 0 7fcd57777000-7fcd57778000 ---p 00000000 00:00 0 7fcd57778000-7fcd57f78000 rw-p 00000000 00:00 0 7fcd57f78000-7fcd57f79000 ---p 00000000 00:00 0 7fcd57f79000-7fcd58779000 rw-p 00000000 00:00 0 7fcd58779000-7fcd5877a000 ---p 00000000 00:00 0 7fcd5877a000-7fcd58f7a000 rw-p 00000000 00:00 0 7fcd58f7a000-7fcd58f7b000 ---p 00000000 00:00 0 7fcd58f7b000-7fcd5977b000 rw-p 00000000 00:00 0 7fcd5977b000-7fcd5977c000 ---p 00000000 00:00 0 7fcd5977c000-7fcd59f7c000 rw-p 00000000 00:00 0 7fcd59f7c000-7fcd59f7d000 ---p 00000000 00:00 0 7fcd59f7d000-7fcd5a77d000 rw-p 00000000 00:00 0 7fcd5a77d000-7fcd5a77e000 ---p 00000000 00:00 0 7fcd5a77e000-7fcd5af7e000 rw-p 00000000 00:00 0 7fcd5af7e000-7fcd5af7f000 ---p 00000000 00:00 0 7fcd5af7f000-7fcd5b77f000 rw-p 00000000 00:00 0 7fcd5b77f000-7fcd5b780000 ---p 00000000 00:00 0 7fcd5b780000-7fcd5bf80000 rw-p 00000000 00:00 0 7fcd5bf80000-7fcd5bf81000 ---p 00000000 00:00 0 7fcd5bf81000-7fcd5c781000 rw-p 00000000 00:00 0 7fcd5c781000-7fcd5c782000 ---p 00000000 00:00 0 7fcd5c782000-7fcd5cf82000 rw-p 00000000 00:00 0 7fcd5cf82000-7fcd5cf83000 ---p 00000000 00:00 0 7fcd5cf83000-7fcd5d783000 rw-p 00000000 00:00 0 7fcd5d783000-7fcd5d784000 ---p 00000000 00:00 0 7fcd5d784000-7fcd5df84000 rw-p 00000000 00:00 0 7fcd5df84000-7fcd5df85000 ---p 00000000 00:00 0 7fcd5df85000-7fcd5e785000 rw-p 00000000 00:00 0 7fcd5e785000-7fcd5e786000 ---p 00000000 00:00 0 7fcd5e786000-7fcd5ef86000 rw-p 00000000 00:00 0 7fcd5ef86000-7fcd5ef87000 ---p 00000000 00:00 0 7fcd5ef87000-7fcd5f787000 rw-p 00000000 00:00 0 7fcd5f787000-7fcd5f788000 ---p 00000000 00:00 0 7fcd5f788000-7fcd5ff88000 rw-p 00000000 00:00 0 7fcd5ff88000-7fcd5ff89000 ---p 00000000 00:00 0 7fcd5ff89000-7fcd60789000 rw-p 00000000 00:00 0 7fcd60789000-7fcd6078a000 ---p 00000000 00:00 0 7fcd6078a000-7fcd60f8a000 rw-p 00000000 00:00 0 7fcd60f8a000-7fcd60f8b000 ---p 00000000 00:00 0 7fcd60f8b000-7fcd6178b000 rw-p 00000000 00:00 0 7fcd6178b000-7fcd6178c000 ---p 00000000 00:00 0 7fcd6178c000-7fcd61f8c000 rw-p 00000000 00:00 0 7fcd61f8c000-7fcd61f8d000 ---p 00000000 00:00 0 7fcd61f8d000-7fcd6278d000 rw-p 00000000 00:00 0 7fcd6278d000-7fcd6278e000 ---p 00000000 00:00 0 7fcd6278e000-7fcd62f8e000 rw-p 00000000 00:00 0 7fcd62f8e000-7fcd62f8f000 ---p 00000000 00:00 0 7fcd62f8f000-7fcd6378f000 rw-p 00000000 00:00 0 7fcd6378f000-7fcd63790000 ---p 00000000 00:00 0 7fcd63790000-7fcd63f90000 rw-p 00000000 00:00 0 7fcd63f90000-7fcd63f91000 ---p 00000000 00:00 0 7fcd63f91000-7fcd64791000 rw-p 00000000 00:00 0 7fcd64791000-7fcd64792000 ---p 00000000 00:00 0 7fcd64792000-7fcd64f92000 rw-p 00000000 00:00 0 7fcd64f92000-7fcd64f93000 ---p 00000000 00:00 0 7fcd64f93000-7fcd65793000 rw-p 00000000 00:00 0 7fcd65793000-7fcd65794000 ---p 00000000 00:00 0 7fcd65794000-7fcd65f94000 rw-p 00000000 00:00 0 7fcd65f94000-7fcd65f95000 ---p 00000000 00:00 0 7fcd65f95000-7fcd66795000 rw-p 00000000 00:00 0 7fcd66795000-7fcd66796000 ---p 00000000 00:00 0 7fcd66796000-7fcd66f96000 rw-p 00000000 00:00 0 7fcd66f96000-7fcd66f97000 ---p 00000000 00:00 0 7fcd66f97000-7fcd67797000 rw-p 00000000 00:00 0 7fcd67797000-7fcd67798000 ---p 00000000 00:00 0 7fcd67798000-7fcd67f98000 rw-p 00000000 00:00 0 7fcd67f98000-7fcd67f99000 ---p 00000000 00:00 0 7fcd67f99000-7fcd68799000 rw-p 00000000 00:00 0 7fcd68799000-7fcd6879a000 ---p 00000000 00:00 0 7fcd6879a000-7fcd68f9a000 rw-p 00000000 00:00 0 7fcd68f9a000-7fcd68f9b000 ---p 00000000 00:00 0 7fcd68f9b000-7fcd6979b000 rw-p 00000000 00:00 0 7fcd6979b000-7fcd6979c000 ---p 00000000 00:00 0 7fcd6979c000-7fcd69f9c000 rw-p 00000000 00:00 0 7fcd69f9c000-7fcd69f9d000 ---p 00000000 00:00 0 7fcd69f9d000-7fcd6a79d000 rw-p 00000000 00:00 0 7fcd6a79d000-7fcd6a79e000 ---p 00000000 00:00 0 7fcd6a79e000-7fcd6af9e000 rw-p 00000000 00:00 0 7fcd6af9e000-7fcd6af9f000 ---p 00000000 00:00 0 7fcd6af9f000-7fcd6b79f000 rw-p 00000000 00:00 0 7fcd6b79f000-7fcd6b7a0000 ---p 00000000 00:00 0 7fcd6b7a0000-7fcd6bfa0000 rw-p 00000000 00:00 0 7fcd6bfa0000-7fcd6bfa1000 ---p 00000000 00:00 0 7fcd6bfa1000-7fcd6c7a1000 rw-p 00000000 00:00 0 7fcd6c7a1000-7fcd6c7a2000 ---p 00000000 00:00 0 7fcd6c7a2000-7fcd6cfa2000 rw-p 00000000 00:00 0 7fcd6cfa2000-7fcd6cfa3000 ---p 00000000 00:00 0 7fcd6cfa3000-7fcd6d7a3000 rw-p 00000000 00:00 0 7fcd6d7a3000-7fcd6d7a4000 ---p 00000000 00:00 0 7fcd6d7a4000-7fcd6dfa4000 rw-p 00000000 00:00 0 7fcd6dfa4000-7fcd6dfa5000 ---p 00000000 00:00 0 7fcd6dfa5000-7fcd6e7a5000 rw-p 00000000 00:00 0 7fcd6e7a5000-7fcd6e7a6000 ---p 00000000 00:00 0 7fcd6e7a6000-7fcd6efa6000 rw-p 00000000 00:00 0 7fcd6efa6000-7fcd6efa7000 ---p 00000000 00:00 0 7fcd6efa7000-7fcd6f7a7000 rw-p 00000000 00:00 0 7fcd6f7a7000-7fcd6f7a8000 ---p 00000000 00:00 0 7fcd6f7a8000-7fcd6ffa8000 rw-p 00000000 00:00 0 7fcd6ffa8000-7fcd6ffa9000 ---p 00000000 00:00 0 7fcd6ffa9000-7fcd707a9000 rw-p 00000000 00:00 0 7fcd707a9000-7fcd707aa000 ---p 00000000 00:00 0 7fcd707aa000-7fcd70faa000 rw-p 00000000 00:00 0 7fcd70faa000-7fcd70fab000 ---p 00000000 00:00 0 7fcd70fab000-7fcd717ab000 rw-p 00000000 00:00 0 7fcd717ab000-7fcd717ac000 ---p 00000000 00:00 0 7fcd717ac000-7fcd71fac000 rw-p 00000000 00:00 0 7fcd71fac000-7fcd71fad000 ---p 00000000 00:00 0 7fcd71fad000-7fcd727ad000 rw-p 00000000 00:00 0 7fcd727ad000-7fcd727ae000 ---p 00000000 00:00 0 7fcd727ae000-7fcd72fae000 rw-p 00000000 00:00 0 7fcd72fae000-7fcd72faf000 ---p 00000000 00:00 0 7fcd72faf000-7fcd737af000 rw-p 00000000 00:00 0 7fcd737af000-7fcd737b0000 ---p 00000000 00:00 0 7fcd737b0000-7fcd73fb0000 rw-p 00000000 00:00 0 7fcd73fb0000-7fcd73fb1000 ---p 00000000 00:00 0 7fcd73fb1000-7fcd747b1000 rw-p 00000000 00:00 0 7fcd747b1000-7fcd747b2000 ---p 00000000 00:00 0 7fcd747b2000-7fcd74fb2000 rw-p 00000000 00:00 0 7fcd74fb2000-7fcd74fb3000 ---p 00000000 00:00 0 7fcd74fb3000-7fcd757b3000 rw-p 00000000 00:00 0 7fcd757b3000-7fcd757b4000 ---p 00000000 00:00 0 7fcd757b4000-7fcd75fb4000 rw-p 00000000 00:00 0 7fcd75fb4000-7fcd75fb5000 ---p 00000000 00:00 0 7fcd75fb5000-7fcd767b5000 rw-p 00000000 00:00 0 7fcd767b5000-7fcd767b6000 ---p 00000000 00:00 0 7fcd767b6000-7fcd76fb6000 rw-p 00000000 00:00 0 7fcd76fb6000-7fcd76fb7000 ---p 00000000 00:00 0 7fcd76fb7000-7fcd777b7000 rw-p 00000000 00:00 0 7fcd777b7000-7fcd777b8000 ---p 00000000 00:00 0 7fcd777b8000-7fcd77fb8000 rw-p 00000000 00:00 0 7fcd77fb8000-7fcd77fb9000 ---p 00000000 00:00 0 7fcd77fb9000-7fcd787b9000 rw-p 00000000 00:00 0 7fcd787b9000-7fcd787ba000 ---p 00000000 00:00 0 7fcd787ba000-7fcd78fba000 rw-p 00000000 00:00 0 7fcd78fba000-7fcd78fbb000 ---p 00000000 00:00 0 7fcd78fbb000-7fcd797bb000 rw-p 00000000 00:00 0 7fcd797bb000-7fcd797bc000 ---p 00000000 00:00 0 7fcd797bc000-7fcd79fbc000 rw-p 00000000 00:00 0 7fcd79fbc000-7fcd79fbd000 ---p 00000000 00:00 0 7fcd79fbd000-7fcd7a7bd000 rw-p 00000000 00:00 0 7fcd7a7bd000-7fcd7a7be000 ---p 00000000 00:00 0 7fcd7a7be000-7fcd7afbe000 rw-p 00000000 00:00 0 7fcd7afbe000-7fcd7afbf000 ---p 00000000 00:00 0 7fcd7afbf000-7fcd7b7bf000 rw-p 00000000 00:00 0 7fcd7b7bf000-7fcd7b7c0000 ---p 00000000 00:00 0 7fcd7b7c0000-7fcd7bfc0000 rw-p 00000000 00:00 0 7fcd7bfc0000-7fcd7bfc1000 ---p 00000000 00:00 0 7fcd7bfc1000-7fcd7c7c1000 rw-p 00000000 00:00 0 7fcd7c7c1000-7fcd7c7c2000 ---p 00000000 00:00 0 7fcd7c7c2000-7fcd7cfc2000 rw-p 00000000 00:00 0 7fcd7cfc2000-7fcd7cfc3000 ---p 00000000 00:00 0 7fcd7cfc3000-7fcd7d7c3000 rw-p 00000000 00:00 0 7fcd7d7c3000-7fcd7d7c4000 ---p 00000000 00:00 0 7fcd7d7c4000-7fcd7dfc4000 rw-p 00000000 00:00 0 7fcd7dfc4000-7fcd7dfc5000 ---p 00000000 00:00 0 7fcd7dfc5000-7fcd7e7c5000 rw-p 00000000 00:00 0 7fcd7e7c5000-7fcd7e7c6000 ---p 00000000 00:00 0 7fcd7e7c6000-7fcd7efc6000 rw-p 00000000 00:00 0 7fcd7efc6000-7fcd7efc7000 ---p 00000000 00:00 0 7fcd7efc7000-7fcd7f7c7000 rw-p 00000000 00:00 0 7fcd7f7c7000-7fcd7f7c8000 ---p 00000000 00:00 0 7fcd7f7c8000-7fcd7ffc8000 rw-p 00000000 00:00 0 7fcd7ffc8000-7fcd7ffc9000 ---p 00000000 00:00 0 7fcd7ffc9000-7fcd807c9000 rw-p 00000000 00:00 0 7fcd807c9000-7fcd807ca000 ---p 00000000 00:00 0 7fcd807ca000-7fcd80fca000 rw-p 00000000 00:00 0 7fcd80fca000-7fcd80fcb000 ---p 00000000 00:00 0 7fcd80fcb000-7fcd817cb000 rw-p 00000000 00:00 0 7fcd817cb000-7fcd817cc000 ---p 00000000 00:00 0 7fcd817cc000-7fcd81fcc000 rw-p 00000000 00:00 0 7fcd81fcc000-7fcd81fcd000 ---p 00000000 00:00 0 7fcd81fcd000-7fcd827cd000 rw-p 00000000 00:00 0 7fcd827cd000-7fcd827ce000 ---p 00000000 00:00 0 7fcd827ce000-7fcd82fce000 rw-p 00000000 00:00 0 7fcd82fce000-7fcd82fcf000 ---p 00000000 00:00 0 7fcd82fcf000-7fcd837cf000 rw-p 00000000 00:00 0 7fcd837cf000-7fcd837d0000 ---p 00000000 00:00 0 7fcd837d0000-7fcd83fd0000 rw-p 00000000 00:00 0 7fcd83fd0000-7fcd83fd1000 ---p 00000000 00:00 0 7fcd83fd1000-7fcd847d1000 rw-p 00000000 00:00 0 7fcd847d1000-7fcd847d2000 ---p 00000000 00:00 0 7fcd847d2000-7fcd84fd2000 rw-p 00000000 00:00 0 7fcd84fd2000-7fcd84fd3000 ---p 00000000 00:00 0 7fcd84fd3000-7fcd857d3000 rw-p 00000000 00:00 0 7fcd857d3000-7fcd857d4000 ---p 00000000 00:00 0 7fcd857d4000-7fcd85fd4000 rw-p 00000000 00:00 0 7fcd85fd4000-7fcd85fd5000 ---p 00000000 00:00 0 7fcd85fd5000-7fcd867d5000 rw-p 00000000 00:00 0 7fcd867d5000-7fcd867d6000 ---p 00000000 00:00 0 7fcd867d6000-7fcd86fd6000 rw-p 00000000 00:00 0 7fcd86fd6000-7fcd86fd7000 ---p 00000000 00:00 0 7fcd86fd7000-7fcd877d7000 rw-p 00000000 00:00 0 7fcd877d7000-7fcd877d8000 ---p 00000000 00:00 0 7fcd877d8000-7fcd87fd8000 rw-p 00000000 00:00 0 7fcd87fd8000-7fcd87fd9000 ---p 00000000 00:00 0 7fcd87fd9000-7fcd887d9000 rw-p 00000000 00:00 0 7fcd887d9000-7fcd887da000 ---p 00000000 00:00 0 7fcd887da000-7fcd88fda000 rw-p 00000000 00:00 0 7fcd88fda000-7fcd88fdb000 ---p 00000000 00:00 0 7fcd88fdb000-7fcd897db000 rw-p 00000000 00:00 0 7fcd897db000-7fcd897dc000 ---p 00000000 00:00 0 7fcd897dc000-7fcd89fdc000 rw-p 00000000 00:00 0 7fcd89fdc000-7fcd89fdd000 ---p 00000000 00:00 0 7fcd89fdd000-7fcd8a7dd000 rw-p 00000000 00:00 0 7fcd8a7dd000-7fcd8a7de000 ---p 00000000 00:00 0 7fcd8a7de000-7fcd8afde000 rw-p 00000000 00:00 0 7fcd8afde000-7fcd8afdf000 ---p 00000000 00:00 0 7fcd8afdf000-7fcd8b7df000 rw-p 00000000 00:00 0 7fcd8b7df000-7fcd8b7e0000 ---p 00000000 00:00 0 7fcd8b7e0000-7fcd8bfe0000 rw-p 00000000 00:00 0 7fcd8bfe0000-7fcd8bfe1000 ---p 00000000 00:00 0 7fcd8bfe1000-7fcd8c7e1000 rw-p 00000000 00:00 0 7fcd8c7e1000-7fcd8c7e2000 ---p 00000000 00:00 0 7fcd8c7e2000-7fcd8cfe2000 rw-p 00000000 00:00 0 7fcd8cfe2000-7fcd8cfe3000 ---p 00000000 00:00 0 7fcd8cfe3000-7fcd8d7e3000 rw-p 00000000 00:00 0 7fcd8d7e3000-7fcd8d7e4000 ---p 00000000 00:00 0 7fcd8d7e4000-7fcd8dfe4000 rw-p 00000000 00:00 0 7fcd8dfe4000-7fcd8dfe5000 ---p 00000000 00:00 0 7fcd8dfe5000-7fcd8e7e5000 rw-p 00000000 00:00 0 7fcd8e7e5000-7fcd8e7e6000 ---p 00000000 00:00 0 7fcd8e7e6000-7fcd8efe6000 rw-p 00000000 00:00 0 7fcd8efe6000-7fcd8efe7000 ---p 00000000 00:00 0 7fcd8efe7000-7fcd8f7e7000 rw-p 00000000 00:00 0 7fcd8f7e7000-7fcd8f7e8000 ---p 00000000 00:00 0 7fcd8f7e8000-7fcd8ffe8000 rw-p 00000000 00:00 0 7fcd8ffe8000-7fcd8ffe9000 ---p 00000000 00:00 0 7fcd8ffe9000-7fcd907e9000 rw-p 00000000 00:00 0 7fcd907e9000-7fcd907ea000 ---p 00000000 00:00 0 7fcd907ea000-7fcd90fea000 rw-p 00000000 00:00 0 7fcd90fea000-7fcd90feb000 ---p 00000000 00:00 0 7fcd90feb000-7fcd917eb000 rw-p 00000000 00:00 0 7fcd917eb000-7fcd917ec000 ---p 00000000 00:00 0 7fcd917ec000-7fcd91fec000 rw-p 00000000 00:00 0 7fcd91fec000-7fcd91fed000 ---p 00000000 00:00 0 7fcd91fed000-7fcd927ed000 rw-p 00000000 00:00 0 7fcd927ed000-7fcd927ee000 ---p 00000000 00:00 0 7fcd927ee000-7fcd92fee000 rw-p 00000000 00:00 0 7fcd92fee000-7fcd92fef000 ---p 00000000 00:00 0 7fcd92fef000-7fcd937ef000 rw-p 00000000 00:00 0 7fcd937ef000-7fcd937f0000 ---p 00000000 00:00 0 7fcd937f0000-7fcd93ff0000 rw-p 00000000 00:00 0 7fcd93ff0000-7fcd93ff1000 ---p 00000000 00:00 0 7fcd93ff1000-7fcd947f1000 rw-p 00000000 00:00 0 7fcd947f1000-7fcd947f2000 ---p 00000000 00:00 0 7fcd947f2000-7fcd94ff2000 rw-p 00000000 00:00 0 7fcd94ff2000-7fcd94ff3000 ---p 00000000 00:00 0 7fcd94ff3000-7fcd957f3000 rw-p 00000000 00:00 0 7fcd957f3000-7fcd957f4000 ---p 00000000 00:00 0 7fcd957f4000-7fcd95ff4000 rw-p 00000000 00:00 0 7fcd95ff4000-7fcd95ff5000 ---p 00000000 00:00 0 7fcd95ff5000-7fcd967f5000 rw-p 00000000 00:00 0 7fcd967f5000-7fcd967f6000 ---p 00000000 00:00 0 7fcd967f6000-7fcd96ff6000 rw-p 00000000 00:00 0 7fcd96ff6000-7fcd96ff7000 ---p 00000000 00:00 0 7fcd96ff7000-7fcd977f7000 rw-p 00000000 00:00 0 7fcd977f7000-7fcd977f8000 ---p 00000000 00:00 0 7fcd977f8000-7fcd97ff8000 rw-p 00000000 00:00 0 7fcd97ff8000-7fcd97ff9000 ---p 00000000 00:00 0 7fcd97ff9000-7fcd987f9000 rw-p 00000000 00:00 0 7fcd987f9000-7fcd987fa000 ---p 00000000 00:00 0 7fcd987fa000-7fcd98ffa000 rw-p 00000000 00:00 0 7fcd98ffa000-7fcd98ffb000 ---p 00000000 00:00 0 7fcd98ffb000-7fcd997fb000 rw-p 00000000 00:00 0 7fcd997fb000-7fcd997fc000 ---p 00000000 00:00 0 7fcd997fc000-7fcd99ffc000 rw-p 00000000 00:00 0 7fcd99ffc000-7fcd99ffd000 ---p 00000000 00:00 0 7fcd99ffd000-7fcd9a7fd000 rw-p 00000000 00:00 0 7fcd9a7fd000-7fcd9a7fe000 ---p 00000000 00:00 0 7fcd9a7fe000-7fcd9affe000 rw-p 00000000 00:00 0 7fcd9affe000-7fcd9afff000 ---p 00000000 00:00 0 7fcd9afff000-7fcd9b7ff000 rw-p 00000000 00:00 0 7fcd9b7ff000-7fcd9b800000 ---p 00000000 00:00 0 7fcd9b800000-7fcd9c000000 rw-p 00000000 00:00 0 7fcd9c000000-7fcd9c021000 rw-p 00000000 00:00 0 7fcd9c021000-7fcda0000000 ---p 00000000 00:00 0 7fcda0000000-7fcda0021000 rw-p 00000000 00:00 0 7fcda0021000-7fcda4000000 ---p 00000000 00:00 0 7fcda4000000-7fcda4021000 rw-p 00000000 00:00 0 7fcda4021000-7fcda8000000 ---p 00000000 00:00 0 7fcda8000000-7fcda967f000 rw-p 00000000 00:00 0 7fcda967f000-7fcdac000000 ---p 00000000 00:00 0 7fcdac000000-7fcdafc81000 rw-p 00000000 00:00 0 7fcdafc81000-7fcdb0000000 ---p 00000000 00:00 0 7fcdb0000000-7fcdb1880000 rw-p 00000000 00:00 0 7fcdb1880000-7fcdb4000000 ---p 00000000 00:00 0 7fcdb4000000-7fcdb569c000 rw-p 00000000 00:00 0 7fcdb569c000-7fcdb8000000 ---p 00000000 00:00 0 7fcdb8000000-7fcdb8536000 rw-p 00000000 00:00 0 7fcdb8536000-7fcdbc000000 ---p 00000000 00:00 0 7fcdbc000000-7fcdc0000000 rw-p 00000000 00:00 0 7fcdc0000000-7fcdc0021000 rw-p 00000000 00:00 0 7fcdc0021000-7fcdc4000000 ---p 00000000 00:00 0 7fcdc4000000-7fcdc4038000 rw-p 00000000 00:00 0 7fcdc4038000-7fcdc8000000 ---p 00000000 00:00 0 7fcdc8000000-7fcdc8057000 rw-p 00000000 00:00 0 7fcdc8057000-7fcdcc000000 ---p 00000000 00:00 0 7fcdcc000000-7fcdcc03e000 rw-p 00000000 00:00 0 7fcdcc03e000-7fcdd0000000 ---p 00000000 00:00 0 7fcdd0000000-7fcdd003c000 rw-p 00000000 00:00 0 7fcdd003c000-7fcdd4000000 ---p 00000000 00:00 0 7fcdd4000000-7fcdd403e000 rw-p 00000000 00:00 0 7fcdd403e000-7fcdd8000000 ---p 00000000 00:00 0 7fcdd8000000-7fcdd857d000 rw-p 00000000 00:00 0 7fcdd857d000-7fcddc000000 ---p 00000000 00:00 0 7fcddc000000-7fcddcff0000 rw-p 00000000 00:00 0 7fcddcff0000-7fcddd000000 ---p 00000000 00:00 0 7fcddd000000-7fcdde530000 rw-p 00000000 00:00 0 7fcdde530000-7fcde0000000 ---p 00000000 00:00 0 7fcde0000000-7fcde0d45000 rw-p 00000000 00:00 0 7fcde0d45000-7fcde4000000 ---p 00000000 00:00 0 7fcde4000000-7fcde5464000 rw-p 00000000 00:00 0 7fcde5464000-7fcde8000000 ---p 00000000 00:00 0 7fcde8000000-7fcde8356000 rw-p 00000000 00:00 0 7fcde8356000-7fcdec000000 ---p 00000000 00:00 0 7fcdec000000-7fcdec021000 rw-p 00000000 00:00 0 7fcdec021000-7fcdf0000000 ---p 00000000 00:00 0 7fcdf0000000-7fcdf00d4000 rw-p 00000000 00:00 0 7fcdf00d4000-7fcdf4000000 ---p 00000000 00:00 0 7fcdf4000000-7fcdf4214000 rw-p 00000000 00:00 0 7fcdf4214000-7fcdf8000000 ---p 00000000 00:00 0 7fcdf8000000-7fcdf8021000 rw-p 00000000 00:00 0 7fcdf8021000-7fcdfc000000 ---p 00000000 00:00 0 7fcdfc000000-7fcdfc021000 rw-p 00000000 00:00 0 7fcdfc021000-7fce00000000 ---p 00000000 00:00 0 7fce00000000-7fce03ef0000 rw-p 00000000 00:00 0 7fce03ef0000-7fce04000000 rw-p 00000000 00:00 0 7fce04000000-7fce04889000 rw-p 00000000 00:00 0 7fce04889000-7fce08000000 ---p 00000000 00:00 0 7fce08000000-7fce08021000 rw-p 00000000 00:00 0 7fce08021000-7fce0c000000 ---p 00000000 00:00 0 7fce0c000000-7fce0c0e8000 rw-p 00000000 00:00 0 7fce0c0e8000-7fce10000000 ---p 00000000 00:00 0 7fce10000000-7fce10021000 rw-p 00000000 00:00 0 7fce10021000-7fce14000000 ---p 00000000 00:00 0 7fce14000000-7fce15410000 rw-p 00000000 00:00 0 7fce15410000-7fce18000000 ---p 00000000 00:00 0 7fce18000000-7fce18475000 rw-p 00000000 00:00 0 7fce18475000-7fce1c000000 ---p 00000000 00:00 0 7fce1c000000-7fce1c3ac000 rw-p 00000000 00:00 0 7fce1c3ac000-7fce20000000 ---p 00000000 00:00 0 7fce20000000-7fce20723000 rw-p 00000000 00:00 0 7fce20723000-7fce24000000 ---p 00000000 00:00 0 7fce24000000-7fce24401000 rw-p 00000000 00:00 0 7fce24401000-7fce28000000 ---p 00000000 00:00 0 7fce28000000-7fce285c5000 rw-p 00000000 00:00 0 7fce285c5000-7fce2c000000 ---p 00000000 00:00 0 7fce2c000000-7fce2d52e000 rw-p 00000000 00:00 0 7fce2d52e000-7fce30000000 ---p 00000000 00:00 0 7fce30000000-7fce3037f000 rw-p 00000000 00:00 0 7fce3037f000-7fce34000000 ---p 00000000 00:00 0 7fce34000000-7fce34517000 rw-p 00000000 00:00 0 7fce34517000-7fce38000000 ---p 00000000 00:00 0 7fce38000000-7fce381ee000 rw-p 00000000 00:00 0 7fce381ee000-7fce3c000000 ---p 00000000 00:00 0 7fce3c000000-7fce3c021000 rw-p 00000000 00:00 0 7fce3c021000-7fce40000000 ---p 00000000 00:00 0 7fce40000000-7fce40428000 rw-p 00000000 00:00 0 7fce40428000-7fce44000000 ---p 00000000 00:00 0 7fce44000000-7fce440f0000 rw-p 00000000 00:00 0 7fce440f0000-7fce441f0000 rw-p 00000000 00:00 0 7fce441f0000-7fce44570000 rw-p 00000000 00:00 0 7fce44570000-7fce445f0000 rw-p 00000000 00:00 0 7fce445f0000-7fce447b0000 rw-p 00000000 00:00 0 7fce447b0000-7fce447f0000 rw-p 00000000 00:00 0 7fce447f0000-7fce448f0000 rw-p 00000000 00:00 0 7fce448f0000-7fce449f0000 rw-p 00000000 00:00 0 7fce449f0000-7fce44f70000 rw-p 00000000 00:00 0 7fce44f70000-7fce44ff0000 rw-p 00000000 00:00 0 7fce44ff0000-7fce454f0000 rw-p 00000000 00:00 0 7fce454f0000-7fce455f0000 rw-p 00000000 00:00 0 7fce455f0000-7fce47cf0000 rw-p 00000000 00:00 0 7fce47cf0000-7fce47df0000 rw-p 00000000 00:00 0 7fce47df0000-7fce48000000 rw-p 00000000 00:00 0 7fce48000000-7fce4807d000 rw-p 00000000 00:00 0 7fce4807d000-7fce4c000000 ---p 00000000 00:00 0 7fce4c000000-7fce4c021000 rw-p 00000000 00:00 0 7fce4c021000-7fce50000000 ---p 00000000 00:00 0 7fce50000000-7fce5068d000 rw-p 00000000 00:00 0 7fce5068d000-7fce54000000 ---p 00000000 00:00 0 7fce54000000-7fce55ae5000 rw-p 00000000 00:00 0 7fce55ae5000-7fce58000000 ---p 00000000 00:00 0 7fce58000000-7fce58121000 rw-p 00000000 00:00 0 7fce58121000-7fce5c000000 ---p 00000000 00:00 0 7fce5c000000-7fce5c14f000 rw-p 00000000 00:00 0 7fce5c14f000-7fce60000000 ---p 00000000 00:00 0 7fce60000000-7fce60048000 rw-p 00000000 00:00 0 7fce60048000-7fce64000000 ---p 00000000 00:00 0 7fce64000000-7fce64109000 rw-p 00000000 00:00 0 7fce64109000-7fce68000000 ---p 00000000 00:00 0 7fce68000000-7fce68021000 rw-p 00000000 00:00 0 7fce68021000-7fce6c000000 ---p 00000000 00:00 0 7fce6c000000-7fce6c1c5000 rw-p 00000000 00:00 0 7fce6c1c5000-7fce70000000 ---p 00000000 00:00 0 7fce70000000-7fce70021000 rw-p 00000000 00:00 0 7fce70021000-7fce74000000 ---p 00000000 00:00 0 7fce74000000-7fce74054000 rw-p 00000000 00:00 0 7fce74054000-7fce78000000 ---p 00000000 00:00 0 7fce78000000-7fce78026000 rw-p 00000000 00:00 0 7fce78026000-7fce7c000000 ---p 00000000 00:00 0 7fce7c000000-7fce7c022000 rw-p 00000000 00:00 0 7fce7c022000-7fce80000000 ---p 00000000 00:00 0 7fce80000000-7fce82111000 rw-p 00000000 00:00 0 7fce82111000-7fce84000000 ---p 00000000 00:00 0 7fce84000000-7fce84034000 rw-p 00000000 00:00 0 7fce84034000-7fce88000000 ---p 00000000 00:00 0 7fce88000000-7fce8a01f000 rw-p 00000000 00:00 0 7fce8a01f000-7fce8c000000 ---p 00000000 00:00 0 7fce8c000000-7fce8c021000 rw-p 00000000 00:00 0 7fce8c021000-7fce90000000 ---p 00000000 00:00 0 7fce90000000-7fce9101a000 rw-p 00000000 00:00 0 7fce9101a000-7fce94000000 ---p 00000000 00:00 0 7fce94000000-7fce94021000 rw-p 00000000 00:00 0 7fce94021000-7fce98000000 ---p 00000000 00:00 0 7fce98000000-7fce98021000 rw-p 00000000 00:00 0 7fce98021000-7fce9c000000 ---p 00000000 00:00 0 7fce9c000000-7fce9e3e9000 rw-p 00000000 00:00 0 7fce9e3e9000-7fcea0000000 ---p 00000000 00:00 0 7fcea0000000-7fcea0021000 rw-p 00000000 00:00 0 7fcea0021000-7fcea4000000 ---p 00000000 00:00 0 7fcea4000000-7fcea42fd000 rw-p 00000000 00:00 0 7fcea42fd000-7fcea8000000 ---p 00000000 00:00 0 7fcea8000000-7fcea8021000 rw-p 00000000 00:00 0 7fcea8021000-7fceac000000 ---p 00000000 00:00 0 7fceac000000-7fceac021000 rw-p 00000000 00:00 0 7fceac021000-7fceb0000000 ---p 00000000 00:00 0 7fceb0000000-7fceb00ef000 rw-p 00000000 00:00 0 7fceb00ef000-7fceb4000000 ---p 00000000 00:00 0 7fceb42e2000-7fceb42e3000 ---p 00000000 00:00 0 7fceb42e3000-7fceb42e7000 ---p 00000000 00:00 0 7fceb42e7000-7fceb4de4000 rw-p 00000000 00:00 0 7fceb4ee1000-7fceb4ee2000 ---p 00000000 00:00 0 7fceb4ee2000-7fceb4ee6000 ---p 00000000 00:00 0 7fceb4ee6000-7fceb4fe2000 rw-p 00000000 00:00 0 7fceb4fe2000-7fceb4fe3000 ---p 00000000 00:00 0 7fceb4fe3000-7fceb4fe7000 ---p 00000000 00:00 0 7fceb4fe7000-7fceb50e3000 rw-p 00000000 00:00 0 7fceb50e3000-7fceb50e4000 ---p 00000000 00:00 0 7fceb50e4000-7fceb50e8000 ---p 00000000 00:00 0 7fceb50e8000-7fceb51e4000 rw-p 00000000 00:00 0 7fceb51e4000-7fceb51e5000 ---p 00000000 00:00 0 7fceb51e5000-7fceb51e9000 ---p 00000000 00:00 0 7fceb51e9000-7fceb5ce7000 rw-p 00000000 00:00 0 7fceb5ce7000-7fceb5d6d000 r--p 00000000 00:35 5 /tmp/libgdx?/12cf652/libKrunchJni64.so 7fceb5d6d000-7fceb5ea5000 r-xp 00086000 00:35 5 /tmp/libgdx?/12cf652/libKrunchJni64.so 7fceb5ea5000-7fceb5eef000 r--p 001be000 00:35 5 /tmp/libgdx?/12cf652/libKrunchJni64.so 7fceb5eef000-7fceb5ef0000 ---p 00208000 00:35 5 /tmp/libgdx?/12cf652/libKrunchJni64.so 7fceb5ef0000-7fceb5efa000 r--p 00208000 00:35 5 /tmp/libgdx?/12cf652/libKrunchJni64.so 7fceb5efa000-7fceb5efc000 rw-p 00212000 00:35 5 /tmp/libgdx?/12cf652/libKrunchJni64.so 7fceb5efc000-7fceb5eff000 rw-p 00000000 00:00 0 7fceb5eff000-7fceb5f00000 ---p 00000000 00:00 0 7fceb5f00000-7fceb5f04000 ---p 00000000 00:00 0 7fceb5f04000-7fceb6000000 rw-p 00000000 00:00 0 7fceb6000000-7fceb6011000 r-xp 00000000 00:35 2 /tmp/libnetty_transport_native_epoll_x86_6412819734511355330687.so (deleted) 7fceb6011000-7fceb6210000 ---p 00011000 00:35 2 /tmp/libnetty_transport_native_epoll_x86_6412819734511355330687.so (deleted) 7fceb6210000-7fceb6213000 r--p 00010000 00:35 2 /tmp/libnetty_transport_native_epoll_x86_6412819734511355330687.so (deleted) 7fceb6213000-7fceb6214000 rw-p 00000000 00:00 0 7fceb62f3000-7fceb62f4000 ---p 00000000 00:00 0 7fceb62f4000-7fceb62f8000 ---p 00000000 00:00 0 7fceb62f8000-7fceb63f4000 rw-p 00000000 00:00 0 7fceb63f4000-7fceb63f5000 ---p 00000000 00:00 0 7fceb63f5000-7fceb63f9000 ---p 00000000 00:00 0 7fceb63f9000-7fceb64f5000 rw-p 00000000 00:00 0 7fceb64f5000-7fceb64f6000 ---p 00000000 00:00 0 7fceb64f6000-7fceb64fa000 ---p 00000000 00:00 0 7fceb64fa000-7fceb65f6000 rw-p 00000000 00:00 0 7fceb65f6000-7fceb65f7000 ---p 00000000 00:00 0 7fceb65f7000-7fceb65fb000 ---p 00000000 00:00 0 7fceb65fb000-7fceb66f7000 rw-p 00000000 00:00 0 7fceb66f7000-7fceb66f8000 ---p 00000000 00:00 0 7fceb66f8000-7fceb66fc000 ---p 00000000 00:00 0 7fceb66fc000-7fceb67f8000 rw-p 00000000 00:00 0 7fceb67f8000-7fceb67f9000 ---p 00000000 00:00 0 7fceb67f9000-7fceb67fd000 ---p 00000000 00:00 0 7fceb67fd000-7fceb68f9000 rw-p 00000000 00:00 0 7fceb68f9000-7fceb68fa000 ---p 00000000 00:00 0 7fceb68fa000-7fceb68fe000 ---p 00000000 00:00 0 7fceb68fe000-7fceb69fa000 rw-p 00000000 00:00 0 7fceb69fa000-7fceb69fb000 ---p 00000000 00:00 0 7fceb69fb000-7fceb69ff000 ---p 00000000 00:00 0 7fceb69ff000-7fceb6afb000 rw-p 00000000 00:00 0 7fceb6afb000-7fceb6afc000 ---p 00000000 00:00 0 7fceb6afc000-7fceb6b00000 ---p 00000000 00:00 0 7fceb6b00000-7fceb6bfc000 rw-p 00000000 00:00 0 7fceb6bfc000-7fceb6bfd000 ---p 00000000 00:00 0 7fceb6bfd000-7fceb6c01000 ---p 00000000 00:00 0 7fceb6c01000-7fceb6cfd000 rw-p 00000000 00:00 0 7fceb6cfd000-7fceb6cfe000 ---p 00000000 00:00 0 7fceb6cfe000-7fceb6d02000 ---p 00000000 00:00 0 7fceb6d02000-7fceb6dfe000 rw-p 00000000 00:00 0 7fceb6dfe000-7fceb6dff000 ---p 00000000 00:00 0 7fceb6dff000-7fceb6e03000 ---p 00000000 00:00 0 7fceb6e03000-7fceb6eff000 rw-p 00000000 00:00 0 7fceb6eff000-7fceb6f00000 ---p 00000000 00:00 0 7fceb6f00000-7fceb6f04000 ---p 00000000 00:00 0 7fceb6f04000-7fceb73f0000 rw-p 00000000 00:00 0 7fceb73f0000-7fceb75b0000 rw-p 00000000 00:00 0 7fceb75b0000-7fceb75f0000 rw-p 00000000 00:00 0 7fceb75f0000-7fceb7770000 rw-p 00000000 00:00 0 7fceb7770000-7fceb7870000 rw-p 00000000 00:00 0 7fceb7870000-7fceb78f0000 rw-p 00000000 00:00 0 7fceb78f0000-7fceb7ab0000 rw-p 00000000 00:00 0 7fceb7ab0000-7fceb7af0000 rw-p 00000000 00:00 0 7fceb7af0000-7fceb7cf0000 rw-p 00000000 00:00 0 7fceb7cf0000-7fceb7ef0000 rw-p 00000000 00:00 0 7fceb7ef0000-7fceb7ff0000 rw-p 00000000 00:00 0 7fceb7ff0000-7fceb85b0000 rw-p 00000000 00:00 0 7fceb85b0000-7fceb85f0000 rw-p 00000000 00:00 0 7fceb85f0000-7fceb88f0000 rw-p 00000000 00:00 0 7fceb88f0000-7fceb89f0000 rw-p 00000000 00:00 0 7fceb89f0000-7fceb9370000 rw-p 00000000 00:00 0 7fceb9370000-7fceb93f0000 rw-p 00000000 00:00 0 7fceb93f0000-7fceb9f10000 rw-p 00000000 00:00 0 7fceb9f10000-7fceb9fd0000 rw-p 00000000 00:00 0 7fceb9fd0000-7fcebb000000 rw-p 00000000 00:00 0 7fcebb000000-7fcebb488000 rw-p 00001000 08:01 284831 /opt/java/openjdk/lib/server/classes.jsa 7fcebb488000-7fcebbcab000 rw-p 00489000 08:01 284831 /opt/java/openjdk/lib/server/classes.jsa 7fcebbcab000-7fcebc000000 ---p 00000000 00:00 0 7fcebc000000-7fcebc030000 rw-p 00000000 00:00 0 7fcebc030000-7fcebc0b0000 rw-p 00000000 00:00 0 7fcebc0b0000-7fcebc0f0000 rw-p 00000000 00:00 0 7fcebc0f0000-7fcebc170000 rw-p 00000000 00:00 0 7fcebc170000-7fcebc1b0000 rw-p 00000000 00:00 0 7fcebc1b0000-7fcebc1f0000 rw-p 00000000 00:00 0 7fcebc1f0000-7fcebcb30000 rw-p 00000000 00:00 0 7fcebcb30000-7fcebcb70000 rw-p 00000000 00:00 0 7fcebcb70000-7fcebcdf0000 rw-p 00000000 00:00 0 7fcebcdf0000-7fcebd0d0000 rw-p 00000000 00:00 0 7fcebd0d0000-7fcebd0f0000 rw-p 00000000 00:00 0 7fcebd0f0000-7fcebefd0000 rw-p 00000000 00:00 0 7fcebefd0000-7fcebeff0000 rw-p 00000000 00:00 0 7fcebeff0000-7fcebf430000 rw-p 00000000 00:00 0 7fcebf430000-7fcebf450000 rw-p 00000000 00:00 0 7fcebf450000-7fcebf480000 ---p 00000000 00:00 0 7fcebf480000-7fcebf700000 rw-p 00000000 00:00 0 7fcebf700000-7fcefc000000 ---p 00000000 00:00 0 7fcefc000000-7fcefc021000 rw-p 00000000 00:00 0 7fcefc021000-7fcf00000000 ---p 00000000 00:00 0 7fcf00000000-7fcf00021000 rw-p 00000000 00:00 0 7fcf00021000-7fcf04000000 ---p 00000000 00:00 0 7fcf04000000-7fcf04045000 rw-p 00000000 00:00 0 7fcf04045000-7fcf08000000 ---p 00000000 00:00 0 7fcf080ed000-7fcf080ee000 ---p 00000000 00:00 0 7fcf080ee000-7fcf080f2000 ---p 00000000 00:00 0 7fcf080f2000-7fcf081ee000 rw-p 00000000 00:00 0 7fcf081ee000-7fcf081ef000 ---p 00000000 00:00 0 7fcf081ef000-7fcf081f3000 ---p 00000000 00:00 0 7fcf081f3000-7fcf082ef000 rw-p 00000000 00:00 0 7fcf082ef000-7fcf082f0000 ---p 00000000 00:00 0 7fcf082f0000-7fcf082f4000 ---p 00000000 00:00 0 7fcf082f4000-7fcf083f0000 rw-p 00000000 00:00 0 7fcf083f0000-7fcf083f1000 ---p 00000000 00:00 0 7fcf083f1000-7fcf083f5000 ---p 00000000 00:00 0 7fcf083f5000-7fcf084f1000 rw-p 00000000 00:00 0 7fcf084f1000-7fcf084f2000 ---p 00000000 00:00 0 7fcf084f2000-7fcf084f6000 ---p 00000000 00:00 0 7fcf084f6000-7fcf085f2000 rw-p 00000000 00:00 0 7fcf085f2000-7fcf085f3000 ---p 00000000 00:00 0 7fcf085f3000-7fcf085f7000 ---p 00000000 00:00 0 7fcf085f7000-7fcf086f3000 rw-p 00000000 00:00 0 7fcf086f3000-7fcf086f4000 ---p 00000000 00:00 0 7fcf086f4000-7fcf086f8000 ---p 00000000 00:00 0 7fcf086f8000-7fcf087f4000 rw-p 00000000 00:00 0 7fcf087f4000-7fcf087f5000 ---p 00000000 00:00 0 7fcf087f5000-7fcf087f9000 ---p 00000000 00:00 0 7fcf087f9000-7fcf088f5000 rw-p 00000000 00:00 0 7fcf088f5000-7fcf088f6000 ---p 00000000 00:00 0 7fcf088f6000-7fcf088fa000 ---p 00000000 00:00 0 7fcf088fa000-7fcf089f6000 rw-p 00000000 00:00 0 7fcf089f6000-7fcf089f7000 ---p 00000000 00:00 0 7fcf089f7000-7fcf089fb000 ---p 00000000 00:00 0 7fcf089fb000-7fcf08af7000 rw-p 00000000 00:00 0 7fcf08af7000-7fcf08af8000 ---p 00000000 00:00 0 7fcf08af8000-7fcf08afc000 ---p 00000000 00:00 0 7fcf08afc000-7fcf08bf8000 rw-p 00000000 00:00 0 7fcf08bf8000-7fcf08bf9000 ---p 00000000 00:00 0 7fcf08bf9000-7fcf08bfd000 ---p 00000000 00:00 0 7fcf08bfd000-7fcf08cf9000 rw-p 00000000 00:00 0 7fcf08cf9000-7fcf08cfa000 ---p 00000000 00:00 0 7fcf08cfa000-7fcf08cfe000 ---p 00000000 00:00 0 7fcf08cfe000-7fcf08dfa000 rw-p 00000000 00:00 0 7fcf08dfa000-7fcf08dfb000 ---p 00000000 00:00 0 7fcf08dfb000-7fcf08dff000 ---p 00000000 00:00 0 7fcf08dff000-7fcf08efb000 rw-p 00000000 00:00 0 7fcf08efb000-7fcf08efc000 ---p 00000000 00:00 0 7fcf08efc000-7fcf08f00000 ---p 00000000 00:00 0 7fcf08f00000-7fcf08ffc000 rw-p 00000000 00:00 0 7fcf08ffc000-7fcf08ffd000 ---p 00000000 00:00 0 7fcf08ffd000-7fcf09001000 ---p 00000000 00:00 0 7fcf09001000-7fcf090fd000 rw-p 00000000 00:00 0 7fcf090fd000-7fcf090fe000 ---p 00000000 00:00 0 7fcf090fe000-7fcf09102000 ---p 00000000 00:00 0 7fcf09102000-7fcf091fe000 rw-p 00000000 00:00 0 7fcf091fe000-7fcf091ff000 ---p 00000000 00:00 0 7fcf091ff000-7fcf09203000 ---p 00000000 00:00 0 7fcf09203000-7fcf092ff000 rw-p 00000000 00:00 0 7fcf092ff000-7fcf09300000 ---p 00000000 00:00 0 7fcf09300000-7fcf09304000 ---p 00000000 00:00 0 7fcf09304000-7fcf09400000 rw-p 00000000 00:00 0 7fcf09400000-7fcf0941e000 r-xp 00000000 08:01 398265 /home/container/.cache/JNA/temp/jna17129922086933746827.tmp (deleted) 7fcf0941e000-7fcf0961d000 ---p 0001e000 08:01 398265 /home/container/.cache/JNA/temp/jna17129922086933746827.tmp (deleted) 7fcf0961d000-7fcf0961e000 rw-p 0001d000 08:01 398265 /home/container/.cache/JNA/temp/jna17129922086933746827.tmp (deleted) 7fcf0961e000-7fcf0961f000 rw-p 00000000 00:00 0 7fcf096cd000-7fcf096ce000 ---p 00000000 00:00 0 7fcf096ce000-7fcf096d2000 ---p 00000000 00:00 0 7fcf096d2000-7fcf097ce000 rw-p 00000000 00:00 0 7fcf097ce000-7fcf097cf000 ---p 00000000 00:00 0 7fcf097cf000-7fcf097d3000 ---p 00000000 00:00 0 7fcf097d3000-7fcf098cf000 rw-p 00000000 00:00 0 7fcf098cf000-7fcf098d0000 ---p 00000000 00:00 0 7fcf098d0000-7fcf099d0000 rw-p 00000000 00:00 0 7fcf099d0000-7fcf099d1000 ---p 00000000 00:00 0 7fcf099d1000-7fcf09ad1000 rw-p 00000000 00:00 0 7fcf09ad1000-7fcf09ad2000 ---p 00000000 00:00 0 7fcf09ad2000-7fcf09bd2000 rw-p 00000000 00:00 0 7fcf09c31000-7fcf09c32000 ---p 00000000 00:00 0 7fcf09c32000-7fcf09c36000 ---p 00000000 00:00 0 7fcf09c36000-7fcf09d32000 rw-p 00000000 00:00 0 7fcf09d32000-7fcf09d33000 ---p 00000000 00:00 0 7fcf09d33000-7fcf09d37000 ---p 00000000 00:00 0 7fcf09d37000-7fcf09e33000 rw-p 00000000 00:00 0 7fcf09e33000-7fcf09e34000 ---p 00000000 00:00 0 7fcf09e34000-7fcf09f34000 rw-p 00000000 00:00 0 7fcf09f34000-7fcf09f35000 ---p 00000000 00:00 0 7fcf09f35000-7fcf0a035000 rw-p 00000000 00:00 0 7fcf0a035000-7fcf0a036000 ---p 00000000 00:00 0 7fcf0a036000-7fcf0a136000 rw-p 00000000 00:00 0 7fcf0a136000-7fcf0a137000 ---p 00000000 00:00 0 7fcf0a137000-7fcf0a13b000 ---p 00000000 00:00 0 7fcf0a13b000-7fcf0a237000 rw-p 00000000 00:00 0 7fcf0a237000-7fcf0a238000 ---p 00000000 00:00 0 7fcf0a238000-7fcf0a338000 rw-p 00000000 00:00 0 7fcf0a338000-7fcf0a339000 ---p 00000000 00:00 0 7fcf0a339000-7fcf0a439000 rw-p 00000000 00:00 0 7fcf0a439000-7fcf0a43a000 ---p 00000000 00:00 0 7fcf0a43a000-7fcf0a53a000 rw-p 00000000 00:00 0 7fcf0a53a000-7fcf0a53b000 ---p 00000000 00:00 0 7fcf0a53b000-7fcf0a63b000 rw-p 00000000 00:00 0 7fcf0a6b6000-7fcf0a6b8000 r-xp 00000000 08:01 284789 /opt/java/openjdk/lib/libextnet.so 7fcf0a6b8000-7fcf0a6b9000 r--p 00001000 08:01 284789 /opt/java/openjdk/lib/libextnet.so 7fcf0a6b9000-7fcf0a6ba000 rw-p 00002000 08:01 284789 /opt/java/openjdk/lib/libextnet.so 7fcf0a6ba000-7fcf0a6c1000 r--s 00000000 08:01 278082 /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache 7fcf0a6c1000-7fcf0a6c5000 r--p 00000000 08:01 278236 /usr/lib/x86_64-linux-gnu/libudev.so.1.7.2 7fcf0a6c5000-7fcf0a6df000 r-xp 00004000 08:01 278236 /usr/lib/x86_64-linux-gnu/libudev.so.1.7.2 7fcf0a6df000-7fcf0a6e8000 r--p 0001e000 08:01 278236 /usr/lib/x86_64-linux-gnu/libudev.so.1.7.2 7fcf0a6e8000-7fcf0a6e9000 ---p 00027000 08:01 278236 /usr/lib/x86_64-linux-gnu/libudev.so.1.7.2 7fcf0a6e9000-7fcf0a6ea000 r--p 00027000 08:01 278236 /usr/lib/x86_64-linux-gnu/libudev.so.1.7.2 7fcf0a6ea000-7fcf0a6eb000 rw-p 00028000 08:01 278236 /usr/lib/x86_64-linux-gnu/libudev.so.1.7.2 7fcf0a6eb000-7fcf0a6ec000 ---p 00000000 00:00 0 7fcf0a6ec000-7fcf0a6f0000 ---p 00000000 00:00 0 7fcf0a6f0000-7fcf0a70e000 rw-p 00000000 00:00 0 7fcf0a70e000-7fcf0a713000 r-xp 00000000 08:01 284810 /opt/java/openjdk/lib/libmanagement_ext.so 7fcf0a713000-7fcf0a714000 ---p 00005000 08:01 284810 /opt/java/openjdk/lib/libmanagement_ext.so 7fcf0a714000-7fcf0a715000 r--p 00005000 08:01 284810 /opt/java/openjdk/lib/libmanagement_ext.so 7fcf0a715000-7fcf0a716000 rw-p 00006000 08:01 284810 /opt/java/openjdk/lib/libmanagement_ext.so 7fcf0a716000-7fcf0a717000 ---p 00000000 00:00 0 7fcf0a717000-7fcf0a71b000 ---p 00000000 00:00 0 7fcf0a71b000-7fcf0a817000 rw-p 00000000 00:00 0 7fcf0a817000-7fcf0a818000 ---p 00000000 00:00 0 7fcf0a818000-7fcf0a81c000 ---p 00000000 00:00 0 7fcf0a81c000-7fcf0a918000 rw-p 00000000 00:00 0 7fcf0a918000-7fcf0a919000 ---p 00000000 00:00 0 7fcf0a919000-7fcf0a91d000 ---p 00000000 00:00 0 7fcf0a91d000-7fcf0aa19000 rw-p 00000000 00:00 0 7fcf0aa19000-7fcf0aa1a000 ---p 00000000 00:00 0 7fcf0aa1a000-7fcf0aa1e000 ---p 00000000 00:00 0 7fcf0aa1e000-7fcf0ab1a000 rw-p 00000000 00:00 0 7fcf0ab1a000-7fcf0abe8000 r-xp 00000000 08:01 284805 /opt/java/openjdk/lib/libjsvml.so 7fcf0abe8000-7fcf0abe9000 r--p 000cd000 08:01 284805 /opt/java/openjdk/lib/libjsvml.so 7fcf0abe9000-7fcf0abea000 rw-p 000ce000 08:01 284805 /opt/java/openjdk/lib/libjsvml.so 7fcf0abea000-7fcf0abeb000 ---p 00000000 00:00 0 7fcf0abeb000-7fcf0abef000 ---p 00000000 00:00 0 7fcf0abef000-7fcf0aceb000 rw-p 00000000 00:00 0 7fcf0aceb000-7fcf0acec000 ---p 00000000 00:00 0 7fcf0acec000-7fcf0acf0000 ---p 00000000 00:00 0 7fcf0acf0000-7fcf0adec000 rw-p 00000000 00:00 0 7fcf0adec000-7fcf0aded000 ---p 00000000 00:00 0 7fcf0aded000-7fcf0adf1000 ---p 00000000 00:00 0 7fcf0adf1000-7fcf0aeed000 rw-p 00000000 00:00 0 7fcf0aeed000-7fcf0aeee000 ---p 00000000 00:00 0 7fcf0aeee000-7fcf0aef2000 ---p 00000000 00:00 0 7fcf0aef2000-7fcf0afee000 rw-p 00000000 00:00 0 7fcf0afee000-7fcf0afef000 ---p 00000000 00:00 0 7fcf0afef000-7fcf0aff3000 ---p 00000000 00:00 0 7fcf0aff3000-7fcf0b0ef000 rw-p 00000000 00:00 0 7fcf0b0ef000-7fcf0b0f0000 ---p 00000000 00:00 0 7fcf0b0f0000-7fcf0b0f4000 ---p 00000000 00:00 0 7fcf0b0f4000-7fcf0b1f0000 rw-p 00000000 00:00 0 7fcf0b1f0000-7fcf0b1f1000 ---p 00000000 00:00 0 7fcf0b1f1000-7fcf0b1f5000 ---p 00000000 00:00 0 7fcf0b1f5000-7fcf0b2f1000 rw-p 00000000 00:00 0 7fcf0b2f1000-7fcf0b5da000 r--p 00000000 08:01 281139 /usr/lib/locale/locale-archive 7fcf0b5da000-7fcf0b5db000 ---p 00000000 00:00 0 7fcf0b5db000-7fcf0b6db000 rw-p 00000000 00:00 0 7fcf0b6db000-7fcf0b6dc000 ---p 00000000 00:00 0 7fcf0b6dc000-7fcf0b7dc000 rw-p 00000000 00:00 0 7fcf0b85d000-7fcf0b8b8000 rw-p 00000000 00:00 0 7fcf0b8d9000-7fcf0b8dc000 r--p 00000000 08:01 278139 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 7fcf0b8dc000-7fcf0b8f3000 r-xp 00003000 08:01 278139 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 7fcf0b8f3000-7fcf0b8f7000 r--p 0001a000 08:01 278139 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 7fcf0b8f7000-7fcf0b8f8000 r--p 0001d000 08:01 278139 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 7fcf0b8f8000-7fcf0b8f9000 rw-p 0001e000 08:01 278139 /usr/lib/x86_64-linux-gnu/libgcc_s.so.1 7fcf0b8f9000-7fcf0b8fa000 ---p 00000000 00:00 0 7fcf0b8fa000-7fcf0b9fa000 rw-p 00000000 00:00 0 7fcf0b9fa000-7fcf0b9fb000 ---p 00000000 00:00 0 7fcf0b9fb000-7fcf0c000000 rw-p 00000000 00:00 0 7fcf0c000000-7fcf0c021000 rw-p 00000000 00:00 0 7fcf0c021000-7fcf10000000 ---p 00000000 00:00 0 7fcf10000000-7fcf10138000 rw-p 00000000 00:00 0 7fcf10138000-7fcf14000000 ---p 00000000 00:00 0 7fcf14000000-7fcf1402a000 rw-p 00000000 00:00 0 7fcf1402a000-7fcf18000000 ---p 00000000 00:00 0 7fcf18003000-7fcf18010000 r-xp 00000000 08:01 284820 /opt/java/openjdk/lib/libverify.so 7fcf18010000-7fcf18012000 r--p 0000c000 08:01 284820 /opt/java/openjdk/lib/libverify.so 7fcf18012000-7fcf18013000 rw-p 0000e000 08:01 284820 /opt/java/openjdk/lib/libverify.so 7fcf18013000-7fcf1802e000 r-xp 00000000 08:01 284821 /opt/java/openjdk/lib/libzip.so 7fcf1802e000-7fcf1802f000 r--p 0001a000 08:01 284821 /opt/java/openjdk/lib/libzip.so 7fcf1802f000-7fcf18030000 rw-p 0001b000 08:01 284821 /opt/java/openjdk/lib/libzip.so 7fcf18030000-7fcf1a535000 rw-p 00000000 00:00 0 7fcf1a535000-7fcf1a536000 ---p 00000000 00:00 0 7fcf1a536000-7fcf1a636000 rw-p 00000000 00:00 0 7fcf1a636000-7fcf1a637000 ---p 00000000 00:00 0 7fcf1a637000-7fcf1a737000 rw-p 00000000 00:00 0 7fcf1a737000-7fcf1a738000 ---p 00000000 00:00 0 7fcf1a738000-7fcf1ebd8000 rw-p 00000000 00:00 0 7fcf1ebd8000-7fcf2e018000 ---p 00000000 00:00 0 7fcf2e018000-7fcf2e9f8000 rw-p 00000000 00:00 0 7fcf2e9f8000-7fcf30880000 ---p 00000000 00:00 0 7fcf30880000-7fcf308b0000 rw-p 00000000 00:00 0 7fcf308b0000-7fcf336a0000 rwxp 00000000 00:00 0 7fcf336a0000-7fcf37de7000 ---p 00000000 00:00 0 7fcf37de7000-7fcf380f7000 rwxp 00000000 00:00 0 7fcf380f7000-7fcf38379000 ---p 00000000 00:00 0 7fcf38379000-7fcf3a0d9000 rwxp 00000000 00:00 0 7fcf3a0d9000-7fcf3f8b0000 ---p 00000000 00:00 0 7fcf3f8b0000-7fcf48000000 r--s 00000000 08:01 284822 /opt/java/openjdk/lib/modules 7fcf48000000-7fcf4c000000 rw-p 00000000 00:00 0 7fcf4c002000-7fcf4c006000 r-xp 00000000 08:01 284808 /opt/java/openjdk/lib/libmanagement.so 7fcf4c006000-7fcf4c007000 r--p 00003000 08:01 284808 /opt/java/openjdk/lib/libmanagement.so 7fcf4c007000-7fcf4c008000 rw-p 00004000 08:01 284808 /opt/java/openjdk/lib/libmanagement.so 7fcf4c008000-7fcf4c014000 r-xp 00000000 08:01 284812 /opt/java/openjdk/lib/libnet.so 7fcf4c014000-7fcf4c015000 r--p 0000b000 08:01 284812 /opt/java/openjdk/lib/libnet.so 7fcf4c015000-7fcf4c016000 rw-p 0000c000 08:01 284812 /opt/java/openjdk/lib/libnet.so 7fcf4c016000-7fcf4c02a000 r-xp 00000000 08:01 284813 /opt/java/openjdk/lib/libnio.so 7fcf4c02a000-7fcf4c02b000 r--p 00013000 08:01 284813 /opt/java/openjdk/lib/libnio.so 7fcf4c02b000-7fcf4c02c000 rw-p 00014000 08:01 284813 /opt/java/openjdk/lib/libnio.so 7fcf4c02c000-7fcf4c88c000 rw-p 00000000 00:00 0 7fcf4c88c000-7fcf4e714000 ---p 00000000 00:00 0 7fcf4e714000-7fcf4f226000 rw-p 00000000 00:00 0 7fcf4f226000-7fcf4f2d6000 ---p 00000000 00:00 0 7fcf4f2d6000-7fcf4f332000 rw-p 00000000 00:00 0 7fcf4f332000-7fcf4f3c1000 ---p 00000000 00:00 0 7fcf4f3c1000-7fcf4f3c8000 rw-p 00000000 00:00 0 7fcf4f3c8000-7fcf4f3cd000 ---p 00000000 00:00 0 7fcf4f3cd000-7fcf4f3ed000 r-xp 00000000 08:01 284797 /opt/java/openjdk/lib/libjava.so 7fcf4f3ed000-7fcf4f3ee000 ---p 00020000 08:01 284797 /opt/java/openjdk/lib/libjava.so 7fcf4f3ee000-7fcf4f3ef000 r--p 00020000 08:01 284797 /opt/java/openjdk/lib/libjava.so 7fcf4f3ef000-7fcf4f3f0000 rw-p 00021000 08:01 284797 /opt/java/openjdk/lib/libjava.so 7fcf4f3f0000-7fcf4f3f9000 rw-p 00000000 00:00 0 7fcf4f3f9000-7fcf4f414000 r-xp 00000000 08:01 284801 /opt/java/openjdk/lib/libjimage.so 7fcf4f414000-7fcf4f415000 ---p 0001b000 08:01 284801 /opt/java/openjdk/lib/libjimage.so 7fcf4f415000-7fcf4f417000 r--p 0001b000 08:01 284801 /opt/java/openjdk/lib/libjimage.so 7fcf4f417000-7fcf4f418000 rw-p 0001d000 08:01 284801 /opt/java/openjdk/lib/libjimage.so 7fcf4f418000-7fcf4f41c000 ---p 00000000 00:00 0 7fcf4f41c000-7fcf4f518000 rw-p 00000000 00:00 0 7fcf4f518000-7fcf4f526000 r--p 00000000 08:01 278166 /usr/lib/x86_64-linux-gnu/libm.so.6 7fcf4f526000-7fcf4f5a2000 r-xp 0000e000 08:01 278166 /usr/lib/x86_64-linux-gnu/libm.so.6 7fcf4f5a2000-7fcf4f5fd000 r--p 0008a000 08:01 278166 /usr/lib/x86_64-linux-gnu/libm.so.6 7fcf4f5fd000-7fcf4f5fe000 r--p 000e4000 08:01 278166 /usr/lib/x86_64-linux-gnu/libm.so.6 7fcf4f5fe000-7fcf4f5ff000 rw-p 000e5000 08:01 278166 /usr/lib/x86_64-linux-gnu/libm.so.6 7fcf4f5ff000-7fcf4f600000 r--p 00000000 08:01 278211 /usr/lib/x86_64-linux-gnu/librt.so.1 7fcf4f600000-7fcf4f601000 r-xp 00001000 08:01 278211 /usr/lib/x86_64-linux-gnu/librt.so.1 7fcf4f601000-7fcf4f602000 r--p 00002000 08:01 278211 /usr/lib/x86_64-linux-gnu/librt.so.1 7fcf4f602000-7fcf4f603000 r--p 00002000 08:01 278211 /usr/lib/x86_64-linux-gnu/librt.so.1 7fcf4f603000-7fcf4f604000 rw-p 00003000 08:01 278211 /usr/lib/x86_64-linux-gnu/librt.so.1 7fcf4f604000-7fcf50a0d000 r-xp 00000000 08:01 284834 /opt/java/openjdk/lib/server/libjvm.so 7fcf50a0d000-7fcf50a0e000 ---p 01409000 08:01 284834 /opt/java/openjdk/lib/server/libjvm.so 7fcf50a0e000-7fcf50ade000 r--p 01409000 08:01 284834 /opt/java/openjdk/lib/server/libjvm.so 7fcf50ade000-7fcf50b0e000 rw-p 014d9000 08:01 284834 /opt/java/openjdk/lib/server/libjvm.so 7fcf50b0e000-7fcf50b76000 rw-p 00000000 00:00 0 7fcf50b76000-7fcf50b9e000 r--p 00000000 08:01 278114 /usr/lib/x86_64-linux-gnu/libc.so.6 7fcf50b9e000-7fcf50d33000 r-xp 00028000 08:01 278114 /usr/lib/x86_64-linux-gnu/libc.so.6 7fcf50d33000-7fcf50d8b000 r--p 001bd000 08:01 278114 /usr/lib/x86_64-linux-gnu/libc.so.6 7fcf50d8b000-7fcf50d8c000 ---p 00215000 08:01 278114 /usr/lib/x86_64-linux-gnu/libc.so.6 7fcf50d8c000-7fcf50d90000 r--p 00215000 08:01 278114 /usr/lib/x86_64-linux-gnu/libc.so.6 7fcf50d90000-7fcf50d92000 rw-p 00219000 08:01 278114 /usr/lib/x86_64-linux-gnu/libc.so.6 7fcf50d92000-7fcf50d9f000 rw-p 00000000 00:00 0 7fcf50d9f000-7fcf50da0000 r--p 00000000 08:01 278128 /usr/lib/x86_64-linux-gnu/libdl.so.2 7fcf50da0000-7fcf50da1000 r-xp 00001000 08:01 278128 /usr/lib/x86_64-linux-gnu/libdl.so.2 7fcf50da1000-7fcf50da2000 r--p 00002000 08:01 278128 /usr/lib/x86_64-linux-gnu/libdl.so.2 7fcf50da2000-7fcf50da3000 r--p 00002000 08:01 278128 /usr/lib/x86_64-linux-gnu/libdl.so.2 7fcf50da3000-7fcf50da4000 rw-p 00003000 08:01 278128 /usr/lib/x86_64-linux-gnu/libdl.so.2 7fcf50da4000-7fcf50da5000 r--p 00000000 08:01 278209 /usr/lib/x86_64-linux-gnu/libpthread.so.0 7fcf50da5000-7fcf50da6000 r-xp 00001000 08:01 278209 /usr/lib/x86_64-linux-gnu/libpthread.so.0 7fcf50da6000-7fcf50da7000 r--p 00002000 08:01 278209 /usr/lib/x86_64-linux-gnu/libpthread.so.0 7fcf50da7000-7fcf50da8000 r--p 00002000 08:01 278209 /usr/lib/x86_64-linux-gnu/libpthread.so.0 7fcf50da8000-7fcf50da9000 rw-p 00003000 08:01 278209 /usr/lib/x86_64-linux-gnu/libpthread.so.0 7fcf50daa000-7fcf50dab000 ---p 00000000 00:00 0 7fcf50dab000-7fcf50dac000 r--p 00000000 00:00 0 7fcf50dac000-7fcf50dc5000 r-xp 00000000 08:01 284802 /opt/java/openjdk/lib/libjli.so 7fcf50dc5000-7fcf50dc6000 r--p 00018000 08:01 284802 /opt/java/openjdk/lib/libjli.so 7fcf50dc6000-7fcf50dc7000 rw-p 00019000 08:01 284802 /opt/java/openjdk/lib/libjli.so 7fcf50dc7000-7fcf50dc9000 rw-p 00000000 00:00 0 7fcf50dc9000-7fcf50dcb000 r--p 00000000 08:01 278096 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 7fcf50dcb000-7fcf50df5000 r-xp 00002000 08:01 278096 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 7fcf50df5000-7fcf50e00000 r--p 0002c000 08:01 278096 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 7fcf50e00000-7fcf50e01000 ---p 00000000 00:00 0 7fcf50e01000-7fcf50e03000 r--p 00037000 08:01 278096 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 7fcf50e03000-7fcf50e05000 rw-p 00039000 08:01 278096 /usr/lib/x86_64-linux-gnu/ld-linux-x86-64.so.2 7ffd37fe0000-7ffd38001000 rw-p 00000000 00:00 0 [stack] 7ffd38112000-7ffd38116000 r--p 00000000 00:00 0 [vvar] 7ffd38116000-7ffd38118000 r-xp 00000000 00:00 0 [vdso] Total number of mappings: 1427 VM Arguments: jvm_args: -Xms128M -XX:MaxRAMPercentage=95.0 -Dterminal.jline=false -Dterminal.ansi=true --module-path=libraries/cpw/mods/bootstraplauncher/1.1.2/bootstraplauncher-1.1.2.jar:libraries/cpw/mods/securejarhandler/2.1.10/securejarhandler-2.1.10.jar:libraries/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar:libraries/org/ow2/asm/asm-util/9.5/asm-util-9.5.jar:libraries/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.jar:libraries/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar:libraries/org/ow2/asm/asm/9.5/asm-9.5.jar:libraries/net/minecraftforge/JarJarFileSystems/0.3.19/JarJarFileSystems-0.3.19.jar --add-modules=ALL-MODULE-PATH --add-opens=java.base/java.util.jar=cpw.mods.securejarhandler --add-opens=java.base/java.lang.invoke=cpw.mods.securejarhandler --add-exports=java.base/sun.security.util=cpw.mods.securejarhandler --add-exports=jdk.naming.dns/com.sun.jndi.dns=java.naming -Djava.net.preferIPv6Addresses=system -DignoreList=bootstraplauncher-1.1.2.jar,securejarhandler-2.1.10.jar,asm-commons-9.5.jar,asm-util-9.5.jar,asm-analysis-9.5.jar,asm-tree-9.5.jar,asm-9.5.jar,JarJarFileSystems-0.3.19.jar -DlibraryDirectory=libraries -DlegacyClassPath=libraries/cpw/mods/securejarhandler/2.1.10/securejarhandler-2.1.10.jar:libraries/org/ow2/asm/asm/9.5/asm-9.5.jar:libraries/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar:libraries/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar:libraries/org/ow2/asm/asm-util/9.5/asm-util-9.5.jar:libraries/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.jar:libraries/net/minecraftforge/accesstransformers/8.0.4/accesstransformers-8.0.4.jar:libraries/org/antlr/antlr4-runtime/4.9.1/antlr4-runtime-4.9.1.jar:libraries/net/minecraftforge/eventbus/6.0.5/eventbus-6.0.5.jar:libraries/net/minecraftforge/forgespi/7.0.1/forgespi-7.0.1.jar:libraries/net/minecraftforge/coremods/5.0.1/coremods-5.0.1.jar:libraries/cpw/mods/modlauncher/10.0.9/modlauncher-10.0.9.jar:libraries/net/minecraftforge/unsafe/0.2.0/unsafe-0.2.0.jar:libraries/net/minecraftforge/mergetool/1.1.5/mergetool-1.1.5-api.jar:libraries/com/electronwill/night-config/core/3.6.4/core-3.6.4.jar:libraries/com/electronwill/night-config/toml/3.6.4/toml-3.6.4.jar:libraries/org/apache/maven/maven-artifact/3.8.5/maven-artifact-3.8.5.jar:libraries/net/jodah/typetools/0.6.3/typetools-0.6.3.jar:libraries/net/minecrell/terminalconsoleappender/1.2.0/terminalconsoleappender-1.2.0.jar:libraries/org/jline/jline-reader/3.12.1/jline-reader-3.12.1.jar:libraries/org/jline/jline-terminal/3.12.1/jline-terminal-3.12.1.jar:libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar:libraries/org/openjdk/nashorn/nashorn-core/15.3/nashorn-core-15.3.jar:libraries/net/minecraftforge/JarJarSelector/0.3.19/JarJarSelector-0.3.19.jar:libraries/net/minecraftforge/JarJarMetadata/0.3.19/JarJarMetadata-0.3.19.jar:libraries/net/minecraftforge/fmlloader/1.20.1-47.2.0/fmlloader-1.20.1-47.2.0.jar:libraries/net/minecraft/server/1.20.1-20230612.114412/server-1.20.1-20230612.114412-extra.jar:libraries/com/github/oshi/oshi-core/6.2.2/oshi-core-6.2.2.jar:libraries/com/google/code/gson/gson/2.10/gson-2.10.jar:libraries/com/google/guava/failureaccess/1.0.1/failureaccess-1.0.1 java_command: cpw.mods.bootstraplauncher.BootstrapLauncher --launchTarget forgeserver --fml.forgeVersion 47.2.0 --fml.mcVersion 1.20.1 --fml.forgeGroup net.minecraftforge --fml.mcpVersion 20230612.114412 java_class_path (initial): . Launcher Type: SUN_STANDARD [Global flags] intx CICompilerCount = 4 {product} {ergonomic} uint ConcGCThreads = 3 {product} {ergonomic} uint G1ConcRefinementThreads = 10 {product} {ergonomic} size_t G1HeapRegionSize = 16777216 {product} {ergonomic} uintx GCDrainStackTargetSize = 64 {product} {ergonomic} size_t InitialHeapSize = 134217728 {product} {command line} size_t MarkStackSize = 4194304 {product} {ergonomic} size_t MaxHeapSize = 20988297216 {product} {ergonomic} size_t MaxNewSize = 12582912000 {product} {ergonomic} uint64_t MaxRAM = 22077054976 {pd product} {ergonomic} double MaxRAMPercentage = 95.000000 {product} {command line} size_t MinHeapDeltaBytes = 16777216 {product} {ergonomic} size_t MinHeapSize = 134217728 {product} {command line} uintx NonNMethodCodeHeapSize = 5839372 {pd product} {ergonomic} uintx NonProfiledCodeHeapSize = 122909434 {pd product} {ergonomic} bool PerfDisableSharedMem = true {product} {ergonomic} uintx ProfiledCodeHeapSize = 122909434 {pd product} {ergonomic} uintx ReservedCodeCacheSize = 251658240 {pd product} {ergonomic} bool SegmentedCodeCache = true {product} {ergonomic} size_t SoftMaxHeapSize = 20988297216 {manageable} {ergonomic} bool UseCompressedOops = true {product lp64_product} {ergonomic} bool UseG1GC = true {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: JAVA_HOME=/opt/java/openjdk PATH=/opt/java/openjdk/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 TERM=xterm TZ=Europe/Berlin Active Locale: LC_ALL=en_US.UTF-8 LC_COLLATE=en_US.UTF-8 LC_CTYPE=en_US.UTF-8 LC_MESSAGES=en_US.UTF-8 LC_MONETARY=en_US.UTF-8 LC_NUMERIC=en_US.UTF-8 LC_TIME=en_US.UTF-8 Signal Handlers: SIGSEGV: crash_handler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, unblocked SIGBUS: crash_handler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, unblocked SIGFPE: crash_handler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, unblocked SIGPIPE: javaSignalHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked SIGXFSZ: javaSignalHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked SIGILL: crash_handler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, unblocked SIGUSR2: SR_handler in libjvm.so, mask=00000000000000000000000000000000, flags=SA_RESTART|SA_SIGINFO, blocked SIGHUP: UserHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked SIGINT: UserHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked SIGTERM: UserHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked SIGQUIT: UserHandler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, blocked SIGTRAP: crash_handler in libjvm.so, mask=11100100010111111101111111111110, flags=SA_RESTART|SA_SIGINFO, unblocked Periodic native trim disabled --------------- S Y S T E M --------------- OS: DISTRIB_ID=Ubuntu DISTRIB_RELEASE=22.04 DISTRIB_CODENAME=jammy DISTRIB_DESCRIPTION="Ubuntu 22.04.4 LTS" uname: Linux 6.1.0-22-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.94-1 (2024-06-21) x86_64 OS uptime: 0 days 16:52 hours libc: glibc 2.35 NPTL 2.35 rlimit (soft/hard): STACK 8192k/infinity , CORE infinity/infinity , NPROC infinity/infinity , NOFILE 1048576/1048576 , AS infinity/infinity , CPU infinity/infinity , DATA infinity/infinity , FSIZE infinity/infinity , MEMLOCK 8192k/8192k load average: 4.12 3.94 3.15 /proc/meminfo: MemTotal: 21417272 kB MemFree: 11026760 kB MemAvailable: 14407524 kB Buffers: 124500 kB Cached: 3814980 kB SwapCached: 0 kB Active: 868672 kB Inactive: 9116448 kB Active(anon): 548 kB Inactive(anon): 6109820 kB Active(file): 868124 kB Inactive(file): 3006628 kB Unevictable: 0 kB Mlocked: 0 kB SwapTotal: 0 kB SwapFree: 0 kB Zswap: 0 kB Zswapped: 0 kB Dirty: 68 kB Writeback: 0 kB AnonPages: 6032832 kB Mapped: 285492 kB Shmem: 64724 kB KReclaimable: 198028 kB Slab: 270260 kB SReclaimable: 198028 kB SUnreclaim: 72232 kB KernelStack: 12988 kB PageTables: 18700 kB SecPageTables: 0 kB NFS_Unstable: 0 kB Bounce: 0 kB WritebackTmp: 0 kB CommitLimit: 10708636 kB Committed_AS: 11834044 kB VmallocTotal: 34359738367 kB VmallocUsed: 33200 kB VmallocChunk: 0 kB Percpu: 8896 kB HardwareCorrupted: 0 kB AnonHugePages: 4872192 kB ShmemHugePages: 0 kB ShmemPmdMapped: 0 kB FileHugePages: 0 kB FilePmdMapped: 0 kB HugePages_Total: 0 HugePages_Free: 0 HugePages_Rsvd: 0 HugePages_Surp: 0 Hugepagesize: 2048 kB Hugetlb: 0 kB DirectMap4k: 147304 kB DirectMap2M: 10338304 kB DirectMap1G: 58720256 kB /sys/kernel/mm/transparent_hugepage/enabled: [always] madvise never /sys/kernel/mm/transparent_hugepage/hpage_pmd_size: 2097152 /sys/kernel/mm/transparent_hugepage/defrag (defrag/compaction efforts parameter): always defer defer+madvise [madvise] never Process Memory: Virtual Size: 31252816K (peak: 31252816K) Resident Set Size: 5568008K (peak: 5568008K) (anon: 5534324K, file: 31872K, shmem: 1812K) Swapped out: 0K C-Heap outstanding allocations: 343626K, retained: 255129K glibc malloc tunables: (default) /proc/sys/kernel/threads-max (system-wide limit on the number of threads): 514060 /proc/sys/vm/max_map_count (maximum number of memory map areas a process may have): 65530 /proc/sys/kernel/pid_max (system-wide limit on number of process identifiers): 4194304 container (cgroup) information: container_type: cgroupv2 cpu_cpuset_cpus: not supported cpu_memory_nodes: not supported active_processor_count: 12 cpu_quota: no quota cpu_period: 100000 cpu_shares: no shares memory_limit_in_bytes: unlimited memory_and_swap_limit_in_bytes: 250338864 k memory_soft_limit_in_bytes: 238417968 k memory_usage_in_bytes: 5576400 k memory_max_usage_in_bytes: not supported memory_swap_current_in_bytes: unlimited memory_swap_max_limit_in_bytes: unlimited maximum number of tasks: 512 current number of tasks: 512 KVM virtualization detected Steal ticks since vm start: 2368 Steal ticks percentage since vm start: 0.011 CPU: total 12 (initial active 12) (12 cores per cpu, 1 threads per core) family 6 model 62 stepping 4 microcode 0x42e, cx8, cmov, fxsr, mmx, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, tsc, avx, aes, erms, clmul, vzeroupper, clflush, hv, rdtscp, f16c CPU Model and flags from /proc/cpuinfo: model name : Intel(R) Xeon(R) CPU E5-2667 v2 @ 3.30GHz flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush mmx fxsr sse sse2 ss ht syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon rep_good nopl xtopology cpuid tsc_known_freq pni pclmulqdq vmx ssse3 cx16 pdcm pcid sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand hypervisor lahf_lm cpuid_fault pti ssbd ibrs ibpb stibp tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust smep erms xsaveopt arat umip md_clear flush_l1d arch_capabilities Online cpus: 0-11 Offline cpus: BIOS frequency limitation: <Not Available> Frequency switch latency (ns): <Not Available> Available cpu frequencies: <Not Available> Current governor: <Not Available> Core performance/turbo boost: <Not Available> Memory: 4k page, physical 21559624k(14407524k free), swap 0k(0k free) Page Sizes: 4k vm_info: OpenJDK 64-Bit Server VM (21.0.3+9-LTS) for linux-amd64 JRE (21.0.3+9-LTS), built on 2024-04-16T00:00:00Z by "admin" with gcc 11.3.0 END.
  11. Hi, My mohist 1.20.1 server also crashes and I don't know why: Crash report: https://paste.ee/p/W9Onu Thanks for spending your time fixing my crashes.
  12. https://gist.github.com/it-is-allie/29645c4fb5c7131ad30181769a37d12f There is my latest crash report. I've spent probably 5 hours messing with modpacks and have gotten it almost complete but it then randomly crashes before loading all the mods? I'm not even sure. if anyone could help it would be greatly appreciated.
  13. So I have this weird bug in this modpack I've been making where water won't place in the overworld as if it's the nether. Water still generates naturally, but once you pick it up with a bucket and try to place it it sizzles out. Everything else functions as normal. I'll include a forced crash report for a mod list and a debug log. Not sure what's happening here. I'm using forge-40.2.7 on minecraft 1.18.2. Crash Report - https://pastebin.com/xGQKHiPA Debug Log - https://gist.github.com/wonkers27/0fa05bdcd7347ffbf1cf8d36be4e7f25
  14. I have recently been unable to make mods since the same error happens, I haven't changed any settings that could affect it and I am really confused, never saw this error, even tried reinstalling InteliJ IDEA and cloned different public src mods but all of them result in a build error, i can't even build freshly made projects either Error itself: https://pastebin.com/hBQyWnuU Tried switching Java versions but to no avail
  15. https://pastebin.com/eetxKg1t Here is the debug log, version 1.20.1, with or without mods, normal minecrafts runs normally
  16. I downloaded moonlight and all mods in server, but i can't enter server. I've run minecraft the same forge version with server, but it still error Forge 1.20.1 https://imgur.com/vRRX6qd
  17. FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':processResources'. > Could not copy file 'C:\Users\jedil\Downloads\forge-1.20-46.0.14-mdk\src\main\resources\META-INF\mods.toml' to 'C:\Users\jedil\Downloads\forge-1.20-46.0.14-mdk\build\resources\main\META-INF\mods.toml'. > Failed to parse template script (your template may contain an error or be trying to use expressions not currently supported): startup failed: SimpleTemplateScript1.groovy: 1: Unexpected input: '(' @ line 1, column 10. out.print("""# This is an example mods.toml file. It contains the data relating to the loading mods. ^ This is my mods.toml script: # This is an example mods.toml file. It contains the data relating to the loading mods. # There are several mandatory fields (#mandatory), and many more that are optional (#optional). # The overall format is standard TOML format, v0.5.0. # Note that there are a couple of TOML lists in this file. # Find more information on toml format here: https://github.com/toml-lang/toml # The name of the mod loader type to load - for regular FML @Mod mods it should be javafml modLoader="javafml" #mandatory # A version range to match for said mod loader - for regular FML @Mod it will be the forge version loaderVersion="${46.0.14}" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions. # The license for you mod. This is mandatory metadata and allows for easier comprehension of your redistributive properties. # Review your options at https://choosealicense.com/. All rights reserved is the default copyright stance, and is thus the default here. license="${All Rights Reserved}" # A URL to refer people to when problems occur with this mod #issueTrackerURL="https://change.me.to.your.issue.tracker.example.invalid/" #optional # A list of mods - how many allowed here is determined by the individual mod loader [[mods]] #mandatory # The modid of the mod modId="${MCRefined}" #mandatory # The version number of the mod version="${1.0.0}" #mandatory # A display name for the mod displayName="${Minecraft Refined}" #mandatory # A URL to query for updates for this mod. See the JSON update specification https://docs.minecraftforge.net/en/latest/misc/updatechecker/ #updateJSONURL="https://change.me.example.invalid/updates.json" #optional # A URL for the "homepage" for this mod, displayed in the mod UI #displayURL="https://change.me.to.your.mods.homepage.example.invalid/" #optional # A file name (in the root of the mod JAR) containing a logo for display #logoFile="examplemod.png" #optional # A text field displayed in the mod UI #credits="" #optional # A text field displayed in the mod UI authors="${me}" #optional # Display Test controls the display for your mod in the server connection screen # MATCH_VERSION means that your mod will cause a red X if the versions on client and server differ. This is the default behaviour and should be what you choose if you have server and client elements to your mod. # IGNORE_SERVER_VERSION means that your mod will not cause a red X if it's present on the server but not on the client. This is what you should use if you're a server only mod. # IGNORE_ALL_VERSION means that your mod will not cause a red X if it's present on the client or the server. This is a special case and should only be used if your mod has no server component. # NONE means that no display test is set on your mod. You need to do this yourself, see IExtensionPoint.DisplayTest for more information. You can define any scheme you wish with this value. # IMPORTANT NOTE: this is NOT an instruction as to which environments (CLIENT or DEDICATED SERVER) your mod loads on. Your mod should load (and maybe do nothing!) whereever it finds itself. #displayTest="MATCH_VERSION" # MATCH_VERSION is the default if nothing is specified (#optional) # The description text for the mod (multi line!) (#mandatory) description='''${Minecraft, but it's, like, better.}''' # A dependency - use the . to indicate dependency for a specific modid. Dependencies are optional. I tried using --scan or --stacktrace, those were no help. I also tried Ctrl+Alt+S, the template I used did not appear. HELP
  18. [00:02:07] [main/ERROR]: Missing or unsupported mandatory dependencies: Mod ID: 'kotlinforforge', Requested by: 'flightlib', Expected range: '[4.3.0,)', Actual version: '[MISSING]' Mod ID: 'terrablender', Requested by: 'biomesoplenty', Expected range: '[2.2.0.154,)', Actual version: '[MISSING]' Mod ID: 'geckolib', Requested by: 'cakescosmetics', Expected range: '[4.4,)', Actual version: '[MISSING]' Mod ID: 'balm', Requested by: 'waystones', Expected range: '[7.2.0,)', Actual version: '[MISSING]' Mod ID: 'oculus', Requested by: 'irisflw', Expected range: '[1.6.15,)', Actual version: '[MISSING]' Mod ID: 'cupboard', Requested by: 'betterfpsdist', Expected range: '[1.20.1-1.5,)', Actual version: '[MISSING]' [00:02:53] [main/WARN]: Mod file C:\Users\ezkid\AppData\Roaming\.minecraft\libraries\net\minecraftforge\fmlcore\1.20.1-47.2.32\fmlcore-1.20.1-47.2.32.jar is missing mods.toml file [00:02:54] [main/WARN]: Mod file C:\Users\ezkid\AppData\Roaming\.minecraft\libraries\net\minecraftforge\javafmllanguage\1.20.1-47.2.32\javafmllanguage-1.20.1-47.2.32.jar is missing mods.toml file [00:02:54] [main/WARN]: Mod file C:\Users\ezkid\AppData\Roaming\.minecraft\libraries\net\minecraftforge\lowcodelanguage\1.20.1-47.2.32\lowcodelanguage-1.20.1-47.2.32.jar is missing mods.toml file [00:02:54] [main/WARN]: Mod file C:\Users\ezkid\AppData\Roaming\.minecraft\libraries\net\minecraftforge\mclanguage\1.20.1-47.2.32\mclanguage-1.20.1-47.2.32.jar is missing mods.toml file [00:02:65] [main/ERROR]: Skipping early mod setup due to previous error
  19. The Minecraft Launcher refuses to open. I click the icon on my taskbar, nothing loads. I have used Task Manager and the launcher is running, but the window just won't open. Does anyone have any suggestions on how to fix it? NOTE: The legacy launcher works completely fine, it is just the "new" launcher that has an issue.
  20. So well I run my own Pterodactyl Instance and I tried to Start my for an Minecraft Project but it keeps "Crashing" so I tried getting help here. I know that y'all need some Logs and Stuff so I will give you everything I got. Startup Command: java @user_jvm_args.txt @libraries/net/minecraftforge/forge/1.20.1-47.3.0/unix_args.txt "$@" Logs (In console): [Pterodactyl Daemon]: Updating process configuration files... [Pterodactyl Daemon]: Ensuring file permissions are set correctly, this could take a few seconds... container@pterodactyl~ Server marked as starting... [Pterodactyl Daemon]: Pulling Docker container image, this could take a few minutes to complete... Pulling from pterodactyl/yolks Status: Image is up to date for ghcr.io/pterodactyl/yolks:java_21 Digest: sha256:c515f6d0c3c4391e0a050d776f6e1fa18d3b3a8bf803541cba92fd4c7449eaa9 [Pterodactyl Daemon]: Finished pulling Docker container image container@pterodactyl~ java -version openjdk version "21.0.3" 2024-04-16 LTS OpenJDK Runtime Environment Temurin-21.0.3+9 (build 21.0.3+9-LTS) OpenJDK 64-Bit Server VM Temurin-21.0.3+9 (build 21.0.3+9-LTS, mixed mode, sharing) container@pterodactyl~ java @user_jvm_args.txt @libraries/net/minecraftforge/forge/1.20.1-47.3.0/unix_args.txt [16:05:34] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 47.3.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412] [16:05:34] [main/INFO] [cp.mo.mo.Launcher/MODLAUNCHER]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 21.0.3 by Eclipse Adoptium; OS Linux arch amd64 version 5.15.0-105-generic [16:05:34] [main/INFO] [ne.mi.fm.lo.ImmediateWindowHandler/]: ImmediateWindowProvider not loading because launch target is forgeserver [16:05:35] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/home/container/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2365!/ Service=ModLauncher Env=SERVER [16:05:35] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/fmlcore/1.20.1-47.3.0/fmlcore-1.20.1-47.3.0.jar is missing mods.toml file [16:05:35] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/javafmllanguage/1.20.1-47.3.0/javafmllanguage-1.20.1-47.3.0.jar is missing mods.toml file [16:05:35] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/lowcodelanguage/1.20.1-47.3.0/lowcodelanguage-1.20.1-47.3.0.jar is missing mods.toml file [16:05:35] [main/WARN] [ne.mi.fm.lo.mo.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/mclanguage/1.20.1-47.3.0/mclanguage-1.20.1-47.3.0.jar is missing mods.toml file [16:05:35] [main/INFO] [ne.mi.fm.lo.mo.JarInJarDependencyLocator/]: No dependencies to load found. Skipping! [16:05:37] [main/INFO] [cp.mo.mo.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeserver' with arguments [] Exception in thread "main" java.lang.RuntimeException: java.lang.NullPointerException: Cannot invoke "java.lang.Class.getMethod(String, java.lang.Class[])" because the return value of "java.lang.Class.forName(java.lang.Module, String)" is null at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:32) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.run(Launcher.java:108) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.Launcher.main(Launcher.java:78) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) at [email protected]/cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:141) Caused by: java.lang.NullPointerException: Cannot invoke "java.lang.Class.getMethod(String, java.lang.Class[])" because the return value of "java.lang.Class.forName(java.lang.Module, String)" is null at MC-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.targets.CommonLaunchHandler.runTarget(CommonLaunchHandler.java:111) at MC-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.targets.CommonLaunchHandler.serverService(CommonLaunchHandler.java:103) at MC-BOOTSTRAP/[email protected]/net.minecraftforge.fml.loading.targets.CommonServerLaunchHandler.lambda$makeService$0(CommonServerLaunchHandler.java:27) at MC-BOOTSTRAP/[email protected]/cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:30) ... 7 more container@pterodactyl~ Server marked as offline... [Pterodactyl Daemon]: ---------- Detected server process in a crashed state! ---------- [Pterodactyl Daemon]: Exit code: 1 [Pterodactyl Daemon]: Out of memory: false Debug Log: [10Jun2024 15:23:12.910] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher running: args [--launchTarget, forgeserver, --fml.forgeVersion, 47.3.0, --fml.mcVersion, 1.20.1, --fml.forgeGroup, net.minecraftforge, --fml.mcpVersion, 20230612.114412, nogui] [10Jun2024 15:23:12.914] [main/INFO] [cpw.mods.modlauncher.Launcher/MODLAUNCHER]: ModLauncher 10.0.9+10.0.9+main.dcd20f30 starting: java version 17.0.11 by Eclipse Adoptium; OS Linux arch amd64 version 5.15.0-105-generic [10Jun2024 15:23:12.982] [main/DEBUG] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Found launch services [fmlclientdev,forgeclient,minecraft,forgegametestserverdev,fmlserveruserdev,fmlclient,fmldatauserdev,forgeserverdev,forgeserveruserdev,forgeclientdev,forgeclientuserdev,forgeserver,forgedatadev,fmlserver,fmlclientuserdev,fmlserverdev,forgedatauserdev,testharness,forgegametestserveruserdev] [10Jun2024 15:23:12.995] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Found naming services : [srgtomcp] [10Jun2024 15:23:13.010] [main/DEBUG] [cpw.mods.modlauncher.LaunchPluginHandler/MODLAUNCHER]: Found launch plugins: [mixin,eventbus,slf4jfixer,object_holder_definalize,runtime_enum_extender,capability_token_subclass,accesstransformer,runtimedistcleaner] [10Jun2024 15:23:13.020] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Discovering transformation services [10Jun2024 15:23:13.066] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path GAMEDIR is /home/container [10Jun2024 15:23:13.066] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path MODSDIR is /home/container/mods [10Jun2024 15:23:13.066] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path CONFIGDIR is /home/container/config [10Jun2024 15:23:13.066] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path FMLCONFIG is /home/container/config/fml.toml [10Jun2024 15:23:13.101] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Found additional transformation services from discovery services: [10Jun2024 15:23:13.108] [main/INFO] [net.minecraftforge.fml.loading.ImmediateWindowHandler/]: ImmediateWindowProvider not loading because launch target is forgeserver [10Jun2024 15:23:13.115] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Found transformer services : [mixin,fml] [10Jun2024 15:23:13.115] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading [10Jun2024 15:23:13.116] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loading service mixin [10Jun2024 15:23:13.116] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loaded service mixin [10Jun2024 15:23:13.116] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loading service fml [10Jun2024 15:23:13.117] [main/DEBUG] [net.minecraftforge.fml.loading.LauncherVersion/CORE]: Found FMLLauncher version 1.0 [10Jun2024 15:23:13.117] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML 1.0 loading [10Jun2024 15:23:13.117] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found ModLauncher version : 10.0.9+10.0.9+main.dcd20f30 [10Jun2024 15:23:13.118] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found AccessTransformer version : 8.0.4+66+master.c09db6d7 [10Jun2024 15:23:13.118] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found EventBus version : 6.0.5+6.0.5+master.eb8e549b [10Jun2024 15:23:13.118] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found Runtime Dist Cleaner [10Jun2024 15:23:13.119] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: FML found CoreMod version : 5.1.6 [10Jun2024 15:23:13.120] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found ForgeSPI package implementation version 7.0.1+7.0.1+master.d2b38bf6 [10Jun2024 15:23:13.120] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Found ForgeSPI package specification 5 [10Jun2024 15:23:13.120] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Loaded service fml [10Jun2024 15:23:13.120] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Configuring option handling for services [10Jun2024 15:23:13.126] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services initializing [10Jun2024 15:23:13.126] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service mixin [10Jun2024 15:23:13.186] [main/DEBUG] [mixin/]: MixinService [ModLauncher] was successfully booted in cpw.mods.cl.ModuleClassLoader@24b1d79b [10Jun2024 15:23:13.201] [main/INFO] [mixin/]: SpongePowered MIXIN Subsystem Version=0.8.5 Source=union:/home/container/libraries/org/spongepowered/mixin/0.8.5/mixin-0.8.5.jar%2365!/ Service=ModLauncher Env=SERVER [10Jun2024 15:23:13.204] [main/DEBUG] [mixin/]: Initialising Mixin Platform Manager [10Jun2024 15:23:13.205] [main/DEBUG] [mixin/]: Adding mixin platform agents for container ModLauncher Root Container(ModLauncher:4f56a0a2) [10Jun2024 15:23:13.205] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for ModLauncher Root Container(ModLauncher:4f56a0a2) [10Jun2024 15:23:13.206] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container ModLauncher Root Container(ModLauncher:4f56a0a2) [10Jun2024 15:23:13.206] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for ModLauncher Root Container(ModLauncher:4f56a0a2) [10Jun2024 15:23:13.206] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container ModLauncher Root Container(ModLauncher:4f56a0a2) [10Jun2024 15:23:13.209] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service mixin [10Jun2024 15:23:13.209] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformation service fml [10Jun2024 15:23:13.209] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Setting up basic FML game directories [10Jun2024 15:23:13.209] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path GAMEDIR is /home/container [10Jun2024 15:23:13.210] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path MODSDIR is /home/container/mods [10Jun2024 15:23:13.210] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path CONFIGDIR is /home/container/config [10Jun2024 15:23:13.210] [main/DEBUG] [net.minecraftforge.fml.loading.FMLPaths/CORE]: Path FMLCONFIG is /home/container/config/fml.toml [10Jun2024 15:23:13.210] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Loading configuration [10Jun2024 15:23:13.213] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Preparing ModFile [10Jun2024 15:23:13.215] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Preparing launch handler [10Jun2024 15:23:13.215] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Using forgeserver as launch service [10Jun2024 15:23:13.268] [main/DEBUG] [net.minecraftforge.fml.loading.FMLLoader/CORE]: Received command line version data : VersionInfo[forgeVersion=47.3.0, mcVersion=1.20.1, mcpVersion=20230612.114412, forgeGroup=net.minecraftforge] [10Jun2024 15:23:13.269] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformation service fml [10Jun2024 15:23:13.270] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Current naming domain is 'srg' [10Jun2024 15:23:13.270] [main/DEBUG] [cpw.mods.modlauncher.NameMappingServiceHandler/MODLAUNCHER]: Identified name mapping providers {} [10Jun2024 15:23:13.270] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services begin scanning [10Jun2024 15:23:13.271] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service mixin [10Jun2024 15:23:13.271] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service mixin [10Jun2024 15:23:13.271] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Beginning scan trigger - transformation service fml [10Jun2024 15:23:13.271] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Initiating mod scan [10Jun2024 15:23:13.283] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModListHandler/CORE]: Found mod coordinates from lists: [] [10Jun2024 15:23:13.286] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer/CORE]: Found Mod Locators : (mods folder:null),(maven libs:null),(exploded directory:null),(minecraft:null),(userdev classpath:null) [10Jun2024 15:23:13.286] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModDiscoverer/CORE]: Found Dependency Locators : (JarInJar:null) [10Jun2024 15:23:13.515] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file with {minecraft} mods - versions {1.20.1} [10Jun2024 15:23:13.517] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /home/container/libraries/net/minecraftforge/fmlcore/1.20.1-47.3.0/fmlcore-1.20.1-47.3.0.jar [10Jun2024 15:23:13.518] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/fmlcore/1.20.1-47.3.0/fmlcore-1.20.1-47.3.0.jar is missing mods.toml file [10Jun2024 15:23:13.519] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /home/container/libraries/net/minecraftforge/javafmllanguage/1.20.1-47.3.0/javafmllanguage-1.20.1-47.3.0.jar [10Jun2024 15:23:13.519] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/javafmllanguage/1.20.1-47.3.0/javafmllanguage-1.20.1-47.3.0.jar is missing mods.toml file [10Jun2024 15:23:13.520] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /home/container/libraries/net/minecraftforge/lowcodelanguage/1.20.1-47.3.0/lowcodelanguage-1.20.1-47.3.0.jar [10Jun2024 15:23:13.520] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/lowcodelanguage/1.20.1-47.3.0/lowcodelanguage-1.20.1-47.3.0.jar is missing mods.toml file [10Jun2024 15:23:13.521] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /home/container/libraries/net/minecraftforge/mclanguage/1.20.1-47.3.0/mclanguage-1.20.1-47.3.0.jar [10Jun2024 15:23:13.521] [main/WARN] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Mod file /home/container/libraries/net/minecraftforge/mclanguage/1.20.1-47.3.0/mclanguage-1.20.1-47.3.0.jar is missing mods.toml file [10Jun2024 15:23:13.592] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /home/container/libraries/net/minecraftforge/forge/1.20.1-47.3.0/forge-1.20.1-47.3.0-universal.jar [10Jun2024 15:23:13.597] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file forge-1.20.1-47.3.0-universal.jar with {forge} mods - versions {47.3.0} [10Jun2024 15:23:13.607] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from , it does not contain dependency information. [10Jun2024 15:23:13.608] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from forge-1.20.1-47.3.0-universal.jar, it does not contain dependency information. [10Jun2024 15:23:13.608] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from mclanguage-1.20.1-47.3.0.jar, it does not contain dependency information. [10Jun2024 15:23:13.608] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from javafmllanguage-1.20.1-47.3.0.jar, it does not contain dependency information. [10Jun2024 15:23:13.608] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from fmlcore-1.20.1-47.3.0.jar, it does not contain dependency information. [10Jun2024 15:23:13.608] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.AbstractJarFileDependencyLocator/]: Failed to load resource META-INF/jarjar/metadata.json from lowcodelanguage-1.20.1-47.3.0.jar, it does not contain dependency information. [10Jun2024 15:23:13.670] [main/INFO] [net.minecraftforge.fml.loading.moddiscovery.JarInJarDependencyLocator/]: No dependencies to load found. Skipping! [10Jun2024 15:23:13.672] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file with {minecraft} mods - versions {1.20.1} [10Jun2024 15:23:13.675] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file / with languages [LanguageSpec[languageName=minecraft, acceptedVersions=1]] [10Jun2024 15:23:13.676] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Considering mod file candidate /home/container/libraries/net/minecraftforge/forge/1.20.1-47.3.0/forge-1.20.1-47.3.0-universal.jar [10Jun2024 15:23:13.677] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileInfo/LOADING]: Found valid mod file forge-1.20.1-47.3.0-universal.jar with {forge} mods - versions {47.3.0} [10Jun2024 15:23:13.677] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Loading mod file /home/container/libraries/net/minecraftforge/forge/1.20.1-47.3.0/forge-1.20.1-47.3.0-universal.jar with languages [LanguageSpec[languageName=javafml, acceptedVersions=[24,]]] [10Jun2024 15:23:13.712] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod field_to_method with Javascript path coremods/field_to_method.js [10Jun2024 15:23:13.713] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod field_to_instanceof with Javascript path coremods/field_to_instanceof.js [10Jun2024 15:23:13.713] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod add_bouncer_method with Javascript path coremods/add_bouncer_method.js [10Jun2024 15:23:13.713] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFileParser/LOADING]: Found coremod method_redirector with Javascript path coremods/method_redirector.js [10Jun2024 15:23:13.713] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/field_to_method.js [10Jun2024 15:23:13.713] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/field_to_instanceof.js [10Jun2024 15:23:13.713] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/add_bouncer_method.js [10Jun2024 15:23:13.714] [main/DEBUG] [net.minecraftforge.fml.loading.moddiscovery.ModFile/LOADING]: Found coremod coremods/method_redirector.js [10Jun2024 15:23:13.715] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: End scan trigger - transformation service fml [10Jun2024 15:23:13.765] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found 3 language providers [10Jun2024 15:23:13.766] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider minecraft, version 1.0 [10Jun2024 15:23:13.766] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider lowcodefml, version 47 [10Jun2024 15:23:13.767] [main/DEBUG] [net.minecraftforge.fml.loading.LanguageLoadingProvider/CORE]: Found language provider javafml, version 47 [10Jun2024 15:23:13.771] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Configured system mods: [minecraft, forge] [10Jun2024 15:23:13.771] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Found system mod: minecraft [10Jun2024 15:23:13.771] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/]: Found system mod: forge [10Jun2024 15:23:13.774] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/LOADING]: Found 0 mod requirements (0 mandatory, 0 optional) [10Jun2024 15:23:13.774] [main/DEBUG] [net.minecraftforge.fml.loading.ModSorter/LOADING]: Found 0 mod requirements missing (0 mandatory, 0 optional) [10Jun2024 15:23:14.502] [main/DEBUG] [cpw.mods.modlauncher.TransformationServicesHandler/MODLAUNCHER]: Transformation services loading transformers [10Jun2024 15:23:14.503] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service mixin [10Jun2024 15:23:14.503] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service mixin [10Jun2024 15:23:14.503] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initializing transformers for transformation service fml [10Jun2024 15:23:14.504] [main/DEBUG] [net.minecraftforge.fml.loading.FMLServiceProvider/CORE]: Loading coremod transformers [10Jun2024 15:23:14.504] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_method.js [10Jun2024 15:23:14.803] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [10Jun2024 15:23:14.804] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/field_to_instanceof.js [10Jun2024 15:23:14.966] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [10Jun2024 15:23:14.967] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/add_bouncer_method.js [10Jun2024 15:23:15.014] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [10Jun2024 15:23:15.015] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: Loading CoreMod from coremods/method_redirector.js [10Jun2024 15:23:15.183] [main/DEBUG] [net.minecraftforge.coremod.CoreModEngine/COREMOD]: CoreMod loaded successfully [10Jun2024 15:23:15.197] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@608fe01f to Target : CLASS {Lnet/minecraft/world/level/biome/Biome;} {} {V} [10Jun2024 15:23:15.198] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5b7c8930 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/Structure;} {} {V} [10Jun2024 15:23:15.198] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@58867cd5 to Target : CLASS {Lnet/minecraft/world/effect/MobEffectInstance;} {} {V} [10Jun2024 15:23:15.199] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@40e32762 to Target : CLASS {Lnet/minecraft/world/level/block/LiquidBlock;} {} {V} [10Jun2024 15:23:15.199] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5a8ab2 to Target : CLASS {Lnet/minecraft/world/item/BucketItem;} {} {V} [10Jun2024 15:23:15.199] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@3f50b680 to Target : CLASS {Lnet/minecraft/world/level/block/StairBlock;} {} {V} [10Jun2024 15:23:15.199] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@54db056b to Target : CLASS {Lnet/minecraft/world/level/block/FlowerPotBlock;} {} {V} [10Jun2024 15:23:15.199] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@d5af0a5 to Target : CLASS {Lnet/minecraft/world/item/ItemStack;} {} {V} [10Jun2024 15:23:15.200] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@5981f4a6 to Target : CLASS {Lnet/minecraft/network/play/client/CClientSettingsPacket;} {} {V} [10Jun2024 15:23:15.200] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@63dfada0 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/SwampHutPiece;} {} {V} [10Jun2024 15:23:15.200] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@63dfada0 to Target : CLASS {Lnet/minecraft/server/commands/RaidCommand;} {} {V} [10Jun2024 15:23:15.200] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@63dfada0 to Target : CLASS {Lnet/minecraft/world/entity/monster/Strider;} {} {V} [10Jun2024 15:23:15.200] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@63dfada0 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/OceanMonumentPieces$OceanMonumentPiece;} {} {V} [10Jun2024 15:23:15.200] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@63dfada0 to Target : CLASS {Lnet/minecraft/world/entity/monster/Zombie;} {} {V} [10Jun2024 15:23:15.200] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@63dfada0 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/templatesystem/StructureTemplate;} {} {V} [10Jun2024 15:23:15.201] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@63dfada0 to Target : CLASS {Lnet/minecraft/world/entity/animal/frog/Tadpole;} {} {V} [10Jun2024 15:23:15.201] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@63dfada0 to Target : CLASS {Lnet/minecraft/world/level/NaturalSpawner;} {} {V} [10Jun2024 15:23:15.201] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@63dfada0 to Target : CLASS {Lnet/minecraft/world/entity/raid/Raid;} {} {V} [10Jun2024 15:23:15.201] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@63dfada0 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/WoodlandMansionPieces$WoodlandMansionPiece;} {} {V} [10Jun2024 15:23:15.201] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@63dfada0 to Target : CLASS {Lnet/minecraft/world/level/levelgen/PhantomSpawner;} {} {V} [10Jun2024 15:23:15.201] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@63dfada0 to Target : CLASS {Lnet/minecraft/world/entity/ai/village/VillageSiege;} {} {V} [10Jun2024 15:23:15.202] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@63dfada0 to Target : CLASS {Lnet/minecraft/world/entity/monster/Evoker$EvokerSummonSpellGoal;} {} {V} [10Jun2024 15:23:15.202] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@63dfada0 to Target : CLASS {Lnet/minecraft/world/entity/npc/Villager;} {} {V} [10Jun2024 15:23:15.202] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@63dfada0 to Target : CLASS {Lnet/minecraft/world/entity/monster/ZombieVillager;} {} {V} [10Jun2024 15:23:15.202] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@63dfada0 to Target : CLASS {Lnet/minecraft/world/entity/animal/horse/SkeletonTrapGoal;} {} {V} [10Jun2024 15:23:15.202] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@63dfada0 to Target : CLASS {Lnet/minecraft/world/level/levelgen/structure/structures/OceanRuinPieces$OceanRuinPiece;} {} {V} [10Jun2024 15:23:15.202] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@63dfada0 to Target : CLASS {Lnet/minecraft/server/commands/SummonCommand;} {} {V} [10Jun2024 15:23:15.203] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@63dfada0 to Target : CLASS {Lnet/minecraft/world/level/levelgen/PatrolSpawner;} {} {V} [10Jun2024 15:23:15.203] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@63dfada0 to Target : CLASS {Lnet/minecraft/world/entity/npc/CatSpawner;} {} {V} [10Jun2024 15:23:15.203] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@63dfada0 to Target : CLASS {Lnet/minecraft/world/entity/EntityType;} {} {V} [10Jun2024 15:23:15.203] [main/DEBUG] [cpw.mods.modlauncher.TransformStore/MODLAUNCHER]: Adding transformer net.minecraftforge.coremod.transformer.CoreModClassTransformer@63dfada0 to Target : CLASS {Lnet/minecraft/world/entity/monster/Spider;} {} {V} [10Jun2024 15:23:15.203] [main/DEBUG] [cpw.mods.modlauncher.TransformationServiceDecorator/MODLAUNCHER]: Initialized transformers for transformation service fml [10Jun2024 15:23:15.429] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] [10Jun2024 15:23:15.429] [main/DEBUG] [mixin/]: Processing launch tasks for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] [10Jun2024 15:23:15.429] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(minecraft) [10Jun2024 15:23:15.430] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(minecraft) [10Jun2024 15:23:15.430] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(minecraft) [10Jun2024 15:23:15.430] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(minecraft) [10Jun2024 15:23:15.430] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(minecraft) [10Jun2024 15:23:15.430] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)] [10Jun2024 15:23:15.430] [main/DEBUG] [mixin/]: Adding mixin platform agents for container SecureJarResource(forge) [10Jun2024 15:23:15.430] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentMinecraftForge for SecureJarResource(forge) [10Jun2024 15:23:15.430] [main/DEBUG] [mixin/]: MixinPlatformAgentMinecraftForge rejected container SecureJarResource(forge) [10Jun2024 15:23:15.430] [main/DEBUG] [mixin/]: Instancing new MixinPlatformAgentDefault for SecureJarResource(forge) [10Jun2024 15:23:15.431] [main/DEBUG] [mixin/]: MixinPlatformAgentDefault accepted container SecureJarResource(forge) [10Jun2024 15:23:15.431] [main/DEBUG] [mixin/]: Processing prepare() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)] [10Jun2024 15:23:15.461] [main/DEBUG] [mixin/]: inject() running with 3 agents [10Jun2024 15:23:15.461] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:ModLauncher Root Container(ModLauncher:4f56a0a2)] [10Jun2024 15:23:15.462] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(minecraft)] [10Jun2024 15:23:15.462] [main/DEBUG] [mixin/]: Processing inject() for PlatformAgent[MixinPlatformAgentDefault:SecureJarResource(forge)] [10Jun2024 15:23:15.462] [main/INFO] [cpw.mods.modlauncher.LaunchServiceHandler/MODLAUNCHER]: Launching target 'forgeserver' with arguments [nogui] [10Jun2024 15:23:15.494] [main/DEBUG] [mixin/]: Error cleaning class output directory: .mixin.out [10Jun2024 15:23:15.496] [main/DEBUG] [mixin/]: Preparing mixins for MixinEnvironment[DEFAULT] Installation Logs: JVM info: Eclipse Adoptium - 21.0.3 - 21.0.3+9-LTS java.net.preferIPv4Stack=true Current Time: 10/06/2024 15:44:36 Host: files.minecraftforge.net [172.67.161.211, 104.21.58.163] Host: maven.minecraftforge.net [104.21.58.163, 172.67.161.211] Host: libraries.minecraft.net [13.107.246.67] Host: launchermeta.mojang.com [13.107.246.67] Host: piston-meta.mojang.com [13.107.246.67] Host: sessionserver.mojang.com [13.107.246.67] Host: authserver.mojang.com [Unknown] Data kindly mirrored by Forge at https://files.minecraftforge.net/ java.awt.HeadlessException: No X11 DISPLAY variable was set, or no headful library support was found, but this program performed an operation which requires it, at java.desktop/java.awt.GraphicsEnvironment.checkHeadless(GraphicsEnvironment.java:166) at java.desktop/java.awt.Window.init(Window.java:501) at java.desktop/java.awt.Window.<init>(Window.java:453) at java.desktop/java.awt.Window.<init>(Window.java:608) at java.desktop/java.awt.Dialog.<init>(Dialog.java:674) at java.desktop/java.awt.Dialog.<init>(Dialog.java:519) at java.desktop/javax.swing.JDialog.<init>(JDialog.java:426) at java.desktop/javax.swing.JOptionPane.createDialog(JOptionPane.java:957) at net.minecraftforge.installer.InstallerPanel.run(InstallerPanel.java:258) at net.minecraftforge.installer.SimpleInstaller.launchGui(SimpleInstaller.java:182) at net.minecraftforge.installer.SimpleInstaller.main(SimpleInstaller.java:154) Exception in thread "main" java.awt.HeadlessException: No X11 DISPLAY variable was set, or no headful library support was found, but this program performed an operation which requires it, at java.desktop/java.awt.GraphicsEnvironment.checkHeadless(GraphicsEnvironment.java:166) at java.desktop/java.awt.Window.<init>(Window.java:553) at java.desktop/java.awt.Frame.<init>(Frame.java:428) at java.desktop/java.awt.Frame.<init>(Frame.java:393) at java.desktop/javax.swing.SwingUtilities$SharedOwnerFrame.<init>(SwingUtilities.java:1925) at java.desktop/javax.swing.SwingUtilities.getSharedOwnerFrame(SwingUtilities.java:2001) at java.desktop/javax.swing.JOptionPane.getRootFrame(JOptionPane.java:1696) at java.desktop/javax.swing.JOptionPane.showOptionDialog(JOptionPane.java:875) at java.desktop/javax.swing.JOptionPane.showMessageDialog(JOptionPane.java:677) at java.desktop/javax.swing.JOptionPane.showMessageDialog(JOptionPane.java:648) at net.minecraftforge.installer.SimpleInstaller.launchGui(SimpleInstaller.java:185) at net.minecraftforge.installer.SimpleInstaller.main(SimpleInstaller.java:154) And yeah that was hopefully everything needed.
  21. Hello! I'm having a problem generating data from registered blocks, I've looked through everything and haven't found anything that could be causing this problem, so I come to the Forge community as a last resort. The log information is in a gist with the file data debug.log. This is the project link on GitHub: GitHub: https://github.com/eterium-network/quantum-praeda Solved, the problem was in the structure of the LootTables file generation class. Thank you in advance for the community's help! Original Text:
  22. So I'm trying to get my custom enchantment book to spawn in vanilla loot table chests like jungle temple or desert pyramid, which it'll spawn the enchantment book inside the chest, but it wont have the actual enchantment provided This is for Forge 1.20.1 on intellij, I'm still a very new modder/coder in general,
  23. I have been experiencing a bug when trying to load the latest 1.20.6 mod development kit. The project can't be configured because it's looking for a minecraftforge jar file that doesn't exist. This is preventing anything from loading. The link in question that doesn't exist: https://maven.minecraftforge.net/org/lwjgl/lwjgl-freetype/3.3.3/lwjgl-freetype-3.3.3-natives-macos-patch.jar I am using intellij
  24. I have a server that I own with my friend (we use a third-party server site like Akliz), and we play Cottage Witch on there, specifically version 1.16.6 as that's the newest version our server provider can support. We're having a great time, but we noticed a big issue: we can't make wool out of string. We have SO much string, but wool is trickier for us to get. Normally, on every other version of Minecraft we've played, we've been able to make wool from string. I even play a slightly older version of the modpack (1.16.0), and I'm able to make wool out of string and even string out of wool. However, in 1.16.6, we can't. I've looked through all of the mods I could think of (anything with tweak or craft in the name as well as the Create mod, JEI, farmers' mods, etc.), but I can't find anything that might be overriding the recipe. Is there something I'm missing? The recipe won't work with four pieces or even nine pieces of string. I've looked online for any sort of suggestions from someone else who might have a similar issue, but their issues were other mods that aren't in the Cottage Witch modpack. Any suggestions would be appreciated! Thank you. I just want to make the game enjoyable and relaxing for my friend, and this string/wool issue is getting really annoying in our adventures. I appreciate any tips or ideas. Thanks in advanced!
  25. Creating a new world with custom ore generation works perfectly fine. However, if I exit the world and then reload, as soon as I load a new chunk, the game crashes when it tries to generate the modded ore. This was apparently also a problem with both NeoForge and Fabric and I don’t believe it to be an issue with my code after looking at the stacktrace and seeing similar issues that other have had. Not sure if it helps, but here is the post regarding the same issue on NeoForge as well as how they fixed the issue: NeoForge Generation Issue Edit: I’m using the most recent version of Forge 1.20.6
×
×
  • Create New...

Important Information

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