Jump to content

[1.10.2] Spawning structures using Structure Blocks files


Recommended Posts

Posted

I'm wondering if there is a way to spawn a structure using the Structure Block exported file. For instance, i want to spawn this structure in my world

bwTfVdC.png

But instead of defining a class that tells block by block wich block to set in the world i want that the world generator actually "loads" the nbt files containing the structure (generated using the structure block)

For instance this file

https://mega.nz/#!1M9EEDhA!MGMd4w9ii67jutDBh_s5w1ZdT7uYpVPhJtGEe1JqfNk

Is this possibile or i still have to defining that big file? If it is how can i make it?

Don't blame me if i always ask for your help. I just want to learn to be better :)

Posted

EDIT: I've looked at the Strucutre Block class and i found out how to load a structure. But for some reason if i generate a new world and (for example) try to load this structure right-clicking an item it seems like the game can't find the structure (wich is stored in the structures folder into resources). This is the dummy item class i use to "spawn" the structure

public class ItemMW extends Item {

public ItemMW(CreativeTabs tab) {
	this.setCreativeTab(tab);
}

@Override
public ActionResult<ItemStack> onItemRightClick(ItemStack itemStackIn, World worldIn, EntityPlayer playerIn,
		EnumHand hand) {
	if (!worldIn.isRemote)
		this.func_189714_c(playerIn.getPosition(), worldIn);
	return super.onItemRightClick(itemStackIn, worldIn, playerIn, hand);
}

public boolean func_189714_c(BlockPos pos, World world) {
	WorldServer worldserver = (WorldServer) world;
	MinecraftServer minecraftserver = world.getMinecraftServer();
	TemplateManager templatemanager = worldserver.getStructureTemplateManager();
	Template template = templatemanager.func_189942_b(minecraftserver, new ResourceLocation(MW.MODID + ":" + "structures/pagoda.nbt"));

	if(template == null)
	{
		System.out.println("NO STRUCTURE");
		return false;
	}
	BlockPos blockpos2 = template.getSize();
	IBlockState iblockstate = world.getBlockState(pos);
	world.notifyBlockUpdate(pos, iblockstate, iblockstate, 3);
	PlacementSettings placementsettings = (new PlacementSettings()).setMirror(Mirror.NONE)
			.setRotation(Rotation.NONE).setIgnoreEntities(false).setChunk((ChunkPos) null)
			.setReplacedBlock((Block) null).setIgnoreStructureBlock(false);

	template.addBlocksToWorldChunk(world, pos.add(0, 1, 0), placementsettings);
	return true;
}

}

 

The NBT file is stored into resources-assets-mw-structures-pagoda.nbt (mw is the mod id)

EDIT 2: Found out a way to make it works. The problem was (as i suspected) in the ResourceLocation, that for some reason pointed at a wrong location. By changing that i can spawn my structure and also integrating this function into (for example) a biome class i can spawn it randomly in the world using the nbt file :D

public void loadStructure(BlockPos pos, World world, String name) {
	WorldServer worldserver = (WorldServer) world;
	MinecraftServer minecraftserver = world.getMinecraftServer();
	TemplateManager templatemanager = worldserver.getStructureTemplateManager();
	ResourceLocation loc = new ResourceLocation(MW.MODID, name);
	Template template = templatemanager.func_189942_b(minecraftserver, loc);

	if (template != null) {
		IBlockState iblockstate = world.getBlockState(pos);
		world.notifyBlockUpdate(pos, iblockstate, iblockstate, 3);
		PlacementSettings placementsettings = (new PlacementSettings()).setMirror(Mirror.NONE)
				.setRotation(Rotation.NONE).setIgnoreEntities(false).setChunk((ChunkPos) null)
				.setReplacedBlock((Block) null).setIgnoreStructureBlock(false);

		template.addBlocksToWorldChunk(world, pos.add(0, 1, 0), placementsettings);
	}
}

  • Like 2

Don't blame me if i always ask for your help. I just want to learn to be better :)

Posted

This seems awesome. I'm trying to figure out how to use it, though... I'm not really sure how to check for a block, then determine if it's a block above ground? Like, I want the structure to spawn on the ground instead of underground, or in the air, or anything like that. Granted, I can't get it to spawn in any of those places either... This is my surface (overworld) generator code:

 

    //The actual generation method.
    private void generateSurface(World world, Random rand, int chunkX, int chunkZ) {
        for (int k = 0; k < 16; k++)
        {
            int firstBlockXCoord = chunkX + rand.nextInt(16);
            int firstBlockZCoord = chunkZ + rand.nextInt(16);
            //Will be found between y = 0 and y = 20
            int worldY = rand.nextInt(20);
            BlockPos worldPos = new BlockPos(firstBlockXCoord, worldY, firstBlockZCoord);
                //The 10 as the second parameter sets the maximum vein size
            IBlockState state = world.getBlockState(worldPos);
		if (state.getBlock().canPlaceBlockAt(world, worldPos)){
			SureenStructureGen structureGen = new SureenStructureGen();
			structureGen.loadStructure(worldPos, world, "Pony Home");
		}
        }
    }

Posted

How do you export an NBT file? What program do you use? Or how do you do it??

Disclaimer:  I been told to keep my opinions to myself, to shut up and that I am spreading lies and misinformation or even that my methods are unorthodox and or too irregular. Here are my suggestions take it or leave it.

Posted

@SureenInk

I simply pass this block pos as position to spawn the structure

worldIn.getTopSolidOrLiquidBlock(pos)

 

Consider that i use this in the decoration function of my biome, but i guess that you can use it in the world generator too

 

@trollworkout

The nbt file is generated using Structure Block in the game it-self. Note that the structure can't be larger than 32x32x32. Once i saved the strucutre i then put into a folder (in my mod assets) called "structures", so i can load it in every world i want

Don't blame me if i always ask for your help. I just want to learn to be better :)

Posted

Ahh, yeah... I never was taught about decoration stuff at all. I was only shown how to use the world generator. I lack the ability to learn without being taught, so I've never done it any other way ^^" I'll give using that line a try, though, thanks.

Posted

Ahahahaah just remember that the getTopOrSolidBlock works for the first block of the structure (so you can have a structure that is one block on ground and the rest in the air). I'm trying to find how to get the structure dimension to check if there's enough space to generate, i'll update as soon as i find it ;)

Don't blame me if i always ask for your help. I just want to learn to be better :)

Posted

Ok, just figured out how to get the exact size of the strucutre (and it was easier than i thought). Just use template.getSize(). Note that despite the fact it return a block pos this will have the size of the structure. So, if you do template.getSize().getX() you'll have how "long" the structure is (how many blocks on the X axis the structure have). If you do template.getSize().getZ() you'll get how "deep" the structure is (how many blocks on the Z axis the structure have). If you do template.getSize().getY() you'll get how "tall" the structure is (how many blocks on the Y axis the structure have). Knowing this is then easy to check if a structure can spawn. For example i use this for loop that (in case the structure can spawn) will place it at the center of the choosen area

for (int i = -1 * template.getSize().getX()/2; i < template.getSize().getX()/2 + 1; i++) {
				for (int j = -1 * template.getSize().getZ(); j < template.getSize().getZ()/2 + 1; j++) {
					if (!world.getBlockState(pos.add(i, 0, j)).getBlock().equals(Blocks.GRASS)
							&& !world.getBlockState(pos.add(i, 0, j)).getBlock().equals(Blocks.DIRT)) {
						flag = false;
						break;
					}
				}
			}

 

Don't blame me if i always ask for your help. I just want to learn to be better :)

Posted

Do you know if there's a way to make multiple structures spawn next to each other? Like, if my structure requires 4 structure blocks to spawn it. Is there a way I could tell it like... "spawn this first part, then go over x squares and spawn part 2"?

Posted

I guess you can just call the same code but with different position. For instance, let's say you have 2 parts of the structure, and the second is 20 block away on the X axis from the first part. I think you can generate the first part passing a position as a parameter and then re-call that function but passing position.add(20, 0, 0) and of course the name of the other structure part

Don't blame me if i always ask for your help. I just want to learn to be better :)

  • 5 months later...
Posted (edited)

Okay, I'm very confused. Please, explain this to me like I'm five. 

Basically, what I need is a mod that creates a central folder. Into this folder, I can put pre-created nbt structures, which will then randomly generate upon creating a new world. Is that what this is? If so, where can I download it?

Edited by WalterTheMighty
contained slur
Posted

As diesieben said this was for an help on generating structures using nbt files created by structure blocks. By the way i heard once there was a mod that put nbt structures into the overworld as natural structures, but i don't remember its name unfortunately

Don't blame me if i always ask for your help. I just want to learn to be better :)

  • 1 month later...
Posted (edited)

Forgive me for opening up an old topic, but does this work anymore?

I have recently been designing a mod (for 1.10.2) that requires structures, and came across this (very good) solution I used basically the exact same code as Jimil (except i replaced the func_ with getTemplate) and I know my structure is working as I can load it from a structure block, I have it print out the contents of template and player location and resource location, it doesn't give me any errors, it just doesn't load. can anyone here help me?

Edited by Acrogenous
  • 2 weeks later...
Posted (edited)
  On 5/13/2017 at 1:34 PM, Acrogenous said:

Forgive me for opening up an old topic, but does this work anymore?

I have recently been designing a mod (for 1.10.2) that requires structures, and came across this (very good) solution I used basically the exact same code as Jimil (except i replaced the func_ with getTemplate) and I know my structure is working as I can load it from a structure block, I have it print out the contents of template and player location and resource location, it doesn't give me any errors, it just doesn't load. can anyone here help me?

Expand  

I have the same problem now, and nothing is generated in the world (on test item right click), no metter do I use get or getTemplate functions, maybe someone can help? I tried everything... Here is my code:

 

	if (!worldIn.isRemote) {
		WorldServer worldserver = (WorldServer) worldIn;
		MinecraftServer minecraftserver = worldIn.getMinecraftServer();
		TemplateManager templatemanager = worldserver.getStructureTemplateManager();
		 
		Template template = templatemanager.get(minecraftserver, new ResourceLocation(Reference.MOD_ID,"structures/test2.nbt"));
		Utils.getLogger().info("=======1======="+template);
		if (template != null) {   
			worldIn.notifyBlockUpdate(pos, iblockstate, iblockstate, 3);
			PlacementSettings placementsettings = (new PlacementSettings()).setMirror(Mirror.NONE)
					.setRotation(Rotation.NONE).setIgnoreEntities(false).setChunk((ChunkPos) null)
					.setReplacedBlock((Block) null).setIgnoreStructureBlock(false);

			template.addBlocksToWorld(worldIn, pos.add(0, 1, 0), placementsettings);
			Utils.getLogger().info("========2======="+template);
		}
	}

 

Console gives me this result for loggers:

=======1=======net.minecraft.world.gen.structure.template.Template@1bca1033
========2=======net.minecraft.world.gen.structure.template.Template@1bca1033

Edited by myWitch
  • 2 weeks later...
Posted

The reason could be that you are searching for this resource
 

new ResourceLocation(Reference.MOD_ID,"structures/test2.nbt")


This will actually search for the file in structures/structures/test2.nbt, wich i believe doesn't exist. So you should just type the name of the structure in your structures folder (if is not in a sub folder). Searching for this resource instead will mostly solve your issue. That was my bad that i didn't specified earlier and i'm sorry for this. Let me know if it works after this change ;)
 

new ResourceLocation(Reference.MOD_ID,"test2.nbt")

Don't blame me if i always ask for your help. I just want to learn to be better :)

Posted
  On 6/6/2017 at 7:03 PM, JimiIT92 said:

The reason could be that you are searching for this resource
 

new ResourceLocation(Reference.MOD_ID,"structures/test2.nbt")


This will actually search for the file in structures/structures/test2.nbt, wich i believe doesn't exist. So you should just type the name of the structure in your structures folder (if is not in a sub folder). Searching for this resource instead will mostly solve your issue. That was my bad that i didn't specified earlier and i'm sorry for this. Let me know if it works after this change ;)
 

new ResourceLocation(Reference.MOD_ID,"test2.nbt")
Expand  

JimilT92, thank you very much for your answer. I tried this too with no success ((( actually I tried tones of variants, including rewriting of addBlocksToWorld function... Here is the last variant that gives not null template, but nothing spawns, so I'm really stuck on it :((( I put this code right into onItemRightClick, but I think it doesn't matter if I put it somewhere as a separate function... Test file t1.nbt is in structures folder and I checked it by using structure block loading - it's good. You can also see some variants that I've tried in commented lines... If you can give me any ideas I would be realy happy )) It's the last thing to be solved for my mod.

 

if (!worldIn.isRemote) {
					WorldServer worldserver = (WorldServer) worldIn;
					MinecraftServer minecraftserver = worldIn.getMinecraftServer();
					TemplateManager templatemanager = worldserver.getStructureTemplateManager();
					ResourceLocation loc = new ResourceLocation(Reference.MOD_ID,"structures/t1.nbt");
					Template template = templatemanager.getTemplate(minecraftserver, loc); //.get(minecraftserver, new ResourceLocation(Reference.MOD_ID,"t1.nbt"));
					Utils.getLogger().info("=======0======="+template);
					if (template != null) {   
						worldIn.notifyBlockUpdate(pos, iblockstate, iblockstate, 3);
						PlacementSettings placementsettings = (new PlacementSettings()).setMirror(Mirror.NONE)
								.setRotation(Rotation.NONE).setIgnoreEntities(false).setChunk((ChunkPos) null)
								.setReplacedBlock((Block) null).setIgnoreStructureBlock(false);
						
						Utils.getLogger().info("=======1======="+loc);
						
						//template.addBlocksToWorld(worldIn, pos, new BlockRotationProcessor(pos, placementsettings), placementsettings, 1);
						
						//template.addBlocksToWorld(worldIn, pos.add(0, 1, 0), placementsettings);
						template.addBlocksToWorldChunk(worldIn, pos, placementsettings); 
						
						Utils.getLogger().info("========2======="+template);
					}
				}

 

Posted
ResourceLocation loc = new ResourceLocation(Reference.MOD_ID,"structures/t1.nbt");

- if I change this code to the one below - it's also not working, I tried indeed ((

ResourceLocation loc = new ResourceLocation(Reference.MOD_ID,"t1.nbt");
Posted

Mmmm, then i have no clue why this is not working for you :/ I'll post here an example of working class i'm using that spawns an obelisk in the world

	public class WorldGenObelisk {
	    private int mirror;
    private int rotation;
	    public WorldGenObelisk(BlockPos pos, World world) {
        mirror = MW.rand.nextInt(Mirror.values().length);
        rotation = MW.rand.nextInt(Rotation.values().length);
        
        this.loadStructure(pos, world, "obelisk", true);
	    }
	    public void loadStructure(BlockPos pos, World world, String name, boolean check) {
        boolean flag = false;
        if (!world.isRemote) {
            WorldServer worldserver = (WorldServer) world;
            MinecraftServer minecraftserver = world.getMinecraftServer();
            TemplateManager templatemanager = worldserver.getStructureTemplateManager();
            ResourceLocation loc = new ResourceLocation(MW.MODID, name);
            Template template = templatemanager.func_189942_b(minecraftserver, loc);
	            if (template != null) {
                IBlockState iblockstate = world.getBlockState(pos);
                world.notifyBlockUpdate(pos, iblockstate, iblockstate, 3);
	                flag = true;
                if (check) {
                    
                    for (int i = 0; i < template.getSize().getX(); i++) {
                        for (int j = 0; j < template.getSize().getZ(); j++) {
                            BlockPos down = pos.add(i, -1, j);
                            Block b = world.getBlockState(down).getBlock();
                            if (!b.equals(Blocks.SAND)) {
                                flag = false;
                            }
                        }
                    }
                }
	                if (flag) {
	                    PlacementSettings placementsettings = (new PlacementSettings()).setMirror(Mirror.values()[mirror])
                            .setRotation(Rotation.values()[rotation]).setIgnoreEntities(false).setChunk((ChunkPos) null)
                            .setReplacedBlock((Block) null).setIgnoreStructureBlock(true);
                    
                    template.addBlocksToWorldChunk(world, pos.down(), placementsettings);
                }
	            }
        }
    }
}


This class is called from the WorldGenMinable class, in the generateOverworld method (so where you put the code to spawn ores) by doing this

if (world.getBiomeGenForCoords(new BlockPos(x, 60, z)).equals(Biomes.DESERT) && random.nextInt(70) == 1) {
            int randPosX = x + random.nextInt(35);
            int randPosZ = z + random.nextInt(35);
            int randPosY = 60 + random.nextInt(255 - 64);
            BlockPos position = new BlockPos(randPosX, randPosY, randPosZ);
            if (!(world.getBlockState(world.getTopSolidOrLiquidBlock(position)).getBlock().equals(Blocks.WATER)))
                new WorldGenObelisk(world.getTopSolidOrLiquidBlock(position), world);
        }



Notice that in the structure class it will also check if the spawn area is a valid area, you can remove that if you want. I hope this help, if not you can try looking at how Structure Blocks load structures and edit that code (since is exactly what i've done, maybe some small changes has been made but since is still 1.10.2 i don't think so)

  • Like 2

Don't blame me if i always ask for your help. I just want to learn to be better :)

Posted
  On 6/6/2017 at 8:36 PM, myWitch said:

if I change this code to the one below - it's also not working,

Expand  

What did you see happening when you set breakpoints and used the debugger to step through the code that's trying to generate your structure?

  • Like 1

The debugger is a powerful and necessary tool in any IDE, so learn how to use it. You'll be able to tell us more and get better help here if you investigate your runtime problems in the debugger before posting.

Posted (edited)

Thank you very much for your attention, finally it's working! I'll tell you what was wrong, maybe someone will need it. I started with deep debug of  these lines:
ResourceLocation loc = new ResourceLocation(Reference.MOD_ID,"t1.nbt");

Template template = templatemanager.getTemplate(minecraftserver, loc); 

And I've found that now minecraft simply adds ".nbt", no need to put it here in a file name! So, file extension was doubles and I've got no structure as a result.

Edited by myWitch
Posted

 Here I'll show the final code that definitly works for me:

 //spawn structure  
				if (!worldIn.isRemote) {
					WorldServer worldserver = (WorldServer) worldIn;
					MinecraftServer minecraftserver = worldIn.getMinecraftServer();
					TemplateManager templatemanager = worldserver.getStructureTemplateManager();
					ResourceLocation loc = new ResourceLocation(Reference.MOD_ID,"t1");
					Template template = templatemanager.getTemplate(minecraftserver, loc); 
					Utils.getLogger().info("=======0======="+template);
					if (template != null) {   
						worldIn.notifyBlockUpdate(pos, iblockstate, iblockstate, 3);
						PlacementSettings placementsettings = (new PlacementSettings()).setMirror(Mirror.NONE)
								.setRotation(Rotation.NONE).setIgnoreEntities(false).setChunk((ChunkPos) null)
								.setReplacedBlock((Block) null).setIgnoreStructureBlock(false);
						
						Utils.getLogger().info("=======1======="+loc);
						
						 
						template.addBlocksToWorld(worldIn, pos, placementsettings);
						 
						Utils.getLogger().info("========2======="+pos);
					}
				}

 

  • Like 3
Posted
  On 6/9/2017 at 7:34 PM, myWitch said:

 Here I'll show the final code that definitly works for me:

 //spawn structure  
				if (!worldIn.isRemote) {
					WorldServer worldserver = (WorldServer) worldIn;
					MinecraftServer minecraftserver = worldIn.getMinecraftServer();
					TemplateManager templatemanager = worldserver.getStructureTemplateManager();
					ResourceLocation loc = new ResourceLocation(Reference.MOD_ID,"t1");
					Template template = templatemanager.getTemplate(minecraftserver, loc); 
					Utils.getLogger().info("=======0======="+template);
					if (template != null) {   
						worldIn.notifyBlockUpdate(pos, iblockstate, iblockstate, 3);
						PlacementSettings placementsettings = (new PlacementSettings()).setMirror(Mirror.NONE)
								.setRotation(Rotation.NONE).setIgnoreEntities(false).setChunk((ChunkPos) null)
								.setReplacedBlock((Block) null).setIgnoreStructureBlock(false);
						
						Utils.getLogger().info("=======1======="+loc);
						
						 
						template.addBlocksToWorld(worldIn, pos, placementsettings);
						 
						Utils.getLogger().info("========2======="+pos);
					}
				}

 

Expand  

I used to follow an old tutorial in 1.8.9 but if you use nbt files to spawn structures do you still use IWorldGenerators or you just simply make a class that grabs the location of your nbt structure and generate them? Sorry for being old the future is now old man!

Posted

@TheRPGAdventurer the benefit of this is that you can use whatever you want. You can use a class that implements an IWorldGenerator and in the generate method call this code, or you can create a simple class without IWorldGenerator and call it where you want (from example from the biome generator or the WorldGenMinable class). You can even spawn the structure at a specific location (for example you want a structure that is unique per world and is always generated at 0,0. With this type of generation you can do it pretty easy), you can randomize the inside using the Data structure blocks and check for them during the generation of the structure, and more. BUt to answer your question: no, you don't necessairly need an IWorldGenerator. As i said you can use it of course, for instance to avoid some errors if you want to port your structures to this system

Don't blame me if i always ask for your help. I just want to learn to be better :)

Posted
  On 6/10/2017 at 12:13 PM, TheRPGAdventurer said:

if you use nbt files to spawn structures do you still use IWorldGenerators or...

Expand  

 

Explore this call in Witch's code:

  On 6/10/2017 at 12:13 PM, TheRPGAdventurer said:

template.addBlocksToWorld(worldIn, pos, placementsettings);

Expand  

 

The debugger is a powerful and necessary tool in any IDE, so learn how to use it. You'll be able to tell us more and get better help here if you investigate your runtime problems in the debugger before posting.

Join the conversation

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

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

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

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

×   Your previous content has been restored.   Clear editor

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

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Update your AMD/ATI drivers - get the drivers from their website - do not update via system  
    • Ive made a 1.21.5 modpack with the curseforge launcher and set up a small server for my friends and I. The server works, the modpack works for everyone else but i cant start minecraft, no matter what ive done I get crash code 1. I have updated both graphics and cpu drivers, i have reinstalled java and minecraft. i can play modded 1.20.x but i cant start any 1.21.x modpacks. Here is the log. If you are a wizard that can somehow sift through all this and know whats wrong i would love to hear from you. for the plebians who might have the same problem as me, stay posted in case gandalf strolls by ¯\_(ツ)_/¯ # A fatal error has been detected by the Java Runtime Environment: # #  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007ff8b3476280, pid=25160, tid=26600 # # JRE version: OpenJDK Runtime Environment Microsoft-11369940 (21.0.7+6) (build 21.0.7+6-LTS) # Java VM: OpenJDK 64-Bit Server VM Microsoft-11369940 (21.0.7+6-LTS, mixed mode, tiered, compressed oops, compressed class ptrs, g1 gc, windows-amd64) # Problematic frame: # C  [atio6axx.dll+0x196280] # # No core dump will be written. Minidumps are not enabled by default on client versions of Windows # # If you would like to submit a bug report, please visit: #   https://aka.ms/minecraftjavacrashes # The crash happened outside the Java Virtual Machine in native code. # See problematic frame for where to report the bug. # ---------------  S U M M A R Y ------------ Command Line: -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Djava.library.path=\curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041 -Djna.tmpdir=\curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041 -Dorg.lwjgl.system.SharedLibraryExtractPath=\curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041 -Dio.netty.native.workdir=\curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041 -Dminecraft.launcher.brand=minecraft-launcher -Dminecraft.launcher.version=3.14.2 -Djava.net.preferIPv6Addresses=system -Xmx4096m -Xms256m -Dminecraft.applet.TargetDirectory=\curseforge\minecraft\Instances\sejt seed modded forge -Dfml.ignorePatchDiscrepancies=true -Dfml.ignoreInvalidMinecraftCertificates=true -Duser.language=en -Duser.country=US -DlibraryDirectory=\curseforge\minecraft\Install\libraries -Dlog4j.configurationFile=\curseforge\minecraft\Install\assets\log_configs\client-1.21.2.xml net.minecraftforge.bootstrap.ForgeBootstrap --username BingBongMaster27 --version forge-55.0.17 --gameDir \curseforge\minecraft\Instances\sejt seed modded forge --assetsDir \curseforge\minecraft\Install\assets --assetIndex 24 --uuid f68120281c3a4671b587856055e366bf -UTaeapdqVJtu9-ViDPYrMQeXxB4siChHhnieYhKZWD8QrvGUj5J3N--8KoL8DGJC8vSPEwpb7G9YlMGIynR3o4Ri_ZWErl9iSO1h4WxEjZqwKKKUlJ6OP7co2DrCSnf8tVzTJa2pzhpazZecBVD6o2xKtQv5w92Z7AVn-v7kzk8xZiSY4lscbqb4RO9_NVQouUfU5mxCNmpektaO6f_X4vwOlI9UH8oGvlaGkiuP3qL_Rtmqj87ZdxmnROF82aN-Al_I94DH0OfyVL51Sho6TPoEdAJlHervCVl6HWEtuLYAsCp9ykfYiNsx_44WbTZ-a6FBsg --clientId ODM5YTllZmUtMTQzZS00MjVkLWI1MmUtZTZmMmM4MzkxYTIz --xuid 2535410774699131 --userType msa --versionType release --width 1024 --height 768 --quickPlayPath \curseforge\minecraft\Install\quickPlay\java\1747844448525.json --launchTarget forge_client Host: AMD Ryzen 7 5700U with Radeon Graphics         , 16 cores, 15G,  Windows 11 , 64 bit Build 26100 (10.0.26100.3912) Time: Wed May 21 18:20:52 2025 Rom, sommertid elapsed time: 4.006014 seconds (0d 0h 0m 4s) ---------------  T H R E A D  --------------- Current thread (0x000002771353b650):  JavaThread "main"             [_thread_in_native, id=26600, stack(0x000000fb5a500000,0x000000fb5a600000) (1024K)] Stack: [0x000000fb5a500000,0x000000fb5a600000],  sp=0x000000fb5a5fb1d8,  free space=1004k Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) C  [atio6axx.dll+0x196280] Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) j  org.lwjgl.system.JNI.invokePPPP(IIJJJJ)J+0 org.lwjgl@3.3.3+5 j  org.lwjgl.glfw.GLFW.nglfwCreateWindow(IIJJJ)J+14 org.lwjgl.glfw@3.3.3+5 j  org.lwjgl.glfw.GLFW.glfwCreateWindow(IILjava/lang/CharSequence;JJ)J+34 org.lwjgl.glfw@3.3.3+5 j  net.minecraftforge.fml.earlydisplay.DisplayWindow.initWindow(Ljava/lang/String;)V+437 net.minecraftforge.earlydisplay@1.21.5-55.0.17 j  net.minecraftforge.fml.earlydisplay.DisplayWindow.start(Ljava/lang/String;Ljava/lang/String;)Ljava/lang/Runnable;+2 net.minecraftforge.earlydisplay@1.21.5-55.0.17 j  net.minecraftforge.fml.earlydisplay.DisplayWindow.initialize([Ljava/lang/String;)Ljava/lang/Runnable;+368 net.minecraftforge.earlydisplay@1.21.5-55.0.17 j  net.minecraftforge.fml.loading.ImmediateWindowHandler.load(Ljava/lang/String;[Ljava/lang/String;)V+198 net.minecraftforge.fmlloader@1.21.5-55.0.17 j  net.minecraftforge.fml.loading.ModDirTransformerDiscoverer.earlyInitialization(Ljava/lang/String;[Ljava/lang/String;)V+2 net.minecraftforge.fmlloader@1.21.5-55.0.17 j  cpw.mods.modlauncher.TransformationServicesHandler.discoverServices(Lcpw/mods/modlauncher/ArgumentHandler$DiscoveryData;)V+274 cpw.mods.modlauncher@10.2.4 j  cpw.mods.modlauncher.Launcher.run([Ljava/lang/String;)V+14 cpw.mods.modlauncher@10.2.4 j  cpw.mods.modlauncher.Launcher.main([Ljava/lang/String;)V+114 cpw.mods.modlauncher@10.2.4 j  cpw.mods.modlauncher.BootstrapEntry.main([Ljava/lang/String;)V+1 cpw.mods.modlauncher@10.2.4 j  net.minecraftforge.bootstrap.Bootstrap.moduleMain([Ljava/lang/String;Ljava/util/List;)V+315 net.minecraftforge.bootstrap@2.1.7 j  java.lang.invoke.LambdaForm$DMH+0x0000000800148000.invokeVirtual(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)V+14 java.base@21.0.7 j  java.lang.invoke.LambdaForm$MH+0x0000000800149000.invoke(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;+73 java.base@21.0.7 j  java.lang.invoke.LambdaForm$MH+0x0000000800149400.invokeExact_MT(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;+22 java.base@21.0.7 j  jdk.internal.reflect.DirectMethodHandleAccessor.invokeImpl(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+72 java.base@21.0.7 j  jdk.internal.reflect.DirectMethodHandleAccessor.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+23 java.base@21.0.7 j  java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+102 java.base@21.0.7 j  net.minecraftforge.bootstrap.Bootstrap.bootstrapMain([Ljava/lang/String;Ljava/util/List;)V+211 j  net.minecraftforge.bootstrap.Bootstrap.start([Ljava/lang/String;)V+186 j  net.minecraftforge.bootstrap.ForgeBootstrap.main([Ljava/lang/String;)V+8 v  ~StubRoutines::call_stub 0x000002771e67100d siginfo: EXCEPTION_ACCESS_VIOLATION (0xc0000005), reading address 0xffffffffffffffff Registers: RAX=0x0000000000000000, RBX=0x00007ff8b6d05a80, RCX=0x2d7365766974616e, RDX=0x00000000000000d0 RSP=0x000000fb5a5fb1d8, RBP=0x000000fb5a5fb340, RSI=0x000000fb5a5fb298, RDI=0x000000fb5a5fb630 R8 =0x00000000000001a5, R9 =0x2d7365766974616e, R10=0x0000000000000000, R11=0x0000000000000200 R12=0x00007ff8b6d05a80, R13=0x00007ff8b6d05ad8, R14=0x00007ff8b6c14f88, R15=0x0000000000000000 RIP=0x00007ff8b3476280, EFLAGS=0x0000000000010202 XMM[0]=0x000000f000000001 0x0000002d00000001 XMM[1]=0x0000000000000000 0x0000000000000000 XMM[2]=0x0000000000000000 0x0000000000000000 XMM[3]=0x0000000000000000 0x0000000000000000 XMM[4]=0x0000000000000000 0x0000000000000000 XMM[5]=0x0000000000000000 0x0000000000000000 XMM[6]=0x04f1d166f8abb63f 0x0a163ef2749a403d XMM[7]=0x0834976695da3a92 0x7390eba5c1b044b9 XMM[8]=0x06a91bf9b84b6314 0x8e8662f25c52007f XMM[9]=0x4ea0f42c4ea0f42c 0x4ea0f42c55e85ad9 XMM[10]=0x0000000000000000 0x00000000074766ad XMM[11]=0xa9fbf020a9fbf020 0xa9fbf020ffe44af9 XMM[12]=0x0000000000000000 0x0000000055e85ad9 XMM[13]=0x0000000000000000 0x00000000391f8821 XMM[14]=0x0000000000000000 0x5b5a1b17caee30a2 XMM[15]=0x0000000000000000 0x000000006f94158b   MXCSR=0x00001fa0 Register to memory mapping: RAX=0x0 is null RBX=0x00007ff8b6d05a80 atio6axx.dll RCX=0x2d7365766974616e is an unknown value RDX=0x00000000000000d0 is an unknown value RSP=0x000000fb5a5fb1d8 is pointing into the stack for thread: 0x000002771353b650 RBP=0x000000fb5a5fb340 is pointing into the stack for thread: 0x000002771353b650 RSI=0x000000fb5a5fb298 is pointing into the stack for thread: 0x000002771353b650 RDI=0x000000fb5a5fb630 is pointing into the stack for thread: 0x000002771353b650 R8 =0x00000000000001a5 is an unknown value R9 =0x2d7365766974616e is an unknown value R10=0x0 is null R11=0x0000000000000200 is an unknown value R12=0x00007ff8b6d05a80 atio6axx.dll R13=0x00007ff8b6d05ad8 atio6axx.dll R14=0x00007ff8b6c14f88 atio6axx.dll R15=0x0 is null Top of Stack: (sp=0x000000fb5a5fb1d8) 0x000000fb5a5fb1d8:   00007ff8b347659c 00007ff8b6d086f0 0x000000fb5a5fb1e8:   000002773ad91748 000000000000004d 0x000000fb5a5fb1f8:   000000fb5a5fb298 000000fb5a5fb630 0x000000fb5a5fb208:   00007ff8b3431af4 00007ff8b6d05a80 0x000000fb5a5fb218:   000000fb5a5fb298 000000fb5a5fb340 0x000000fb5a5fb228:   000045a7c7e8ee72 000000fb5a5fb630 0x000000fb5a5fb238:   00007ff8b3432ab5 00007ff8b6d05a88 0x000000fb5a5fb248:   000000000000004d 00007ff8b6d05a88 0x000000fb5a5fb258:   000002773b03d17c 000000fb00000000 0x000000fb5a5fb268:   0000000000000009 000002773b03d344 0x000000fb5a5fb278:   000002773b03d490 00007ff8b6d05a88 0x000000fb5a5fb288:   000000fb5a5fb630 000000fb5a5fb42f 0x000000fb5a5fb298:   00007f006176616a 000000006176616a 0x000000fb5a5fb2a8:   00007ff96e20680a 46676e697274535c 0x000000fb5a5fb2b8:   5c6f666e49656c69 3062343039303430 0x000000fb5a5fb2c8:   726556656c69465c 000000006e6f6973 0x000000fb5a5fb2d8:   0000000000000000 0000000000000000 0x000000fb5a5fb2e8:   0000000000000000 0000000a0000011c 0x000000fb5a5fb2f8:   000065f400000000 0000000000000002 0x000000fb5a5fb308:   0000000000000000 0000000000000000 0x000000fb5a5fb318:   0000000000000000 0000000000000000 0x000000fb5a5fb328:   0000000000000000 0000000000000000 0x000000fb5a5fb338:   0000000000000000 0000000000000000 0x000000fb5a5fb348:   0000000000000000 0000000000000000 0x000000fb5a5fb358:   0000000000000000 0000000000000000 0x000000fb5a5fb368:   0000000000000000 0000000000000000 0x000000fb5a5fb378:   0000000000000000 0000000000000000 0x000000fb5a5fb388:   0000000000000000 0000000000000000 0x000000fb5a5fb398:   0000000000000000 0000000000000000 0x000000fb5a5fb3a8:   0000000000000000 0000000000000000 0x000000fb5a5fb3b8:   0000000000000000 73726573555c3a43 0x000000fb5a5fb3c8:   5220626f63614a5c 737275635c6b6369  Instructions: (pc=0x00007ff8b3476280) 0x00007ff8b3476180:   74 09 33 c9 ff 15 c6 72 6b 03 90 48 8b c3 48 83 0x00007ff8b3476190:   c4 20 5b c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff8b34761a0:   48 83 ec 28 48 8b 51 08 48 85 d2 74 09 33 c9 ff 0x00007ff8b34761b0:   15 9b 72 6b 03 90 48 83 c4 28 c3 cc cc cc cc cc 0x00007ff8b34761c0:   48 89 11 c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff8b34761d0:   48 8b c1 c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff8b34761e0:   48 3b ca 74 10 41 8b 00 39 01 74 09 48 83 c1 04 0x00007ff8b34761f0:   48 3b ca 75 f3 48 8b c1 c3 cc cc cc cc cc cc cc 0x00007ff8b3476200:   48 8b c1 c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff8b3476210:   48 83 39 00 0f 94 c0 c3 cc cc cc cc cc cc cc cc 0x00007ff8b3476220:   4c 8d 04 d5 00 00 00 00 33 d2 e9 f1 6e e0 01 cc 0x00007ff8b3476230:   4c 8b 41 08 48 8b 02 49 89 00 48 83 41 08 08 c3 0x00007ff8b3476240:   48 8b c1 c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff8b3476250:   48 8b c1 c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff8b3476260:   49 8b 00 48 89 02 c3 cc cc cc cc cc cc cc cc cc 0x00007ff8b3476270:   8b 81 48 39 00 00 c3 cc cc cc cc cc cc cc cc cc 0x00007ff8b3476280:   8b 81 48 39 00 00 83 c0 f0 83 f8 68 0f 87 5a 01 0x00007ff8b3476290:   00 00 48 8d 15 67 9d e6 ff 0f b6 84 02 10 64 19 0x00007ff8b34762a0:   00 8b 8c 82 f0 63 19 00 48 03 ca ff e1 48 8b 0d 0x00007ff8b34762b0:   ec 5d 83 03 83 b9 04 37 00 00 02 0f 87 2b 01 00 0x00007ff8b34762c0:   00 48 8d 91 30 2b 00 00 c7 02 e1 00 00 00 e9 ce 0x00007ff8b34762d0:   00 00 00 48 8b 0d c6 5d 83 03 83 b9 04 37 00 00 0x00007ff8b34762e0:   02 0f 87 05 01 00 00 48 8d 91 30 2b 00 00 c7 02 0x00007ff8b34762f0:   f0 00 00 00 e9 a8 00 00 00 48 8b 0d a0 5d 83 03 0x00007ff8b3476300:   83 b9 04 37 00 00 02 0f 87 df 00 00 00 48 8d 91 0x00007ff8b3476310:   30 2b 00 00 c7 02 00 04 00 00 e9 82 00 00 00 48 0x00007ff8b3476320:   8b 0d 7a 5d 83 03 83 b9 04 37 00 00 02 0f 87 b9 0x00007ff8b3476330:   00 00 00 48 8d 91 30 2b 00 00 c7 02 00 08 00 00 0x00007ff8b3476340:   eb 5f 48 8b 0d 57 5d 83 03 83 b9 04 37 00 00 02 0x00007ff8b3476350:   0f 87 96 00 00 00 48 8d 91 30 2b 00 00 c7 02 00 0x00007ff8b3476360:   09 00 00 eb 3c 48 8b 0d 34 5d 83 03 83 b9 04 37 0x00007ff8b3476370:   00 00 02 77 77 48 8d 91 30 2b 00 00 c7 02 3c 0f  Stack slot to memory mapping: stack at sp + 0 slots: 0x00007ff8b347659c atio6axx.dll stack at sp + 1 slots: 0x00007ff8b6d086f0 atio6axx.dll stack at sp + 2 slots: 0x000002773ad91748 points into unknown readable memory: 0x00007ff8b650d2f0 | f0 d2 50 b6 f8 7f 00 00 stack at sp + 3 slots: 0x000000000000004d is an unknown value stack at sp + 4 slots: 0x000000fb5a5fb298 is pointing into the stack for thread: 0x000002771353b650 stack at sp + 5 slots: 0x000000fb5a5fb630 is pointing into the stack for thread: 0x000002771353b650 stack at sp + 6 slots: 0x00007ff8b3431af4 atio6axx.dll stack at sp + 7 slots: 0x00007ff8b6d05a80 atio6axx.dll ---------------  P R O C E S S  --------------- Threads class SMR info: _java_thread_list=0x000002773c7111a0, length=22, elements={ 0x000002771353b650, 0x000002772f3953c0, 0x000002772f396fd0, 0x000002772f397a20, 0x000002772f398620, 0x000002772f3f2610, 0x000002772f3f2fd0, 0x000002772f3f3fb0, 0x000002772f3ede60, 0x000002772f45fb10, 0x000002772f6adaa0, 0x000002772f6d43b0, 0x000002772f6f2ff0, 0x000002772fb2bd10, 0x000002772fbe0840, 0x000002773452e140, 0x000002773452f5b0, 0x000002773452eee0, 0x000002773452e810, 0x00000277345310f0, 0x0000027734530a20, 0x0000027738551f10 } Java Threads: ( => current thread ) =>0x000002771353b650 JavaThread "main"                              [_thread_in_native, id=26600, stack(0x000000fb5a500000,0x000000fb5a600000) (1024K)]   0x000002772f3953c0 JavaThread "Reference Handler"          daemon [_thread_blocked, id=1980, stack(0x000000fb5ad00000,0x000000fb5ae00000) (1024K)]   0x000002772f396fd0 JavaThread "Finalizer"                  daemon [_thread_blocked, id=25464, stack(0x000000fb5ae00000,0x000000fb5af00000) (1024K)]   0x000002772f397a20 JavaThread "Signal Dispatcher"          daemon [_thread_blocked, id=26248, stack(0x000000fb5af00000,0x000000fb5b000000) (1024K)]   0x000002772f398620 JavaThread "Attach Listener"            daemon [_thread_blocked, id=21664, stack(0x000000fb5b000000,0x000000fb5b100000) (1024K)]   0x000002772f3f2610 JavaThread "Service Thread"             daemon [_thread_blocked, id=23632, stack(0x000000fb5b100000,0x000000fb5b200000) (1024K)]   0x000002772f3f2fd0 JavaThread "Monitor Deflation Thread"   daemon [_thread_blocked, id=24536, stack(0x000000fb5b200000,0x000000fb5b300000) (1024K)]   0x000002772f3f3fb0 JavaThread "C2 CompilerThread0"         daemon [_thread_blocked, id=3596, stack(0x000000fb5b300000,0x000000fb5b400000) (1024K)]   0x000002772f3ede60 JavaThread "C1 CompilerThread0"         daemon [_thread_blocked, id=15716, stack(0x000000fb5b400000,0x000000fb5b500000) (1024K)]   0x000002772f45fb10 JavaThread "C1 CompilerThread1"         daemon [_thread_blocked, id=22460, stack(0x000000fb5b500000,0x000000fb5b600000) (1024K)]   0x000002772f6adaa0 JavaThread "Notification Thread"        daemon [_thread_blocked, id=25312, stack(0x000000fb5b600000,0x000000fb5b700000) (1024K)]   0x000002772f6d43b0 JavaThread "Common-Cleaner"             daemon [_thread_blocked, id=22376, stack(0x000000fb5b700000,0x000000fb5b800000) (1024K)]   0x000002772f6f2ff0 JavaThread "C2 CompilerThread1"         daemon [_thread_blocked, id=6712, stack(0x000000fb5b800000,0x000000fb5b900000) (1024K)]   0x000002772fb2bd10 JavaThread "C1 CompilerThread2"         daemon [_thread_blocked, id=24364, stack(0x000000fb5ba00000,0x000000fb5bb00000) (1024K)]   0x000002772fbe0840 JavaThread "C1 CompilerThread3"         daemon [_thread_blocked, id=15740, stack(0x000000fb5bb00000,0x000000fb5bc00000) (1024K)]   0x000002773452e140 JavaThread "C2 CompilerThread2"         daemon [_thread_in_native, id=19124, stack(0x000000fb5b900000,0x000000fb5ba00000) (1024K)]   0x000002773452f5b0 JavaThread "C2 CompilerThread3"         daemon [_thread_blocked, id=8356, stack(0x000000fb5bc00000,0x000000fb5bd00000) (1024K)]   0x000002773452eee0 JavaThread "C2 CompilerThread4"         daemon [_thread_blocked, id=22424, stack(0x000000fb5c200000,0x000000fb5c300000) (1024K)]   0x000002773452e810 JavaThread "C2 CompilerThread5"         daemon [_thread_blocked, id=2284, stack(0x000000fb5c300000,0x000000fb5c400000) (1024K)]   0x00000277345310f0 JavaThread "C2 CompilerThread6"         daemon [_thread_blocked, id=24256, stack(0x000000fb5c400000,0x000000fb5c500000) (1024K)]   0x0000027734530a20 JavaThread "C2 CompilerThread7"         daemon [_thread_blocked, id=9916, stack(0x000000fb5cd00000,0x000000fb5ce00000) (1024K)]   0x0000027738551f10 JavaThread "EarlyDisplay"               daemon [_thread_blocked, id=1908, stack(0x000000fb5d200000,0x000000fb5d300000) (1024K)] Total: 22 Other Threads:   0x000002772f325aa0 VMThread "VM Thread"                           [id=25740, stack(0x000000fb5ac00000,0x000000fb5ad00000) (1024K)]   0x000002772e8e2da0 WatcherThread "VM Periodic Task Thread"        [id=22668, stack(0x000000fb5ab00000,0x000000fb5ac00000) (1024K)]   0x00000277135a3aa0 WorkerThread "GC Thread#0"                     [id=26160, stack(0x000000fb5a600000,0x000000fb5a700000) (1024K)]   0x0000027734205fb0 WorkerThread "GC Thread#1"                     [id=10948, stack(0x000000fb5bd00000,0x000000fb5be00000) (1024K)]   0x0000027734269200 WorkerThread "GC Thread#2"                     [id=3248, stack(0x000000fb5be00000,0x000000fb5bf00000) (1024K)]   0x0000027734206350 WorkerThread "GC Thread#3"                     [id=11428, stack(0x000000fb5bf00000,0x000000fb5c000000) (1024K)]   0x000002773427f610 WorkerThread "GC Thread#4"                     [id=23688, stack(0x000000fb5c000000,0x000000fb5c100000) (1024K)]   0x000002772fe0f8a0 WorkerThread "GC Thread#5"                     [id=22540, stack(0x000000fb5c100000,0x000000fb5c200000) (1024K)]   0x0000027734d39820 WorkerThread "GC Thread#6"                     [id=4804, stack(0x000000fb5c500000,0x000000fb5c600000) (1024K)]   0x00000277349d36b0 WorkerThread "GC Thread#7"                     [id=2888, stack(0x000000fb5c600000,0x000000fb5c700000) (1024K)]   0x00000277349d3a50 WorkerThread "GC Thread#8"                     [id=19872, stack(0x000000fb5c700000,0x000000fb5c800000) (1024K)]   0x00000277349d4530 WorkerThread "GC Thread#9"                     [id=24684, stack(0x000000fb5c800000,0x000000fb5c900000) (1024K)]   0x00000277349d3df0 WorkerThread "GC Thread#10"                    [id=8520, stack(0x000000fb5c900000,0x000000fb5ca00000) (1024K)]   0x00000277357cfc10 WorkerThread "GC Thread#11"                    [id=24496, stack(0x000000fb5ca00000,0x000000fb5cb00000) (1024K)]   0x00000277357ced90 WorkerThread "GC Thread#12"                    [id=6024, stack(0x000000fb5ce00000,0x000000fb5cf00000) (1024K)]   0x00000277135b5eb0 ConcurrentGCThread "G1 Main Marker"            [id=23776, stack(0x000000fb5a700000,0x000000fb5a800000) (1024K)]   0x00000277135b67c0 WorkerThread "G1 Conc#0"                       [id=20640, stack(0x000000fb5a800000,0x000000fb5a900000) (1024K)]   0x00000277357d23f0 WorkerThread "G1 Conc#1"                       [id=8448, stack(0x000000fb5cb00000,0x000000fb5cc00000) (1024K)]   0x00000277357cf4d0 WorkerThread "G1 Conc#2"                       [id=19520, stack(0x000000fb5cc00000,0x000000fb5cd00000) (1024K)]   0x000002772e79ca90 ConcurrentGCThread "G1 Refine#0"               [id=22112, stack(0x000000fb5a900000,0x000000fb5aa00000) (1024K)]   0x000002772e79e2c0 ConcurrentGCThread "G1 Service"                [id=24788, stack(0x000000fb5aa00000,0x000000fb5ab00000) (1024K)] Total: 21 Threads with active compile tasks: C2 CompilerThread2  4059 3915       4       java.lang.invoke.MethodType::makeImpl (109 bytes) Total: 1 VM state: not at safepoint (normal execution) VM Mutex/Monitor currently owned by a thread: None Heap address: 0x0000000700000000, size: 4096 MB, Compressed Oops mode: Zero based, Oop shift amount: 3 CDS archive(s) not mapped Compressed class space mapped at: 0x0000000800000000-0x0000000840000000, reserved size: 1073741824 Narrow klass base: 0x0000000800000000, Narrow klass shift: 0, Narrow klass range: 0x40000000 GC Precious Log:  CardTable entry size: 512  Card Set container configuration: InlinePtr #cards 4 size 8 Array Of Cards #cards 16 size 48 Howl #buckets 8 coarsen threshold 3686 Howl Bitmap #cards 512 size 80 coarsen threshold 460 Card regions per heap region 1 cards per card region 4096  CPUs: 16 total, 16 available  Memory: 15693M  Large Page Support: Disabled  NUMA Support: Disabled  Compressed Oops: Enabled (Zero based)  Heap Region Size: 2M  Heap Min Capacity: 256M  Heap Initial Capacity: 256M  Heap Max Capacity: 4G  Pre-touch: Disabled  Parallel Workers: 13  Concurrent Workers: 3  Concurrent Refinement Workers: 13  Periodic GC: Disabled Heap:  garbage-first heap   total 262144K, used 138417K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 33 young (67584K), 9 survivors (18432K)  Metaspace       used 27634K, committed 28096K, reserved 1114112K   class space    used 2694K, committed 2944K, reserved 1048576K Heap Regions: E=young(eden), S=young(survivor), O=old, HS=humongous(starts), HC=humongous(continues), CS=collection set, F=free, TAMS=top-at-mark-start, PB=parsable bottom |   0|0x0000000700000000, 0x0000000700200000, 0x0000000700200000|100%|HS|  |TAMS 0x0000000700000000| PB 0x0000000700000000| Complete  |   1|0x0000000700200000, 0x0000000700400000, 0x0000000700400000|100%|HC|  |TAMS 0x0000000700200000| PB 0x0000000700200000| Complete  |   2|0x0000000700400000, 0x0000000700600000, 0x0000000700600000|100%|HS|  |TAMS 0x0000000700400000| PB 0x0000000700400000| Complete  |   3|0x0000000700600000, 0x0000000700800000, 0x0000000700800000|100%|HS|  |TAMS 0x0000000700600000| PB 0x0000000700600000| Complete  |   4|0x0000000700800000, 0x0000000700a00000, 0x0000000700a00000|100%|HC|  |TAMS 0x0000000700800000| PB 0x0000000700800000| Complete  |   5|0x0000000700a00000, 0x0000000700c00000, 0x0000000700c00000|100%| O|  |TAMS 0x0000000700a00000| PB 0x0000000700a00000| Untracked  |   6|0x0000000700c00000, 0x0000000700e00000, 0x0000000700e00000|100%| O|Cm|TAMS 0x0000000700c00000| PB 0x0000000700c00000| Complete  |   7|0x0000000700e00000, 0x0000000701000000, 0x0000000701000000|100%|HS|  |TAMS 0x0000000700e00000| PB 0x0000000700e00000| Complete  |   8|0x0000000701000000, 0x0000000701200000, 0x0000000701200000|100%|HC|  |TAMS 0x0000000701000000| PB 0x0000000701000000| Complete  |   9|0x0000000701200000, 0x0000000701400000, 0x0000000701400000|100%| O|  |TAMS 0x0000000701200000| PB 0x0000000701200000| Untracked  |  10|0x0000000701400000, 0x0000000701600000, 0x0000000701600000|100%| O|  |TAMS 0x0000000701400000| PB 0x0000000701400000| Untracked  |  11|0x0000000701600000, 0x0000000701800000, 0x0000000701800000|100%| O|  |TAMS 0x0000000701600000| PB 0x0000000701600000| Untracked  |  12|0x0000000701800000, 0x0000000701a00000, 0x0000000701a00000|100%| O|  |TAMS 0x0000000701800000| PB 0x0000000701800000| Untracked  |  13|0x0000000701a00000, 0x0000000701c00000, 0x0000000701c00000|100%|HS|  |TAMS 0x0000000701a00000| PB 0x0000000701a00000| Complete  |  14|0x0000000701c00000, 0x0000000701e00000, 0x0000000701e00000|100%|HS|  |TAMS 0x0000000701c00000| PB 0x0000000701c00000| Complete  |  15|0x0000000701e00000, 0x0000000702000000, 0x0000000702000000|100%|HC|  |TAMS 0x0000000701e00000| PB 0x0000000701e00000| Complete  |  16|0x0000000702000000, 0x0000000702200000, 0x0000000702200000|100%|HS|  |TAMS 0x0000000702000000| PB 0x0000000702000000| Complete  |  17|0x0000000702200000, 0x0000000702400000, 0x0000000702400000|100%|HC|  |TAMS 0x0000000702200000| PB 0x0000000702200000| Complete  |  18|0x0000000702400000, 0x0000000702600000, 0x0000000702600000|100%| O|  |TAMS 0x0000000702400000| PB 0x0000000702400000| Untracked  |  19|0x0000000702600000, 0x0000000702800000, 0x0000000702800000|100%| O|  |TAMS 0x0000000702600000| PB 0x0000000702600000| Untracked  |  20|0x0000000702800000, 0x0000000702a00000, 0x0000000702a00000|100%| O|  |TAMS 0x0000000702800000| PB 0x0000000702800000| Untracked  |  21|0x0000000702a00000, 0x0000000702c00000, 0x0000000702c00000|100%|HS|  |TAMS 0x0000000702a00000| PB 0x0000000702a00000| Complete  |  22|0x0000000702c00000, 0x0000000702e00000, 0x0000000702e00000|100%|HC|  |TAMS 0x0000000702c00000| PB 0x0000000702c00000| Complete  |  23|0x0000000702e00000, 0x0000000703000000, 0x0000000703000000|100%| O|  |TAMS 0x0000000702e00000| PB 0x0000000702e00000| Untracked  |  24|0x0000000703000000, 0x000000070312c580, 0x0000000703200000| 58%| O|  |TAMS 0x0000000703000000| PB 0x0000000703000000| Untracked  |  25|0x0000000703200000, 0x0000000703200000, 0x0000000703400000|  0%| F|  |TAMS 0x0000000703200000| PB 0x0000000703200000| Untracked  |  26|0x0000000703400000, 0x0000000703600000, 0x0000000703600000|100%| O|  |TAMS 0x0000000703400000| PB 0x0000000703400000| Untracked  |  27|0x0000000703600000, 0x0000000703800000, 0x0000000703800000|100%| O|  |TAMS 0x0000000703600000| PB 0x0000000703600000| Untracked  |  28|0x0000000703800000, 0x0000000703a00000, 0x0000000703a00000|100%| O|  |TAMS 0x0000000703800000| PB 0x0000000703800000| Untracked  |  29|0x0000000703a00000, 0x0000000703c00000, 0x0000000703c00000|100%| O|  |TAMS 0x0000000703a00000| PB 0x0000000703a00000| Untracked  |  30|0x0000000703c00000, 0x0000000703e00000, 0x0000000703e00000|100%| O|  |TAMS 0x0000000703c00000| PB 0x0000000703c00000| Untracked  |  31|0x0000000703e00000, 0x0000000704000000, 0x0000000704000000|100%| O|  |TAMS 0x0000000703e00000| PB 0x0000000703e00000| Untracked  |  32|0x0000000704000000, 0x0000000704200000, 0x0000000704200000|100%| O|  |TAMS 0x0000000704000000| PB 0x0000000704000000| Untracked  |  33|0x0000000704200000, 0x0000000704400000, 0x0000000704400000|100%| O|  |TAMS 0x0000000704200000| PB 0x0000000704200000| Untracked  |  34|0x0000000704400000, 0x0000000704600000, 0x0000000704600000|100%| O|  |TAMS 0x0000000704400000| PB 0x0000000704400000| Untracked  |  35|0x0000000704600000, 0x0000000704800000, 0x0000000704800000|100%| O|  |TAMS 0x0000000704600000| PB 0x0000000704600000| Untracked  |  36|0x0000000704800000, 0x0000000704a00000, 0x0000000704a00000|100%| O|  |TAMS 0x0000000704800000| PB 0x0000000704800000| Untracked  |  37|0x0000000704a00000, 0x0000000704a00000, 0x0000000704c00000|  0%| F|  |TAMS 0x0000000704a00000| PB 0x0000000704a00000| Untracked  |  38|0x0000000704c00000, 0x0000000704c00000, 0x0000000704e00000|  0%| F|  |TAMS 0x0000000704c00000| PB 0x0000000704c00000| Untracked  |  39|0x0000000704e00000, 0x0000000704e00000, 0x0000000705000000|  0%| F|  |TAMS 0x0000000704e00000| PB 0x0000000704e00000| Untracked  |  40|0x0000000705000000, 0x0000000705000000, 0x0000000705200000|  0%| F|  |TAMS 0x0000000705000000| PB 0x0000000705000000| Untracked  |  41|0x0000000705200000, 0x0000000705200000, 0x0000000705400000|  0%| F|  |TAMS 0x0000000705200000| PB 0x0000000705200000| Untracked  |  42|0x0000000705400000, 0x0000000705400000, 0x0000000705600000|  0%| F|  |TAMS 0x0000000705400000| PB 0x0000000705400000| Untracked  |  43|0x0000000705600000, 0x0000000705600000, 0x0000000705800000|  0%| F|  |TAMS 0x0000000705600000| PB 0x0000000705600000| Untracked  |  44|0x0000000705800000, 0x0000000705800000, 0x0000000705a00000|  0%| F|  |TAMS 0x0000000705800000| PB 0x0000000705800000| Untracked  |  45|0x0000000705a00000, 0x0000000705a00000, 0x0000000705c00000|  0%| F|  |TAMS 0x0000000705a00000| PB 0x0000000705a00000| Untracked  |  46|0x0000000705c00000, 0x0000000705c00000, 0x0000000705e00000|  0%| F|  |TAMS 0x0000000705c00000| PB 0x0000000705c00000| Untracked  |  47|0x0000000705e00000, 0x0000000705e00000, 0x0000000706000000|  0%| F|  |TAMS 0x0000000705e00000| PB 0x0000000705e00000| Untracked  |  48|0x0000000706000000, 0x0000000706000000, 0x0000000706200000|  0%| F|  |TAMS 0x0000000706000000| PB 0x0000000706000000| Untracked  |  49|0x0000000706200000, 0x0000000706200000, 0x0000000706400000|  0%| F|  |TAMS 0x0000000706200000| PB 0x0000000706200000| Untracked  |  50|0x0000000706400000, 0x0000000706600000, 0x0000000706600000|100%| S|CS|TAMS 0x0000000706400000| PB 0x0000000706400000| Complete  |  51|0x0000000706600000, 0x0000000706800000, 0x0000000706800000|100%| S|CS|TAMS 0x0000000706600000| PB 0x0000000706600000| Complete  |  52|0x0000000706800000, 0x0000000706a00000, 0x0000000706a00000|100%| S|CS|TAMS 0x0000000706800000| PB 0x0000000706800000| Complete  |  53|0x0000000706a00000, 0x0000000706c00000, 0x0000000706c00000|100%| S|CS|TAMS 0x0000000706a00000| PB 0x0000000706a00000| Complete  |  54|0x0000000706c00000, 0x0000000706e00000, 0x0000000706e00000|100%| S|CS|TAMS 0x0000000706c00000| PB 0x0000000706c00000| Complete  |  55|0x0000000706e00000, 0x0000000707000000, 0x0000000707000000|100%| S|CS|TAMS 0x0000000706e00000| PB 0x0000000706e00000| Complete  |  56|0x0000000707000000, 0x0000000707200000, 0x0000000707200000|100%| S|CS|TAMS 0x0000000707000000| PB 0x0000000707000000| Complete  |  57|0x0000000707200000, 0x0000000707400000, 0x0000000707400000|100%| S|CS|TAMS 0x0000000707200000| PB 0x0000000707200000| Complete  |  58|0x0000000707400000, 0x0000000707600000, 0x0000000707600000|100%| S|CS|TAMS 0x0000000707400000| PB 0x0000000707400000| Complete  |  59|0x0000000707600000, 0x0000000707600000, 0x0000000707800000|  0%| F|  |TAMS 0x0000000707600000| PB 0x0000000707600000| Untracked  |  60|0x0000000707800000, 0x0000000707800000, 0x0000000707a00000|  0%| F|  |TAMS 0x0000000707800000| PB 0x0000000707800000| Untracked  |  61|0x0000000707a00000, 0x0000000707a00000, 0x0000000707c00000|  0%| F|  |TAMS 0x0000000707a00000| PB 0x0000000707a00000| Untracked  |  62|0x0000000707c00000, 0x0000000707c00000, 0x0000000707e00000|  0%| F|  |TAMS 0x0000000707c00000| PB 0x0000000707c00000| Untracked  |  63|0x0000000707e00000, 0x0000000707e00000, 0x0000000708000000|  0%| F|  |TAMS 0x0000000707e00000| PB 0x0000000707e00000| Untracked  |  64|0x0000000708000000, 0x0000000708000000, 0x0000000708200000|  0%| F|  |TAMS 0x0000000708000000| PB 0x0000000708000000| Untracked  |  65|0x0000000708200000, 0x0000000708200000, 0x0000000708400000|  0%| F|  |TAMS 0x0000000708200000| PB 0x0000000708200000| Untracked  |  66|0x0000000708400000, 0x0000000708400000, 0x0000000708600000|  0%| F|  |TAMS 0x0000000708400000| PB 0x0000000708400000| Untracked  |  67|0x0000000708600000, 0x0000000708600000, 0x0000000708800000|  0%| F|  |TAMS 0x0000000708600000| PB 0x0000000708600000| Untracked  |  68|0x0000000708800000, 0x0000000708800000, 0x0000000708a00000|  0%| F|  |TAMS 0x0000000708800000| PB 0x0000000708800000| Untracked  |  69|0x0000000708a00000, 0x0000000708a00000, 0x0000000708c00000|  0%| F|  |TAMS 0x0000000708a00000| PB 0x0000000708a00000| Untracked  |  70|0x0000000708c00000, 0x0000000708c00000, 0x0000000708e00000|  0%| F|  |TAMS 0x0000000708c00000| PB 0x0000000708c00000| Untracked  |  71|0x0000000708e00000, 0x0000000708e00000, 0x0000000709000000|  0%| F|  |TAMS 0x0000000708e00000| PB 0x0000000708e00000| Untracked  |  72|0x0000000709000000, 0x0000000709000000, 0x0000000709200000|  0%| F|  |TAMS 0x0000000709000000| PB 0x0000000709000000| Untracked  |  73|0x0000000709200000, 0x0000000709200000, 0x0000000709400000|  0%| F|  |TAMS 0x0000000709200000| PB 0x0000000709200000| Untracked  |  74|0x0000000709400000, 0x0000000709400000, 0x0000000709600000|  0%| F|  |TAMS 0x0000000709400000| PB 0x0000000709400000| Untracked  |  75|0x0000000709600000, 0x0000000709600000, 0x0000000709800000|  0%| F|  |TAMS 0x0000000709600000| PB 0x0000000709600000| Untracked  |  76|0x0000000709800000, 0x0000000709800000, 0x0000000709a00000|  0%| F|  |TAMS 0x0000000709800000| PB 0x0000000709800000| Untracked  |  77|0x0000000709a00000, 0x0000000709a00000, 0x0000000709c00000|  0%| F|  |TAMS 0x0000000709a00000| PB 0x0000000709a00000| Untracked  |  78|0x0000000709c00000, 0x0000000709c00000, 0x0000000709e00000|  0%| F|  |TAMS 0x0000000709c00000| PB 0x0000000709c00000| Untracked  |  79|0x0000000709e00000, 0x0000000709e00000, 0x000000070a000000|  0%| F|  |TAMS 0x0000000709e00000| PB 0x0000000709e00000| Untracked  |  80|0x000000070a000000, 0x000000070a000000, 0x000000070a200000|  0%| F|  |TAMS 0x000000070a000000| PB 0x000000070a000000| Untracked  |  81|0x000000070a200000, 0x000000070a200000, 0x000000070a400000|  0%| F|  |TAMS 0x000000070a200000| PB 0x000000070a200000| Untracked  |  82|0x000000070a400000, 0x000000070a400000, 0x000000070a600000|  0%| F|  |TAMS 0x000000070a400000| PB 0x000000070a400000| Untracked  |  83|0x000000070a600000, 0x000000070a600000, 0x000000070a800000|  0%| F|  |TAMS 0x000000070a600000| PB 0x000000070a600000| Untracked  |  84|0x000000070a800000, 0x000000070a800000, 0x000000070aa00000|  0%| F|  |TAMS 0x000000070a800000| PB 0x000000070a800000| Untracked  |  85|0x000000070aa00000, 0x000000070aa00000, 0x000000070ac00000|  0%| F|  |TAMS 0x000000070aa00000| PB 0x000000070aa00000| Untracked  |  86|0x000000070ac00000, 0x000000070ac00000, 0x000000070ae00000|  0%| F|  |TAMS 0x000000070ac00000| PB 0x000000070ac00000| Untracked  |  87|0x000000070ae00000, 0x000000070ae00000, 0x000000070b000000|  0%| F|  |TAMS 0x000000070ae00000| PB 0x000000070ae00000| Untracked  |  88|0x000000070b000000, 0x000000070b000000, 0x000000070b200000|  0%| F|  |TAMS 0x000000070b000000| PB 0x000000070b000000| Untracked  |  89|0x000000070b200000, 0x000000070b200000, 0x000000070b400000|  0%| F|  |TAMS 0x000000070b200000| PB 0x000000070b200000| Untracked  |  90|0x000000070b400000, 0x000000070b400000, 0x000000070b600000|  0%| F|  |TAMS 0x000000070b400000| PB 0x000000070b400000| Untracked  |  91|0x000000070b600000, 0x000000070b600000, 0x000000070b800000|  0%| F|  |TAMS 0x000000070b600000| PB 0x000000070b600000| Untracked  |  92|0x000000070b800000, 0x000000070b800000, 0x000000070ba00000|  0%| F|  |TAMS 0x000000070b800000| PB 0x000000070b800000| Untracked  |  93|0x000000070ba00000, 0x000000070ba00000, 0x000000070bc00000|  0%| F|  |TAMS 0x000000070ba00000| PB 0x000000070ba00000| Untracked  |  94|0x000000070bc00000, 0x000000070bc00000, 0x000000070be00000|  0%| F|  |TAMS 0x000000070bc00000| PB 0x000000070bc00000| Untracked  |  95|0x000000070be00000, 0x000000070be00000, 0x000000070c000000|  0%| F|  |TAMS 0x000000070be00000| PB 0x000000070be00000| Untracked  |  96|0x000000070c000000, 0x000000070c000000, 0x000000070c200000|  0%| F|  |TAMS 0x000000070c000000| PB 0x000000070c000000| Untracked  |  97|0x000000070c200000, 0x000000070c200000, 0x000000070c400000|  0%| F|  |TAMS 0x000000070c200000| PB 0x000000070c200000| Untracked  |  98|0x000000070c400000, 0x000000070c400000, 0x000000070c600000|  0%| F|  |TAMS 0x000000070c400000| PB 0x000000070c400000| Untracked  |  99|0x000000070c600000, 0x000000070c600000, 0x000000070c800000|  0%| F|  |TAMS 0x000000070c600000| PB 0x000000070c600000| Untracked  | 100|0x000000070c800000, 0x000000070c800000, 0x000000070ca00000|  0%| F|  |TAMS 0x000000070c800000| PB 0x000000070c800000| Untracked  | 101|0x000000070ca00000, 0x000000070ca00000, 0x000000070cc00000|  0%| F|  |TAMS 0x000000070ca00000| PB 0x000000070ca00000| Untracked  | 102|0x000000070cc00000, 0x000000070cc00000, 0x000000070ce00000|  0%| F|  |TAMS 0x000000070cc00000| PB 0x000000070cc00000| Untracked  | 103|0x000000070ce00000, 0x000000070ce00000, 0x000000070d000000|  0%| F|  |TAMS 0x000000070ce00000| PB 0x000000070ce00000| Untracked  | 104|0x000000070d000000, 0x000000070d062fe8, 0x000000070d200000| 19%| E|  |TAMS 0x000000070d000000| PB 0x000000070d000000| Complete  | 105|0x000000070d200000, 0x000000070d400000, 0x000000070d400000|100%| E|CS|TAMS 0x000000070d200000| PB 0x000000070d200000| Complete  | 106|0x000000070d400000, 0x000000070d600000, 0x000000070d600000|100%| E|CS|TAMS 0x000000070d400000| PB 0x000000070d400000| Complete  | 107|0x000000070d600000, 0x000000070d800000, 0x000000070d800000|100%| E|CS|TAMS 0x000000070d600000| PB 0x000000070d600000| Complete  | 108|0x000000070d800000, 0x000000070da00000, 0x000000070da00000|100%| E|CS|TAMS 0x000000070d800000| PB 0x000000070d800000| Complete  | 109|0x000000070da00000, 0x000000070dc00000, 0x000000070dc00000|100%| E|CS|TAMS 0x000000070da00000| PB 0x000000070da00000| Complete  | 110|0x000000070dc00000, 0x000000070de00000, 0x000000070de00000|100%| E|CS|TAMS 0x000000070dc00000| PB 0x000000070dc00000| Complete  | 111|0x000000070de00000, 0x000000070e000000, 0x000000070e000000|100%| E|CS|TAMS 0x000000070de00000| PB 0x000000070de00000| Complete  | 112|0x000000070e000000, 0x000000070e200000, 0x000000070e200000|100%| E|CS|TAMS 0x000000070e000000| PB 0x000000070e000000| Complete  | 113|0x000000070e200000, 0x000000070e400000, 0x000000070e400000|100%| E|CS|TAMS 0x000000070e200000| PB 0x000000070e200000| Complete  | 114|0x000000070e400000, 0x000000070e600000, 0x000000070e600000|100%| E|CS|TAMS 0x000000070e400000| PB 0x000000070e400000| Complete  | 115|0x000000070e600000, 0x000000070e800000, 0x000000070e800000|100%| E|CS|TAMS 0x000000070e600000| PB 0x000000070e600000| Complete  | 116|0x000000070e800000, 0x000000070ea00000, 0x000000070ea00000|100%| E|CS|TAMS 0x000000070e800000| PB 0x000000070e800000| Complete  | 117|0x000000070ea00000, 0x000000070ec00000, 0x000000070ec00000|100%| E|CS|TAMS 0x000000070ea00000| PB 0x000000070ea00000| Complete  | 118|0x000000070ec00000, 0x000000070ee00000, 0x000000070ee00000|100%| E|CS|TAMS 0x000000070ec00000| PB 0x000000070ec00000| Complete  | 119|0x000000070ee00000, 0x000000070f000000, 0x000000070f000000|100%| E|CS|TAMS 0x000000070ee00000| PB 0x000000070ee00000| Complete  | 120|0x000000070f000000, 0x000000070f200000, 0x000000070f200000|100%| E|CS|TAMS 0x000000070f000000| PB 0x000000070f000000| Complete  | 121|0x000000070f200000, 0x000000070f400000, 0x000000070f400000|100%| E|CS|TAMS 0x000000070f200000| PB 0x000000070f200000| Complete  | 122|0x000000070f400000, 0x000000070f600000, 0x000000070f600000|100%| E|CS|TAMS 0x000000070f400000| PB 0x000000070f400000| Complete  | 123|0x000000070f600000, 0x000000070f800000, 0x000000070f800000|100%| E|CS|TAMS 0x000000070f600000| PB 0x000000070f600000| Complete  | 124|0x000000070f800000, 0x000000070fa00000, 0x000000070fa00000|100%| E|CS|TAMS 0x000000070f800000| PB 0x000000070f800000| Complete  | 125|0x000000070fa00000, 0x000000070fc00000, 0x000000070fc00000|100%| E|CS|TAMS 0x000000070fa00000| PB 0x000000070fa00000| Complete  | 126|0x000000070fc00000, 0x000000070fe00000, 0x000000070fe00000|100%| E|CS|TAMS 0x000000070fc00000| PB 0x000000070fc00000| Complete  | 127|0x000000070fe00000, 0x0000000710000000, 0x0000000710000000|100%| E|CS|TAMS 0x000000070fe00000| PB 0x000000070fe00000| Complete  Card table byte_map: [0x00000277279f0000,0x00000277281f0000] _byte_map_base: 0x00000277241f0000 Marking Bits: (CMBitMap*) 0x00000277135a3fb0  Bits: [0x00000277281f0000, 0x000002772c1f0000) Polling page: 0x0000027711d10000 Metaspace: Usage:   Non-class:     24.36 MB used.       Class:      2.63 MB used.        Both:     26.99 MB used. Virtual space:   Non-class space:       64.00 MB reserved,      24.56 MB ( 38%) committed,  1 nodes.       Class space:        1.00 GB reserved,       2.88 MB ( <1%) committed,  1 nodes.              Both:        1.06 GB reserved,      27.44 MB (  3%) committed.  Chunk freelists:    Non-Class:  7.20 MB        Class:  13.12 MB         Both:  20.32 MB MaxMetaspaceSize: unlimited CompressedClassSpaceSize: 1.00 GB Initial GC threshold: 21.00 MB Current GC threshold: 35.88 MB CDS: off  - commit_granule_bytes: 65536.  - commit_granule_words: 8192.  - virtual_space_node_default_size: 8388608.  - enlarge_chunks_in_place: 1.  - use_allocation_guard: 0. Internal statistics: num_allocs_failed_limit: 6. num_arena_births: 392. num_arena_deaths: 0. num_vsnodes_births: 2. num_vsnodes_deaths: 0. num_space_committed: 439. num_space_uncommitted: 0. num_chunks_returned_to_freelist: 6. num_chunks_taken_from_freelist: 847. num_chunk_merges: 0. num_chunk_splits: 565. num_chunks_enlarged: 407. num_inconsistent_stats: 0. CodeHeap 'non-profiled nmethods': size=119168Kb used=3458Kb max_used=3458Kb free=115709Kb  bounds [0x000002771edc0000, 0x000002771f130000, 0x0000027726220000] CodeHeap 'profiled nmethods': size=119104Kb used=7593Kb max_used=7593Kb free=111510Kb  bounds [0x0000027717220000, 0x0000027717990000, 0x000002771e670000] CodeHeap 'non-nmethods': size=7488Kb used=3888Kb max_used=3888Kb free=3599Kb  bounds [0x000002771e670000, 0x000002771ea40000, 0x000002771edc0000]  total_blobs=5057 nmethods=3914 adapters=1044  compilation: enabled               stopped_count=0, restarted_count=0  full_count=0 Compilation events (20 events): Event: 3.891 Thread 0x000002772f45fb10 nmethod 3905 0x0000027717985a90 code [0x0000027717985c40, 0x0000027717985e88] Event: 3.891 Thread 0x000002773452f5b0 3908       4       java.lang.Integer::toUnsignedLong (7 bytes) Event: 3.891 Thread 0x000002773452f5b0 nmethod 3908 0x000002771f11fc90 code [0x000002771f11fe00, 0x000002771f11fe68] Event: 3.892 Thread 0x000002772fbe0840 3909       3       sun.misc.Unsafe::putInt (11 bytes) Event: 3.892 Thread 0x000002772fbe0840 nmethod 3909 0x0000027717985f90 code [0x0000027717986120, 0x0000027717986230] Event: 3.892 Thread 0x000002772fbe0840 3910       3       org.lwjgl.system.MemoryUtil::encodeASCIIUnsafe (53 bytes) Event: 3.892 Thread 0x000002772fbe0840 nmethod 3910 0x0000027717986310 code [0x0000027717986500, 0x00000277179868f8] Event: 3.914 Thread 0x000002772f3ede60 3911       3       java.lang.invoke.BoundMethodHandle::rebind (14 bytes) Event: 3.914 Thread 0x000002772fbe0840 3912       3       java.lang.invoke.BoundMethodHandle::tooComplex (27 bytes) Event: 3.914 Thread 0x000002772f45fb10 3913       3       java.lang.invoke.BoundMethodHandle::fieldCount (8 bytes) Event: 3.914 Thread 0x000002772fb2bd10 3914       3       java.lang.invoke.LambdaForm::expressionCount (11 bytes) Event: 3.914 Thread 0x000002773452e140 3915       4       java.lang.invoke.MethodType::makeImpl (109 bytes) Event: 3.915 Thread 0x000002772fb2bd10 nmethod 3914 0x0000027717986a90 code [0x0000027717986c20, 0x0000027717986d40] Event: 3.915 Thread 0x000002772f45fb10 nmethod 3913 0x0000027717986e10 code [0x0000027717986fe0, 0x00000277179872d8] Event: 3.915 Thread 0x000002772fbe0840 nmethod 3912 0x0000027717987410 code [0x0000027717987600, 0x0000027717987a68] Event: 3.915 Thread 0x000002772f3ede60 nmethod 3911 0x0000027717987c10 code [0x0000027717987e20, 0x0000027717988378] Event: 3.915 Thread 0x000002772f45fb10 3918       3       java.lang.invoke.LambdaFormBuffer::indexOf (33 bytes) Event: 3.915 Thread 0x000002772f45fb10 nmethod 3918 0x0000027717988590 code [0x0000027717988760, 0x0000027717988b10] Event: 3.916 Thread 0x000002772fbe0840 3919       3       java.lang.invoke.LambdaFormBuffer::growNames (281 bytes) Event: 3.917 Thread 0x000002772fbe0840 nmethod 3919 0x0000027717988c10 code [0x0000027717988ec0, 0x0000027717989f58] GC Heap History (14 events): Event: 0.523 GC heap before {Heap before GC invocations=0 (full 0):  garbage-first heap   total 262144K, used 38912K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 11 young (22528K), 0 survivors (0K)  Metaspace       used 10273K, committed 10496K, reserved 1114112K   class space    used 846K, committed 960K, reserved 1048576K } Event: 0.527 GC heap after {Heap after GC invocations=1 (full 0):  garbage-first heap   total 262144K, used 23099K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 2 young (4096K), 2 survivors (4096K)  Metaspace       used 10273K, committed 10496K, reserved 1114112K   class space    used 846K, committed 960K, reserved 1048576K } Event: 0.606 GC heap before {Heap before GC invocations=1 (full 0):  garbage-first heap   total 262144K, used 47675K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 14 young (28672K), 2 survivors (4096K)  Metaspace       used 10278K, committed 10496K, reserved 1114112K   class space    used 846K, committed 960K, reserved 1048576K } Event: 0.610 GC heap after {Heap after GC invocations=2 (full 0):  garbage-first heap   total 262144K, used 27824K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 2 young (4096K), 2 survivors (4096K)  Metaspace       used 10278K, committed 10496K, reserved 1114112K   class space    used 846K, committed 960K, reserved 1048576K } Event: 1.047 GC heap before {Heap before GC invocations=2 (full 0):  garbage-first heap   total 262144K, used 58544K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 17 young (34816K), 2 survivors (4096K)  Metaspace       used 12660K, committed 12928K, reserved 1114112K   class space    used 1067K, committed 1216K, reserved 1048576K } Event: 1.050 GC heap after {Heap after GC invocations=3 (full 0):  garbage-first heap   total 262144K, used 29041K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 2 young (4096K), 2 survivors (4096K)  Metaspace       used 12660K, committed 12928K, reserved 1114112K   class space    used 1067K, committed 1216K, reserved 1048576K } Event: 1.710 GC heap before {Heap before GC invocations=3 (full 0):  garbage-first heap   total 262144K, used 205169K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 76 young (155648K), 2 survivors (4096K)  Metaspace       used 13588K, committed 13824K, reserved 1114112K   class space    used 1150K, committed 1280K, reserved 1048576K } Event: 1.716 GC heap after {Heap after GC invocations=4 (full 0):  garbage-first heap   total 262144K, used 47722K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 8 young (16384K), 8 survivors (16384K)  Metaspace       used 13588K, committed 13824K, reserved 1114112K   class space    used 1150K, committed 1280K, reserved 1048576K } Event: 2.168 GC heap before {Heap before GC invocations=4 (full 0):  garbage-first heap   total 262144K, used 207466K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 76 young (155648K), 8 survivors (16384K)  Metaspace       used 13845K, committed 14080K, reserved 1114112K   class space    used 1159K, committed 1280K, reserved 1048576K } Event: 2.182 GC heap after {Heap after GC invocations=5 (full 0):  garbage-first heap   total 262144K, used 87863K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 10 young (20480K), 10 survivors (20480K)  Metaspace       used 13845K, committed 14080K, reserved 1114112K   class space    used 1159K, committed 1280K, reserved 1048576K } Event: 2.664 GC heap before {Heap before GC invocations=5 (full 0):  garbage-first heap   total 262144K, used 159543K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 46 young (94208K), 10 survivors (20480K)  Metaspace       used 21273K, committed 21504K, reserved 1114112K   class space    used 1977K, committed 2112K, reserved 1048576K } Event: 2.670 GC heap after {Heap after GC invocations=6 (full 0):  garbage-first heap   total 262144K, used 72852K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 4 young (8192K), 4 survivors (8192K)  Metaspace       used 21273K, committed 21504K, reserved 1114112K   class space    used 1977K, committed 2112K, reserved 1048576K } Event: 3.576 GC heap before {Heap before GC invocations=7 (full 0):  garbage-first heap   total 262144K, used 210068K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 69 young (141312K), 4 survivors (8192K)  Metaspace       used 25540K, committed 25920K, reserved 1114112K   class space    used 2492K, committed 2688K, reserved 1048576K } Event: 3.586 GC heap after {Heap after GC invocations=8 (full 0):  garbage-first heap   total 262144K, used 91313K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 9 young (18432K), 9 survivors (18432K)  Metaspace       used 25540K, committed 25920K, reserved 1114112K   class space    used 2492K, committed 2688K, reserved 1048576K } Dll operation events (11 events): Event: 0.010 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\java.dll Event: 0.018 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\zip.dll Event: 0.064 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\jsvml.dll Event: 0.157 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\net.dll Event: 0.159 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\nio.dll Event: 0.166 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\zip.dll Event: 0.273 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\jimage.dll Event: 0.679 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\verify.dll Event: 2.500 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\management.dll Event: 2.503 Loaded shared library \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\management_ext.dll Event: 3.859 Loaded shared library \curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041\lwjgl.dll Deoptimization events (20 events): Event: 3.831 Thread 0x000002771353b650 DEOPT PACKING pc=0x000002771eeb824c sp=0x000000fb5a5fc8b0 Event: 3.831 Thread 0x000002771353b650 DEOPT UNPACKING pc=0x000002771e6c46a2 sp=0x000000fb5a5fc828 mode 2 Event: 3.836 Thread 0x000002771353b650 Uncommon trap: trap_request=0xffffffde fr.pc=0x000002771ef3a72c relative=0x00000000000001cc Event: 3.836 Thread 0x000002771353b650 Uncommon trap: reason=class_check action=maybe_recompile pc=0x000002771ef3a72c method=java.nio.ByteBuffer.put(Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer; @ 10 c2 Event: 3.836 Thread 0x000002771353b650 DEOPT PACKING pc=0x000002771ef3a72c sp=0x000000fb5a5fdc40 Event: 3.836 Thread 0x000002771353b650 DEOPT UNPACKING pc=0x000002771e6c46a2 sp=0x000000fb5a5fdc20 mode 2 Event: 3.836 Thread 0x000002771353b650 Uncommon trap: trap_request=0xffffffde fr.pc=0x000002771ef3a72c relative=0x00000000000001cc Event: 3.836 Thread 0x000002771353b650 Uncommon trap: reason=class_check action=maybe_recompile pc=0x000002771ef3a72c method=java.nio.ByteBuffer.put(Ljava/nio/ByteBuffer;)Ljava/nio/ByteBuffer; @ 10 c2 Event: 3.836 Thread 0x000002771353b650 DEOPT PACKING pc=0x000002771ef3a72c sp=0x000000fb5a5fdc40 Event: 3.836 Thread 0x000002771353b650 DEOPT UNPACKING pc=0x000002771e6c46a2 sp=0x000000fb5a5fdc20 mode 2 Event: 3.855 Thread 0x000002771353b650 Uncommon trap: trap_request=0xffffff45 fr.pc=0x000002771ef578c0 relative=0x0000000000000d40 Event: 3.855 Thread 0x000002771353b650 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000002771ef578c0 method=sun.nio.ch.FileChannelImpl.read(Ljava/nio/ByteBuffer;)I @ 196 c2 Event: 3.855 Thread 0x000002771353b650 DEOPT PACKING pc=0x000002771ef578c0 sp=0x000000fb5a5fca00 Event: 3.855 Thread 0x000002771353b650 DEOPT UNPACKING pc=0x000002771e6c46a2 sp=0x000000fb5a5fc9b8 mode 2 Event: 3.866 Thread 0x000002771353b650 DEOPT PACKING pc=0x0000027717669dd7 sp=0x000000fb5a5fc960 Event: 3.866 Thread 0x000002771353b650 DEOPT UNPACKING pc=0x000002771e6c4e42 sp=0x000000fb5a5fbe18 mode 0 Event: 3.885 Thread 0x000002771353b650 Uncommon trap: trap_request=0xffffff45 fr.pc=0x000002771f0254e0 relative=0x00000000000016a0 Event: 3.885 Thread 0x000002771353b650 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000002771f0254e0 method=java.util.concurrent.ConcurrentHashMap.transfer([Ljava/util/concurrent/ConcurrentHashMap$Node;[Ljava/util/concurrent/ConcurrentHashMap$Node;)V @ 26 c2 Event: 3.885 Thread 0x000002771353b650 DEOPT PACKING pc=0x000002771f0254e0 sp=0x000000fb5a5fc310 Event: 3.885 Thread 0x000002771353b650 DEOPT UNPACKING pc=0x000002771e6c46a2 sp=0x000000fb5a5fc280 mode 2 Classes loaded (20 events): Event: 3.877 Loading class java/nio/DirectCharBufferU Event: 3.877 Loading class java/nio/DirectCharBufferU done Event: 3.877 Loading class java/nio/DirectFloatBufferU Event: 3.877 Loading class java/nio/DirectFloatBufferU done Event: 3.877 Loading class java/nio/DirectDoubleBufferU Event: 3.878 Loading class java/nio/DirectDoubleBufferU done Event: 3.879 Loading class java/util/function/LongPredicate Event: 3.879 Loading class java/util/function/LongPredicate done Event: 3.882 Loading class java/nio/InvalidMarkException Event: 3.882 Loading class java/nio/InvalidMarkException done Event: 3.882 Loading class java/nio/BufferUnderflowException Event: 3.883 Loading class java/nio/BufferUnderflowException done Event: 3.913 Loading class java/util/concurrent/ScheduledThreadPoolExecutor$ScheduledFutureTask Event: 3.913 Loading class java/util/concurrent/FutureTask Event: 3.913 Loading class java/util/concurrent/FutureTask done Event: 3.913 Loading class java/util/concurrent/ScheduledThreadPoolExecutor$ScheduledFutureTask done Event: 3.913 Loading class java/util/concurrent/FutureTask$WaitNode Event: 3.913 Loading class java/util/concurrent/FutureTask$WaitNode done Event: 3.913 Loading class java/util/concurrent/Executors$RunnableAdapter Event: 3.913 Loading class java/util/concurrent/Executors$RunnableAdapter done Classes unloaded (0 events): No events Classes redefined (0 events): No events Internal exceptions (20 events): Event: 3.778 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070da96fb0}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeVirtual(java.lang.Object, java.lang.Object)'> (0x000000070da96fb0)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.778 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070da9afe0}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeStaticInit(java.lang.Object, int, int)'> (0x000000070da9afe0)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.778 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070daa24d8}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeStaticInit(java.lang.Object, long, long)'> (0x000000070daa24d8)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.779 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070daa8f70}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeStaticInit(java.lang.Object, float, float)'> (0x000000070daa8f70)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.779 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070daafa00}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeStaticInit(java.lang.Object, double, double)'> (0x000000070daafa00)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.779 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070dab3fa0}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeStatic(java.lang.Object, long)'> (0x000000070dab3fa0)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.832 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070d4ae350}: method resolution failed> (0x000000070d4ae350)  thrown [s\src\hotspot\share\prims\methodHandles.cpp, line 1144] Event: 3.837 Thread 0x000002771353b650 Exception <a 'sun/nio/fs/WindowsException'{0x000000070d4e05f8}> (0x000000070d4e05f8)  thrown [s\src\hotspot\share\prims\jni.cpp, line 520] Event: 3.848 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070d5ce078}: 'void java.lang.System.load(java.lang.String, java.lang.Class)'> (0x000000070d5ce078)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.850 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070d5e4038}: 'void java.lang.System.loadLibrary(java.lang.String, java.lang.Class)'> (0x000000070d5e4038)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.857 Thread 0x000002771353b650 Exception <a 'sun/nio/fs/WindowsException'{0x000000070d207638}> (0x000000070d207638)  thrown [s\src\hotspot\share\prims\jni.cpp, line 520] Event: 3.857 Thread 0x000002771353b650 Exception <a 'sun/nio/fs/WindowsException'{0x000000070d207a58}> (0x000000070d207a58)  thrown [s\src\hotspot\share\prims\jni.cpp, line 520] Event: 3.873 Thread 0x000002771353b650 Exception <a 'sun/nio/fs/WindowsException'{0x000000070d2482a0}> (0x000000070d2482a0)  thrown [s\src\hotspot\share\prims\jni.cpp, line 520] Event: 3.873 Thread 0x000002771353b650 Exception <a 'sun/nio/fs/WindowsException'{0x000000070d2486e0}> (0x000000070d2486e0)  thrown [s\src\hotspot\share\prims\jni.cpp, line 520] Event: 3.879 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070d2988d0}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeStaticInit(java.lang.Object, java.lang.Object, int, long)'> (0x000000070d2988d0)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.880 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070d29dbd8}: 'java.lang.Object java.lang.invoke.DirectMethodHandle$Holder.newInvokeSpecial(java.lang.Object, java.lang.Object, int)'> (0x000000070d29dbd8)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.881 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070d2ae9a0}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeStaticInit(java.lang.Object, java.lang.Object, long, long)'> (0x000000070d2ae9a0)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.882 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070d2b4070}: 'java.lang.Object java.lang.invoke.DirectMethodHandle$Holder.newInvokeSpecial(java.lang.Object, java.lang.Object, long)'> (0x000000070d2b4070)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.882 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070d2b7898}: 'java.lang.Object java.lang.invoke.Invokers$Holder.linkToTargetMethod(java.lang.Object, long, java.lang.Object)'> (0x000000070d2b7898)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] Event: 3.882 Thread 0x000002771353b650 Exception <a 'java/lang/NoSuchMethodError'{0x000000070d2bea90}: 'int java.lang.invoke.DirectMethodHandle$Holder.invokeStaticInit(java.lang.Object, java.lang.Object, java.lang.Object, long)'> (0x000000070d2bea90)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] ZGC Phase Switch (0 events): No events VM Operations (20 events): Event: 2.677 Executing VM operation: CollectForMetadataAllocation (Metadata GC Threshold) Event: 2.677 Executing VM operation: CollectForMetadataAllocation (Metadata GC Threshold) done Event: 2.681 Executing VM operation: G1PauseRemark Event: 2.683 Executing VM operation: G1PauseRemark done Event: 2.688 Executing VM operation: G1PauseCleanup Event: 2.688 Executing VM operation: G1PauseCleanup done Event: 2.784 Executing VM operation: HandshakeAllThreads (Deoptimize) Event: 2.784 Executing VM operation: HandshakeAllThreads (Deoptimize) done Event: 2.785 Executing VM operation: HandshakeAllThreads (Deoptimize) Event: 2.785 Executing VM operation: HandshakeAllThreads (Deoptimize) done Event: 2.822 Executing VM operation: HandshakeAllThreads (Deoptimize) Event: 2.822 Executing VM operation: HandshakeAllThreads (Deoptimize) done Event: 2.833 Executing VM operation: HandshakeAllThreads (Deoptimize) Event: 2.833 Executing VM operation: HandshakeAllThreads (Deoptimize) done Event: 2.844 Executing VM operation: HandshakeAllThreads (Deoptimize) Event: 2.844 Executing VM operation: HandshakeAllThreads (Deoptimize) done Event: 2.886 Executing VM operation: HandshakeAllThreads (Deoptimize) Event: 2.886 Executing VM operation: HandshakeAllThreads (Deoptimize) done Event: 3.576 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) Event: 3.586 Executing VM operation: G1CollectForAllocation (G1 Evacuation Pause) done Memory protections (0 events): No events Nmethod flushes (0 events): No events Events (20 events): Event: 0.488 Thread 0x000002772f3ede60 Thread added: 0x0000027734206af0 Event: 0.545 Thread 0x000002772f6f2ff0 Thread added: 0x000002772fb59250 Event: 0.551 Thread 0x000002772f45fb10 Thread added: 0x000002773402f810 Event: 0.551 Thread 0x000002772f45fb10 Thread added: 0x00000277344ab6e0 Event: 0.551 Thread 0x000002772f45fb10 Thread added: 0x00000277344a9fa0 Event: 1.431 Thread 0x00000277344a9fa0 Thread exited: 0x00000277344a9fa0 Event: 1.835 Thread 0x00000277344ab6e0 Thread exited: 0x00000277344ab6e0 Event: 2.029 Thread 0x000002773402f810 Thread exited: 0x000002773402f810 Event: 2.029 Thread 0x000002772fb59250 Thread exited: 0x000002772fb59250 Event: 2.033 Thread 0x0000027734206af0 Thread exited: 0x0000027734206af0 Event: 2.255 Thread 0x000002772f6f3690 Thread exited: 0x000002772f6f3690 Event: 2.304 Thread 0x000002772f3ede60 Thread added: 0x000002773452e140 Event: 2.312 Thread 0x000002772fbe0840 Thread added: 0x000002773452f5b0 Event: 2.312 Thread 0x000002772fbe0840 Thread added: 0x000002773452eee0 Event: 2.314 Thread 0x000002773452f5b0 Thread added: 0x000002773452e810 Event: 2.314 Thread 0x000002773452f5b0 Thread added: 0x00000277345310f0 Event: 2.789 Thread 0x000002771353b650 Thread added: 0x0000027734847480 Event: 2.800 Thread 0x0000027734847480 Thread exited: 0x0000027734847480 Event: 3.027 Thread 0x00000277345310f0 Thread added: 0x0000027734530a20 Event: 3.914 Thread 0x000002771353b650 Thread added: 0x0000027738551f10 Dynamic libraries: 0x00007ff7094c0000 - 0x00007ff7094ce000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\javaw.exe 0x00007ff96e1a0000 - 0x00007ff96e406000     C:\WINDOWS\SYSTEM32\ntdll.dll 0x00007ff96d320000 - 0x00007ff96d3e9000     C:\WINDOWS\System32\KERNEL32.DLL 0x00007ff96b900000 - 0x00007ff96bccc000     C:\WINDOWS\System32\KERNELBASE.dll 0x00007ff968380000 - 0x00007ff96841e000     C:\WINDOWS\SYSTEM32\apphelp.dll 0x00007ff96b4e0000 - 0x00007ff96b62b000     C:\WINDOWS\System32\ucrtbase.dll 0x00007ff956500000 - 0x00007ff956518000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\jli.dll 0x00007ff9560d0000 - 0x00007ff9560ed000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\VCRUNTIME140.dll 0x00007ff96df90000 - 0x00007ff96e15a000     C:\WINDOWS\System32\USER32.dll 0x00007ff96b330000 - 0x00007ff96b357000     C:\WINDOWS\System32\win32u.dll 0x00007ff96db20000 - 0x00007ff96db4b000     C:\WINDOWS\System32\GDI32.dll 0x00007ff950e90000 - 0x00007ff95112a000     C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.26100.3912_none_3e07963ce335137e\COMCTL32.dll 0x00007ff96bd80000 - 0x00007ff96beb2000     C:\WINDOWS\System32\gdi32full.dll 0x00007ff96da70000 - 0x00007ff96db19000     C:\WINDOWS\System32\msvcrt.dll 0x00007ff96bcd0000 - 0x00007ff96bd73000     C:\WINDOWS\System32\msvcp_win.dll 0x00007ff96d1e0000 - 0x00007ff96d210000     C:\WINDOWS\System32\IMM32.DLL 0x00007ff9564f0000 - 0x00007ff9564fc000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\vcruntime140_1.dll 0x00007ff9493d0000 - 0x00007ff94945d000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\msvcp140.dll 0x00007ff8b8980000 - 0x00007ff8b9718000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\server\jvm.dll 0x00007ff96c470000 - 0x00007ff96c522000     C:\WINDOWS\System32\ADVAPI32.dll 0x00007ff96dee0000 - 0x00007ff96df86000     C:\WINDOWS\System32\sechost.dll 0x00007ff96c5e0000 - 0x00007ff96c6f6000     C:\WINDOWS\System32\RPCRT4.dll 0x00007ff96cfa0000 - 0x00007ff96d014000     C:\WINDOWS\System32\WS2_32.dll 0x00007ff96ab70000 - 0x00007ff96abce000     C:\WINDOWS\SYSTEM32\POWRPROF.dll 0x00007ff962a70000 - 0x00007ff962aa6000     C:\WINDOWS\SYSTEM32\WINMM.dll 0x00007ff963f50000 - 0x00007ff963f5b000     C:\WINDOWS\SYSTEM32\VERSION.dll 0x00007ff96ab00000 - 0x00007ff96ab14000     C:\WINDOWS\SYSTEM32\UMPDC.dll 0x00007ff96a0f0000 - 0x00007ff96a10a000     C:\WINDOWS\SYSTEM32\kernel.appcore.dll 0x00007ff956040000 - 0x00007ff95604a000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\jimage.dll 0x00007ff95f8c0000 - 0x00007ff95fb01000     C:\WINDOWS\SYSTEM32\DBGHELP.DLL 0x00007ff96db50000 - 0x00007ff96ded4000     C:\WINDOWS\System32\combase.dll 0x00007ff96d070000 - 0x00007ff96d150000     C:\WINDOWS\System32\OLEAUT32.dll 0x00007ff94fdf0000 - 0x00007ff94fe29000     C:\WINDOWS\SYSTEM32\dbgcore.DLL 0x00007ff96bec0000 - 0x00007ff96bf59000     C:\WINDOWS\System32\bcryptPrimitives.dll 0x00007ff956020000 - 0x00007ff956040000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\java.dll 0x00007ff94f3f0000 - 0x00007ff94f408000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\zip.dll 0x00007ff96c870000 - 0x00007ff96cf9d000     C:\WINDOWS\System32\SHELL32.dll 0x00007ff96b6f0000 - 0x00007ff96b864000     C:\WINDOWS\System32\wintypes.dll 0x00007ff968fc0000 - 0x00007ff969816000     C:\WINDOWS\SYSTEM32\windows.storage.dll 0x00007ff96d4c0000 - 0x00007ff96d5af000     C:\WINDOWS\System32\SHCORE.dll 0x00007ff96d160000 - 0x00007ff96d1c9000     C:\WINDOWS\System32\shlwapi.dll 0x00007ff96b240000 - 0x00007ff96b26f000     C:\WINDOWS\SYSTEM32\profapi.dll 0x00007ff943360000 - 0x00007ff943436000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\jsvml.dll 0x00007ff94f3e0000 - 0x00007ff94f3f0000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\net.dll 0x00007ff963630000 - 0x00007ff96374e000     C:\WINDOWS\SYSTEM32\WINHTTP.dll 0x00007ff96a660000 - 0x00007ff96a6ca000     C:\WINDOWS\system32\mswsock.dll 0x00007ff94db00000 - 0x00007ff94db16000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\nio.dll 0x00007ff94e490000 - 0x00007ff94e4a0000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\verify.dll 0x00007ff94daf0000 - 0x00007ff94dafa000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\management.dll 0x00007ff94dae0000 - 0x00007ff94daeb000     \curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\management_ext.dll 0x00007ff96c460000 - 0x00007ff96c468000     C:\WINDOWS\System32\PSAPI.DLL 0x00007ff950430000 - 0x00007ff950448000     C:\WINDOWS\system32\napinsp.dll 0x00007ff969c20000 - 0x00007ff969d47000     C:\WINDOWS\SYSTEM32\DNSAPI.dll 0x00007ff969b80000 - 0x00007ff969bb3000     C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL 0x00007ff96d1d0000 - 0x00007ff96d1da000     C:\WINDOWS\System32\NSI.dll 0x00007ff950410000 - 0x00007ff950422000     C:\WINDOWS\System32\winrnr.dll 0x00007ff9500f0000 - 0x00007ff950120000     C:\WINDOWS\system32\nlansp_c.dll 0x00007ff962480000 - 0x00007ff9624a0000     C:\WINDOWS\system32\wshbth.dll 0x00007ff962820000 - 0x00007ff96282b000     C:\Windows\System32\rasadhlp.dll 0x00007ff964640000 - 0x00007ff9646c6000     C:\WINDOWS\System32\fwpuclnt.dll 0x00007ff9499b0000 - 0x00007ff949a2b000     \curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041\lwjgl.dll 0x00007ff944650000 - 0x00007ff9446d2000     \curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041\glfw.dll 0x00007ff949380000 - 0x00007ff9493cb000     C:\WINDOWS\SYSTEM32\dinput8.dll 0x00007ff94dac0000 - 0x00007ff94dad2000     C:\WINDOWS\SYSTEM32\xinput1_4.dll 0x00007ff96afd0000 - 0x00007ff96affd000     C:\WINDOWS\SYSTEM32\DEVOBJ.dll 0x00007ff96af70000 - 0x00007ff96afc7000     C:\WINDOWS\SYSTEM32\cfgmgr32.dll 0x00007ff968900000 - 0x00007ff968936000     C:\WINDOWS\SYSTEM32\dwmapi.dll 0x00007ff952220000 - 0x00007ff952401000     C:\WINDOWS\SYSTEM32\inputhost.dll 0x00007ff967fa0000 - 0x00007ff9680c6000     C:\WINDOWS\SYSTEM32\CoreMessaging.dll 0x00007ff968520000 - 0x00007ff9685cf000     C:\WINDOWS\system32\uxtheme.dll 0x00007ff96a920000 - 0x00007ff96a92c000     C:\WINDOWS\SYSTEM32\CRYPTBASE.DLL 0x00007ff96c700000 - 0x00007ff96c85f000     C:\WINDOWS\System32\MSCTF.dll 0x00007ff8df200000 - 0x00007ff8df30c000     C:\WINDOWS\SYSTEM32\opengl32.dll 0x00007ff8dec00000 - 0x00007ff8dec2d000     C:\WINDOWS\SYSTEM32\GLU32.dll 0x00007ff9686c0000 - 0x00007ff968707000     C:\WINDOWS\SYSTEM32\dxcore.dll 0x00007ff968710000 - 0x00007ff968770000     C:\WINDOWS\SYSTEM32\directxdatabasehelper.dll 0x00007ff9595a0000 - 0x00007ff9595ba000     C:\WINDOWS\SYSTEM32\windows.staterepositorycore.dll 0x00007ff91df60000 - 0x00007ff91df8d000     C:\WINDOWS\System32\DriverStore\FileRepository\u0387389.inf_amd64_995be970e30b8c79\B385477\atig6pxx.dll 0x00007ff8b32e0000 - 0x00007ff8b6f6b000     C:\WINDOWS\System32\DriverStore\FileRepository\u0387389.inf_amd64_995be970e30b8c79\B385477\atio6axx.dll 0x00007ff96d5c0000 - 0x00007ff96da46000     C:\WINDOWS\System32\SETUPAPI.dll 0x00007ff96b870000 - 0x00007ff96b8f0000     C:\WINDOWS\System32\WINTRUST.dll 0x00007ff96b360000 - 0x00007ff96b4d7000     C:\WINDOWS\System32\CRYPT32.dll 0x00007ff96a970000 - 0x00007ff96a983000     C:\WINDOWS\SYSTEM32\MSASN1.dll dbghelp: loaded successfully - version: 4.0.5 - missing functions: none symbol engine: initialized successfully - sym options: 0x614 - pdb path: .;\curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin;C:\WINDOWS\SYSTEM32;C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.26100.3912_none_3e07963ce335137e;\curseforge\minecraft\Install\runtime\java-runtime-delta\windows-x64\java-runtime-delta\bin\server;\curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041;C:\WINDOWS\System32\DriverStore\FileRepository\u0387389.inf_amd64_995be970e30b8c79\B385477 VM Arguments: jvm_args: -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Djava.library.path=\curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041 -Djna.tmpdir=\curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041 -Dorg.lwjgl.system.SharedLibraryExtractPath=\curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041 -Dio.netty.native.workdir=\curseforge\minecraft\Install\bin\a1a0ec4eb33994d184c65fbe84e4bd57646e0041 -Dminecraft.launcher.brand=minecraft-launcher -Dminecraft.launcher.version=3.14.2 -Djava.net.preferIPv6Addresses=system -Xmx4096m -Xms256m -Dminecraft.applet.TargetDirectory=\curseforge\minecraft\Instances\sejt seed modded forge -Dfml.ignorePatchDiscrepancies=true -Dfml.ignoreInvalidMinecraftCertificates=true -Duser.language=en -Duser.country=US -DlibraryDirectory=\curseforge\minecraft\Install\libraries -Dlog4j.configurationFile=\curseforge\minecraft\Install\assets\log_configs\client-1.21.2.xml  java_command: net.minecraftforge.bootstrap.ForgeBootstrap --username BingBongMaster27 --version forge-55.0.17 --gameDir \curseforge\minecraft\Instances\sejt seed modded forge --assetsDir \curseforge\minecraft\Install\assets --assetIndex 24 --uuid f68120281c3a4671b587856055e366bf -UTaeapdqVJtu9-ViDPYrMQeXxB4siChHhnieYhKZWD8QrvGUj5J3N--8KoL8DGJC8vSPEwpb7G9YlMGIynR3o4Ri_ZWErl9iSO1h4WxEjZqwKKKUlJ6OP7co2DrCSnf8tVzTJa2pzhpazZecBVD6o2xKtQv5w92Z7AVn-v7kzk8xZiSY4lscbqb4RO9_NVQouUfU5mxCNmpektaO6f_X4vwOlI9UH8oGvlaGkiuP3qL_Rtmqj87ZdxmnROF82aN-Al_I94DH0OfyVL51Sho6TPoEdAJlHervCVl6HWEtuLYAsCp9ykfYiNsx_44WbTZ-a6FBsg --clientId ODM5YTllZmUtMTQzZS00MjVkLWI1MmUtZTZmMmM4MzkxYTIz --xuid 2535410774699131 --userType msa --versionType release --width 1024 --height 768 --quickPlayPath \curseforge\minecraft\Install\quickPlay\java\1747844448525.json --launchTarget forge_client java_class_path (initial): \curseforge\minecraft\Install\libraries\net\minecraftforge\forge\1.21.5-55.0.17\forge-1.21.5-55.0.17-universal.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\forge\1.21.5-55.0.17\forge-1.21.5-55.0.17-client.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\JarJarFileSystems\0.3.26\JarJarFileSystems-0.3.26.jar;\curseforge\minecraft\Install\libraries\com\google\guava\guava\32.1.2-jre\guava-32.1.2-jre.jar;\curseforge\minecraft\Install\libraries\com\google\guava\failureaccess\1.0.1\failureaccess-1.0.1.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\securemodules\2.2.21\securemodules-2.2.21.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\unsafe\0.9.2\unsafe-0.9.2.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm\9.7.1\asm-9.7.1.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-tree\9.7.1\asm-tree-9.7.1.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-util\9.7.1\asm-util-9.7.1.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-commons\9.7.1\asm-commons-9.7.1.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-analysis\9.7.1\asm-analysis-9.7.1.jar;\curseforge\minecraft\Install\libraries\de\oceanlabs\mcp\mcp_config\1.21.5-20250325.155543\mcp_config-1.21.5-20250325.155543-srg2off.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\JarJarFileSystems\0.3.26\JarJarFileSystems-0.3.26.jar;\curseforge\minecraft\Install\libraries\com\google\guava\guava\32.1.2-jre\guava-32.1.2-jre.jar;\curseforge\minecraft\Install\libraries\com\google\guava\failureaccess\1.0.1\failureaccess-1.0.1.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\securemodules\2.2.21\securemodules-2.2.21.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\unsafe\0.9.2\unsafe-0.9.2.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm\9.7.1\asm-9.7.1.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-tree\9.7.1\asm-tree-9.7.1.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-util\9.7.1\asm-util-9.7.1.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-commons\9.7.1\asm-commons-9.7.1.jar;\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-analysis\9.7.1\asm-analysis-9.7.1.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\bootstrap\2.1.8\bootstrap-2.1.8.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\bootstrap-api\2.1.8\bootstrap-api-2.1.8.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\accesstransformers\8.2.2\accesstransformers-8.2.2.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\eventbus\6.2.27\eventbus-6.2.27.jar;\curseforge\minecraft\Install\libraries\net\jodah\typetools\0.6.3\typetools-0.6.3.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\forgespi\7.1.5\forgespi-7.1.5.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\coremods\5.2.6\coremods-5.2.6.jar;\curseforge\minecraft\Install\libraries\org\openjdk\nashorn\nashorn-core\15.4\nashorn-core-15.4.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\modlauncher\10.2.4\modlauncher-10.2.4.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\mergetool-api\1.0\mergetool-api-1.0.jar;\curseforge\minecraft\Install\libraries\com\electronwill\night-config\toml\3.7.4\toml-3.7.4.jar;\curseforge\minecraft\Install\libraries\com\electronwill\night-config\core\3.7.4\core-3.7.4.jar;\curseforge\minecraft\Install\libraries\org\apache\maven\maven-artifact\3.8.8\maven-artifact-3.8.8.jar;\curseforge\minecraft\Install\libraries\net\minecrell\terminalconsoleappender\1.2.0\terminalconsoleappender-1.2.0.jar;\curseforge\minecraft\Install\libraries\org\jline\jline-reader\3.25.1\jline-reader-3.25.1.jar;\curseforge\minecraft\Install\libraries\org\jline\jline-terminal\3.25.1\jline-terminal-3.25.1.jar;\curseforge\minecraft\Install\libraries\org\jline\jline-terminal-jna\3.25.1\jline-terminal-jna-3.25.1.jar;\curseforge\minecraft\Install\libraries\org\spongepowered\mixin\0.8.7\mixin-0.8.7.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\JarJarSelector\0.3.26\JarJarSelector-0.3.26.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\JarJarMetadata\0.3.26\JarJarMetadata-0.3.26.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\fmlcore\1.21.5-55.0.17\fmlcore-1.21.5-55.0.17.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\fmlloader\1.21.5-55.0.17\fmlloader-1.21.5-55.0.17.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\fmlearlydisplay\1.21.5-55.0.17\fmlearlydisplay-1.21.5-55.0.17.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\javafmllanguage\1.21.5-55.0.17\javafmllanguage-1.21.5-55.0.17.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\lowcodelanguage\1.21.5-55.0.17\lowcodelanguage-1.21.5-55.0.17.jar;\curseforge\minecraft\Install\libraries\net\minecraftforge\mclanguage\1.21.5-55.0.17\mclanguage-1.21.5-55.0.17.jar;\curseforge\minecraft\Install\libraries\com\fasterxml\jackson\core\jackson-annotations\2.13.4\jackson-annotations-2.13.4.jar;\curseforge\minecraft\Install\libraries\com\fasterxml\jackson\core\jackson-core\2.13.4\jackson-core-2.13.4.jar;\curseforge\minecraft\Install\libraries\com\fasterxml\jackson\core\jackson-databind\2.13.4.2\jackson-databind-2.13.4.2.jar;\curseforge\minecraft\Install\libraries\com\github\oshi\oshi-core\6.6.5\oshi-core-6.6.5.jar;\curseforge\minecraft\Install\libraries\com\github\stephenc\jcip\jcip-annotations\1.0-1\jcip-annotations-1.0-1.jar;\curseforge\minecraft\Install\libraries\com\google\code\gson\gson\2.11.0\gson-2.11.0.jar;\curseforge\minecraft\Install\libraries\com\ibm\icu\icu4j\76.1\icu4j-76.1.jar;\curseforge\minecraft\Install\libraries\com\microsoft\azure\msal4j\1.17.2\msal4j-1.17.2.jar;\curseforge\minecraft\Install\libraries\com\mojang\authlib\6.0.58\authlib-6.0.58.jar;\curseforge\minecraft\Install\libraries\com\mojang\blocklist\1.0.10\blocklist-1.0.10.jar;\curseforge\minecraft\Install\libraries\com\mojang\brigadier\1.3.10\brigadier-1.3.10.jar;\curseforge\minecraft\Install\libraries\com\mojang\datafixerupper\8.0.16\datafixerupper-8.0.16.jar;\curseforge\minecraft\Install\libraries\com\mojang\jtracy\1.0.29\jtracy-1.0.29.jar;\curseforge\minecraft\Install\libraries\com\mojang\jtracy\1.0.29\jtracy-1.0.29-natives-windows.jar;\curseforge\minecraft\Install\libraries\com\mojang\logging\1.5.10\logging-1.5.10.jar;\curseforge\minecraft\Install\libraries\com\mojang\patchy\2.2.10\patchy-2.2.10.jar;\curseforge\minecraft\Install\libraries\com\mojang\text2speech\1.18.11\text2speech-1.18.11.jar;\curseforge\minecraft\Install\libraries\com\nimbusds\content-type\2.3\content-type-2.3.jar;\curseforge\minecraft\Install\libraries\com\nimbusds\lang-tag\1.7\lang-tag-1.7.jar;\curseforge\minecraft\Install\libraries\com\nimbusds\nimbus-jose-jwt\9.40\nimbus-jose-jwt-9.40.jar;\curseforge\minecraft\Install\libraries\com\nimbusds\oauth2-oidc-sdk\11.18\oauth2-oidc-sdk-11.18.jar;\curseforge\minecraft\Install\libraries\commons-codec\commons-codec\1.17.1\commons-codec-1.17.1.jar;\curseforge\minecraft\Install\libraries\commons-io\commons-io\2.17.0\commons-io-2.17.0.jar;\curseforge\minecraft\Install\libraries\commons-logging\commons-logging\1.3.4\commons-logging-1.3.4.jar;\curseforge\minecraft\Install\libraries\io\netty\netty-buffer\4.1.118.Final\netty-buffer-4.1.118.Final.jar;\curseforge\minecraft\Install\libraries\io\netty\netty-codec\4.1.118.Final\netty-codec-4.1.118.Final.jar;\curseforge\minecraft\Install\libraries\io\netty\netty-common\4.1.118.Final\netty-common-4.1.118.Final.jar;\curseforge\minecraft\Install\libraries\io\netty\netty-handler\4.1.118.Final\netty-handler-4.1.118.Final.jar;\curseforge\minecraft\Install\libraries\io\netty\netty-resolver\4.1.118.Final\netty-resolver-4.1.118.Final.jar;\curseforge\minecraft\Install\libraries\io\netty\netty-transport-classes-epoll\4.1.118.Final\netty-transport-classes-epoll-4.1.118.Final.jar;\curseforge\minecraft\Install\libraries\io\netty\netty-transport-native-unix-common\4.1.118.Final\netty-transport-native-unix-common-4.1.118.Final.jar;\curseforge\minecraft\Install\libraries\io\netty\netty-transport\4.1.118.Final\netty-transport-4.1.118.Final.jar;\curseforge\minecraft\Install\libraries\it\unimi\dsi\fastutil\8.5.15\fastutil-8.5.15.jar;\curseforge\minecraft\Install\libraries\net\java\dev\jna\jna-platform\5.15.0\jna-platform-5.15.0.jar;\curseforge\minecraft\Install\libraries\net\java\dev\jna\jna\5.15.0\jna-5.15.0.jar;\curseforge\minecraft\Install\libraries\net\minidev\accessors-smart\2.5.1\accessors-smart-2.5.1.jar;\curseforge\minecraft\Install\libraries\net\minidev\json-smart\2.5.1\json-smart-2.5.1.jar;\curseforge\minecraft\Install\libraries\net\sf\jopt-simple\jopt-simple\5.0.4\jopt-simple-5.0.4.jar;\curseforge\minecraft\Install\libraries\org\apache\commons\commons-compress\1.27.1\commons-compress-1.27.1.jar;\curseforge\minecraft\Install\libraries\org\apache\commons\commons-lang3\3.17.0\commons-lang3-3.17.0.jar;\curseforge\minecraft\Install\libraries\org\apache\httpcomponents\httpclient\4.5.14\httpclient-4.5.14.jar;\curseforge\minecraft\Install\libraries\org\apache\httpcomponents\httpcore\4.4.16\httpcore-4.4.16.jar;\curseforge\minecraft\Install\libraries\org\apache\logging\log4j\log4j-api\2.24.1\log4j-api-2.24.1.jar;\curseforge\minecraft\Install\libraries\org\apache\logging\log4j\log4j-core\2.24.1\log4j-core-2.24.1.jar;\curseforge\minecraft\Install\libraries\org\apache\logging\log4j\log4j-slf4j2-impl\2.24.1\log4j-slf4j2-impl-2.24.1.jar;\curseforge\minecraft\Install\libraries\org\jcraft\jorbis\0.0.17\jorbis-0.0.17.jar;\curseforge\minecraft\Install\libraries\org\joml\joml\1.10.8\joml-1.10.8.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-freetype\3.3.3\lwjgl-freetype-3.3.3.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-freetype\3.3.3\lwjgl-freetype-3.3.3-natives-windows.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-freetype\3.3.3\lwjgl-freetype-3.3.3-natives-windows-arm64.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-freetype\3.3.3\lwjgl-freetype-3.3.3-natives-windows-x86.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-glfw\3.3.3\lwjgl-glfw-3.3.3.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-glfw\3.3.3\lwjgl-glfw-3.3.3-natives-windows.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-glfw\3.3.3\lwjgl-glfw-3.3.3-natives-windows-arm64.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-glfw\3.3.3\lwjgl-glfw-3.3.3-natives-windows-x86.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-jemalloc\3.3.3\lwjgl-jemalloc-3.3.3.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-jemalloc\3.3.3\lwjgl-jemalloc-3.3.3-natives-windows.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-jemalloc\3.3.3\lwjgl-jemalloc-3.3.3-natives-windows-arm64.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-jemalloc\3.3.3\lwjgl-jemalloc-3.3.3-natives-windows-x86.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-openal\3.3.3\lwjgl-openal-3.3.3.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-openal\3.3.3\lwjgl-openal-3.3.3-natives-windows.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-openal\3.3.3\lwjgl-openal-3.3.3-natives-windows-arm64.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-openal\3.3.3\lwjgl-openal-3.3.3-natives-windows-x86.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-opengl\3.3.3\lwjgl-opengl-3.3.3.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-opengl\3.3.3\lwjgl-opengl-3.3.3-natives-windows.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-opengl\3.3.3\lwjgl-opengl-3.3.3-natives-windows-arm64.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-opengl\3.3.3\lwjgl-opengl-3.3.3-natives-windows-x86.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-stb\3.3.3\lwjgl-stb-3.3.3.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-stb\3.3.3\lwjgl-stb-3.3.3-natives-windows.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-stb\3.3.3\lwjgl-stb-3.3.3-natives-windows-arm64.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-stb\3.3.3\lwjgl-stb-3.3.3-natives-windows-x86.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-tinyfd\3.3.3\lwjgl-tinyfd-3.3.3.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-tinyfd\3.3.3\lwjgl-tinyfd-3.3.3-natives-windows.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-tinyfd\3.3.3\lwjgl-tinyfd-3.3.3-natives-windows-arm64.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl-tinyfd\3.3.3\lwjgl-tinyfd-3.3.3-natives-windows-x86.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl\3.3.3\lwjgl-3.3.3.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl\3.3.3\lwjgl-3.3.3-natives-windows.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl\3.3.3\lwjgl-3.3.3-natives-windows-arm64.jar;\curseforge\minecraft\Install\libraries\org\lwjgl\lwjgl\3.3.3\lwjgl-3.3.3-natives-windows-x86.jar;\curseforge\minecraft\Install\libraries\org\lz4\lz4-java\1.8.0\lz4-java-1.8.0.jar;\curseforge\minecraft\Install\libraries\org\slf4j\slf4j-api\2.0.16\slf4j-api-2.0.16.jar;\curseforge\minecraft\Install\versions\forge-55.0.17\forge-55.0.17.jar Launcher Type: SUN_STANDARD [Global flags]      intx CICompilerCount                          = 12                                        {product} {ergonomic}      uint ConcGCThreads                            = 3                                         {product} {ergonomic}      uint G1ConcRefinementThreads                  = 13                                        {product} {ergonomic}    size_t G1HeapRegionSize                         = 2097152                                   {product} {ergonomic}     uintx GCDrainStackTargetSize                   = 64                                        {product} {ergonomic}     ccstr HeapDumpPath                             = MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump         {manageable} {command line}    size_t InitialHeapSize                          = 268435456                                 {product} {command line}    size_t MarkStackSize                            = 4194304                                   {product} {ergonomic}    size_t MaxHeapSize                              = 4294967296                                {product} {command line}    size_t MaxNewSize                               = 2575302656                                {product} {ergonomic}    size_t MinHeapDeltaBytes                        = 2097152                                   {product} {ergonomic}    size_t MinHeapSize                              = 268435456                                 {product} {command line}     uintx NonNMethodCodeHeapSize                   = 7602480                                {pd product} {ergonomic}     uintx NonProfiledCodeHeapSize                  = 122027880                              {pd product} {ergonomic}     uintx ProfiledCodeHeapSize                     = 122027880                              {pd product} {ergonomic}     uintx ReservedCodeCacheSize                    = 251658240                              {pd product} {ergonomic}      bool SegmentedCodeCache                       = true                                      {product} {ergonomic}    size_t SoftMaxHeapSize                          = 4294967296                             {manageable} {ergonomic}      intx ThreadStackSize                          = 1024                                   {pd product} {command line}      bool UseCompressedOops                        = true                           {product lp64_product} {ergonomic}      bool UseG1GC                                  = true                                      {product} {ergonomic}      bool UseLargePagesIndividualAllocation        = false                                  {pd product} {ergonomic} Logging: Log output configuration:  #0: stdout all=warning uptime,level,tags foldmultilines=false  #1: stderr all=off uptime,level,tags foldmultilines=false Environment Variables: PATH=C:\Program Files (x86)\Common Files\Oracle\Java\java8path;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\dotnet\;\AppData\Local\Microsoft\WindowsApps;\.dotnet\tools; USERNAME=%USERPROFILE% Rick OS=Windows_NT PROCESSOR_IDENTIFIER=AMD64 Family 23 Model 104 Stepping 1, AuthenticAMD TMP=<TMP> TEMP=<TEMP> Periodic native trim disabled ---------------  S Y S T E M  --------------- OS:  Windows 11 , 64 bit Build 26100 (10.0.26100.3912) OS uptime: 2 days 3:13 hours CPU: total 16 (initial active 16) (16 cores per cpu, 2 threads per core) family 23 model 104 stepping 1 microcode 0x8608104, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4a, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, clmul, bmi1, bmi2, adx, sha, fma, vzeroupper, clflush, clflushopt, rdtscp, rdpid, f16c Processor Information for the first 16 processors :   Max Mhz: 1801, Current Mhz: 1801, Mhz Limit: 1801 Memory: 4k page, system-wide physical 15693M (4574M free) TotalPageFile size 17997M (AvailPageFile size 1992M) current process WorkingSet (physical memory assigned to process): 456M, peak: 474M current process commit charge ("private bytes"): 512M, peak: 538M vm_info: OpenJDK 64-Bit Server VM (21.0.7+6-LTS) for windows-amd64 JRE (21.0.7+6-LTS), built on 2025-04-09T22:17:25Z by "MicrosoftCorporation" with unknown MS VC++:1939 END.  
    • i'm working on a mod but i need add a camera shake mechanic to it i tried do this with setPich and SetYaw and setRoll but it didn't work then i tried do this with setDelta method but this thing didn't work too so i need help because i don't know how can i add this
  • Topics

×
×
  • Create New...

Important Information

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