-
Recently Browsing
- No registered users viewing this page.
-
Posts
-
Good to know. Then would I still need the my packet handler class? If so, I am having trouble in the init() method. When I insert ClientboundUpdateMobEffectPacket::handle (same for ClientboundRemoveMobEffectPacket) as the argument for consumer(), I get an error saying "Reference to 'handle' is ambiguous, both 'handle(ClientGamePacketListener)' and 'handle(T)' match". I understand what this error is, but I do not know how to fix it. And when I tried to run the code, I get a compiler error saying "incompatible types: Supplier<Context> cannot be converted to ClientGamePacketListener)". How would I solve this if ClientboundUpdateMobEffectPacket::handle takes in a ClientGamePacketListener argument instead of a Supplier<Context> argument? // The packet handler class itself public class PacketHandler { private static final String PROTOCOL_VERSION = "1"; public static SimpleChannel INSTANCE = NetworkRegistry.newSimpleChannel( new ResourceLocation(ExampleMod.MOD_ID, "main"), () -> PROTOCOL_VERSION, PROTOCOL_VERSION::equals, PROTOCOL_VERSION::equals ); private PacketHandler() {} public static void init() { int index = 0; // "Reference to 'handle' is ambiguous, both 'handle(ClientGamePacketListener)' and 'handle(T)' match" INSTANCE.messageBuilder(ClientboundUpdateMobEffectPacket.class, index++, NetworkDirection.PLAY_TO_CLIENT) .encoder(ClientboundUpdateMobEffectPacket::write).decoder(ClientboundUpdateMobEffectPacket::new) .consumer(ClientboundUpdateMobEffectPacket::handle).add(); INSTANCE.messageBuilder(ClientboundRemoveMobEffectPacket.class, index++, NetworkDirection.PLAY_TO_CLIENT) .encoder(ClientboundRemoveMobEffectPacket::write).decoder(ClientboundRemoveMobEffectPacket::new) .consumer(ClientboundRemoveMobEffectPacket::handle).add(); } } On the other hand, if I do not need this packet handler class, how else would I send packets? The only way I know is calling PacketHandler.INSTANCE.send() (and Level::sendPacketToServer, but this problem is about clientbound packets, not serverbound).
-
By DasKaiserReich · Posted
Game version is 1.18.2 I installed a few mods and their dependencies: allthemodium-1.7.9-1.18.2-40.1.0.jar appleskin-forge-mc1.18-2.4.0.jar appliedenergistics2-11.0.0.jar bedspreads-forge-1.18.1-5.1.0.5.jar boatcontainer-1.0.4-1.18.2.jar cc-tweaked-1.18.2-1.100.5.jar ChiselsBits-forge-1.18.2-1.2.87-universal.jar cloth-config-6.2.57-fabric.jar Craftable+Horse+Armour++Saddle-1.18-1.8-Forge.jar createaddition-1.18.2-20220424a.jar createdeco-1.2.7-1.18.2.jar create-mc1.18.2_v0.4.1.jar fabric-api-0.51.1+1.18.2.jar flywheel-forge-1.18-0.6.2.jar ImmersiveEngineering-1.18.2-8.0.1-147.jar ironfurnaces-1.18.2-3.3.0.jar jei-1.18.2-9.7.0.195.jar NaturesCompass-1.18.2-1.9.5-forge.jar transportables-1.2.jar If someone could identify the source/sources of the problem, that'd be very appreciated. The game crashed whilst mouseclicked event handler Error: java.lang.NoClassDefFoundError: net/allthemods/alltheores/infos/ItemTagRegistry Exit Code: -1 ---- Minecraft Crash Report ---- // Don't do that. Time: 5/16/22, 8:00 PM Description: mouseClicked event handler java.lang.NoClassDefFoundError: net/allthemods/alltheores/infos/ItemTagRegistry at com.thevortex.allthemodium.worldgen.ATMConfiguredFeature.<clinit>(ATMConfiguredFeature.java:61) ~[allthemodium-1.7.9-1.18.2-40.1.0.jar%2352!/:1.7.9-1.18.2-40.1.0] {re:classloading} at com.thevortex.allthemodium.worldgen.ATMPlacedFeature.<clinit>(ATMPlacedFeature.java:30) ~[allthemodium-1.7.9-1.18.2-40.1.0.jar%2352!/:1.7.9-1.18.2-40.1.0] {re:classloading} at com.thevortex.allthemodium.worldgen.EventWorldgen.biomeModification(EventWorldgen.java:58) ~[allthemodium-1.7.9-1.18.2-40.1.0.jar%2352!/:1.7.9-1.18.2-40.1.0] {re:classloading} at net.minecraftforge.eventbus.ASMEventHandler_28_EventWorldgen_biomeModification_BiomeLoadingEvent.invoke(.dynamic) ~[?:?] {} at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:85) ~[eventbus-5.0.3.jar%232!/:?] {} at net.minecraftforge.eventbus.EventBus.post(EventBus.java:302) ~[eventbus-5.0.3.jar%232!/:?] {} at net.minecraftforge.eventbus.EventBus.post(EventBus.java:283) ~[eventbus-5.0.3.jar%232!/:?] {} at net.minecraftforge.common.ForgeHooks.enhanceBiome(ForgeHooks.java:891) ~[forge-1.18.2-40.1.20-universal.jar%2375!/:?] {re:classloading} at net.minecraft.world.level.biome.Biome.lambda$static$6(Biome.java:51) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading,pl:accesstransformer:B} at com.mojang.datafixers.util.Function6.lambda$null$4(Function6.java:18) ~[datafixerupper-4.1.27.jar%2333!/:?] {} at com.mojang.serialization.DataResult$Instance.ap3(DataResult.java:337) ~[datafixerupper-4.1.27.jar%2333!/:?] {} at com.mojang.serialization.codecs.RecordCodecBuilder$Instance$5.decode(RecordCodecBuilder.java:321) ~[datafixerupper-4.1.27.jar%2333!/:?] {} at com.mojang.serialization.codecs.RecordCodecBuilder$2.decode(RecordCodecBuilder.java:107) ~[datafixerupper-4.1.27.jar%2333!/:?] {} at com.mojang.serialization.MapDecoder.lambda$compressedDecode$0(MapDecoder.java:52) ~[datafixerupper-4.1.27.jar%2333!/:?] {} at com.mojang.serialization.DataResult.lambda$flatMap$10(DataResult.java:138) ~[datafixerupper-4.1.27.jar%2333!/:?] {} at com.mojang.datafixers.util.Either$Left.map(Either.java:38) ~[datafixerupper-4.1.27.jar%2333!/:?] {} at com.mojang.serialization.DataResult.flatMap(DataResult.java:136) ~[datafixerupper-4.1.27.jar%2333!/:?] {} at com.mojang.serialization.MapDecoder.compressedDecode(MapDecoder.java:52) ~[datafixerupper-4.1.27.jar%2333!/:?] {} at com.mojang.serialization.MapCodec$MapCodecCodec.decode(MapCodec.java:91) ~[datafixerupper-4.1.27.jar%2333!/:?] {} at com.mojang.serialization.Decoder.parse(Decoder.java:18) ~[datafixerupper-4.1.27.jar%2333!/:?] {} at net.minecraft.resources.RegistryResourceAccess$InMemoryStorage.m_183313_(RegistryResourceAccess.java:144) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading} at net.minecraft.resources.RegistryLoader.m_206767_(RegistryLoader.java:55) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading} at net.minecraft.resources.RegistryLoader.m_206775_(RegistryLoader.java:37) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading} at com.mojang.serialization.DataResult.lambda$flatMap$10(DataResult.java:138) ~[datafixerupper-4.1.27.jar%2333!/:?] {} at com.mojang.datafixers.util.Either$Left.map(Either.java:38) ~[datafixerupper-4.1.27.jar%2333!/:?] {} at com.mojang.serialization.DataResult.flatMap(DataResult.java:136) ~[datafixerupper-4.1.27.jar%2333!/:?] {} at net.minecraft.resources.RegistryLoader.m_206762_(RegistryLoader.java:37) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading} at net.minecraft.resources.RegistryLoader$Bound.m_206789_(RegistryLoader.java:91) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading} at net.minecraft.core.RegistryAccess.m_206159_(RegistryAccess.java:295) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading,re:mixin} at net.minecraft.core.RegistryAccess.m_206171_(RegistryAccess.java:290) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading,re:mixin} at net.minecraft.resources.RegistryOps.m_206817_(RegistryOps.java:32) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading} at net.minecraft.core.RegistryAccess.m_206197_(RegistryAccess.java:267) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading,re:mixin} at net.minecraft.core.RegistryAccess.m_206215_(RegistryAccess.java:285) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading,re:mixin} at com.google.common.base.Suppliers$NonSerializableMemoizingSupplier.get(Suppliers.java:183) ~[guava-31.0.1-jre.jar%2328!/:?] {} at net.minecraft.client.gui.screens.worldselection.CreateWorldScreen.m_205424_(CreateWorldScreen.java:108) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading,pl:runtimedistcleaner:A} at net.minecraft.client.gui.screens.worldselection.SelectWorldScreen.m_101375_(SelectWorldScreen.java:71) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading} at net.minecraft.client.gui.components.Button.m_5691_(Button.java:40) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading} at net.minecraft.client.gui.components.AbstractButton.m_5716_(AbstractButton.java:16) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading} at net.minecraft.client.gui.components.AbstractWidget.m_6375_(AbstractWidget.java:111) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading,pl:runtimedistcleaner:A} at net.minecraft.client.gui.components.events.ContainerEventHandler.m_6375_(ContainerEventHandler.java:27) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:computing_frames,re:mixin,re:classloading} at net.minecraft.client.MouseHandler.m_168084_(MouseHandler.java:88) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading,pl:runtimedistcleaner:A} at net.minecraft.client.gui.screens.Screen.m_96579_(Screen.java:528) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:computing_frames,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:WrappedGenericStackTooltipModIdMixin,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.MouseHandler.m_91530_(MouseHandler.java:85) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading,pl:runtimedistcleaner:A} at net.minecraft.client.MouseHandler.m_168091_(MouseHandler.java:185) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading,pl:runtimedistcleaner:A} at net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B} at net.minecraft.client.MouseHandler.m_91565_(MouseHandler.java:184) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading,pl:runtimedistcleaner:A} at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar%2347!/:build 10] {} at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar%2343!/:build 10] {} at org.lwjgl.glfw.GLFW.glfwPollEvents(GLFW.java:3101) ~[lwjgl-glfw-3.2.2.jar%2347!/:build 10] {} at com.mojang.blaze3d.systems.RenderSystem.m_69495_(RenderSystem.java:197) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:mixin,re:classloading,pl:mixin:APP:flywheel.mixins.json:RenderTexturesMixin,pl:mixin:A} at com.mojang.blaze3d.platform.Window.m_85435_(Window.java:333) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading,pl:runtimedistcleaner:A} at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1066) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:immersiveengineering.mixins.json:accessors.client.MinecraftAccess,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:663) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:immersiveengineering.mixins.json:accessors.client.MinecraftAccess,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.main.Main.main(Main.java:205) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading,pl:runtimedistcleaner:A} at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {} at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {} at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {} at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {} at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:31) ~[fmlloader-1.18.2-40.1.20.jar%2316!/:?] {} at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-9.1.3.jar%235!/:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-9.1.3.jar%235!/:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-9.1.3.jar%235!/:?] {} at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-9.1.3.jar%235!/:?] {} at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-9.1.3.jar%235!/:?] {} at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-9.1.3.jar%235!/:?] {} at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-9.1.3.jar%235!/:?] {} at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:149) [bootstraplauncher-1.0.0.jar:?] {} Caused by: java.lang.ClassNotFoundException: net.allthemods.alltheores.infos.ItemTagRegistry at jdk.internal.loader.BuiltinClassLoader.loadClass(BuiltinClassLoader.java:641) ~[?:?] {} at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?] {} at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:134) ~[securejarhandler-1.0.3.jar:?] {} at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?] {} at cpw.mods.cl.ModuleClassLoader.loadClass(ModuleClassLoader.java:134) ~[securejarhandler-1.0.3.jar:?] {} at java.lang.ClassLoader.loadClass(ClassLoader.java:520) ~[?:?] {} ... 67 more A detailed walkthrough of the error, its code path and all known details is as follows: --------------------------------------------------------------------------------------- -- Head -- Thread: Render thread Stacktrace: at com.thevortex.allthemodium.worldgen.ATMConfiguredFeature.<clinit>(ATMConfiguredFeature.java:61) ~[allthemodium-1.7.9-1.18.2-40.1.0.jar%2352!/:1.7.9-1.18.2-40.1.0] {re:classloading} at com.thevortex.allthemodium.worldgen.ATMPlacedFeature.<clinit>(ATMPlacedFeature.java:30) ~[allthemodium-1.7.9-1.18.2-40.1.0.jar%2352!/:1.7.9-1.18.2-40.1.0] {re:classloading} at com.thevortex.allthemodium.worldgen.EventWorldgen.biomeModification(EventWorldgen.java:58) ~[allthemodium-1.7.9-1.18.2-40.1.0.jar%2352!/:1.7.9-1.18.2-40.1.0] {re:classloading} at net.minecraftforge.eventbus.ASMEventHandler_28_EventWorldgen_biomeModification_BiomeLoadingEvent.invoke(.dynamic) ~[?:?] {} at net.minecraftforge.eventbus.ASMEventHandler.invoke(ASMEventHandler.java:85) ~[eventbus-5.0.3.jar%232!/:?] {} at net.minecraftforge.eventbus.EventBus.post(EventBus.java:302) ~[eventbus-5.0.3.jar%232!/:?] {} at net.minecraftforge.eventbus.EventBus.post(EventBus.java:283) ~[eventbus-5.0.3.jar%232!/:?] {} at net.minecraftforge.common.ForgeHooks.enhanceBiome(ForgeHooks.java:891) ~[forge-1.18.2-40.1.20-universal.jar%2375!/:?] {re:classloading} at net.minecraft.world.level.biome.Biome.lambda$static$6(Biome.java:51) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading,pl:accesstransformer:B} at com.mojang.datafixers.util.Function6.lambda$null$4(Function6.java:18) ~[datafixerupper-4.1.27.jar%2333!/:?] {} at com.mojang.serialization.DataResult$Instance.ap3(DataResult.java:337) ~[datafixerupper-4.1.27.jar%2333!/:?] {} at com.mojang.serialization.codecs.RecordCodecBuilder$Instance$5.decode(RecordCodecBuilder.java:321) ~[datafixerupper-4.1.27.jar%2333!/:?] {} at com.mojang.serialization.codecs.RecordCodecBuilder$2.decode(RecordCodecBuilder.java:107) ~[datafixerupper-4.1.27.jar%2333!/:?] {} at com.mojang.serialization.MapDecoder.lambda$compressedDecode$0(MapDecoder.java:52) ~[datafixerupper-4.1.27.jar%2333!/:?] {} at com.mojang.serialization.DataResult.lambda$flatMap$10(DataResult.java:138) ~[datafixerupper-4.1.27.jar%2333!/:?] {} at com.mojang.datafixers.util.Either$Left.map(Either.java:38) ~[datafixerupper-4.1.27.jar%2333!/:?] {} at com.mojang.serialization.DataResult.flatMap(DataResult.java:136) ~[datafixerupper-4.1.27.jar%2333!/:?] {} at com.mojang.serialization.MapDecoder.compressedDecode(MapDecoder.java:52) ~[datafixerupper-4.1.27.jar%2333!/:?] {} at com.mojang.serialization.MapCodec$MapCodecCodec.decode(MapCodec.java:91) ~[datafixerupper-4.1.27.jar%2333!/:?] {} at com.mojang.serialization.Decoder.parse(Decoder.java:18) ~[datafixerupper-4.1.27.jar%2333!/:?] {} at net.minecraft.resources.RegistryResourceAccess$InMemoryStorage.m_183313_(RegistryResourceAccess.java:144) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading} at net.minecraft.resources.RegistryLoader.m_206767_(RegistryLoader.java:55) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading} at net.minecraft.resources.RegistryLoader.m_206775_(RegistryLoader.java:37) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading} at com.mojang.serialization.DataResult.lambda$flatMap$10(DataResult.java:138) ~[datafixerupper-4.1.27.jar%2333!/:?] {} at com.mojang.datafixers.util.Either$Left.map(Either.java:38) ~[datafixerupper-4.1.27.jar%2333!/:?] {} at com.mojang.serialization.DataResult.flatMap(DataResult.java:136) ~[datafixerupper-4.1.27.jar%2333!/:?] {} at net.minecraft.resources.RegistryLoader.m_206762_(RegistryLoader.java:37) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading} at net.minecraft.resources.RegistryLoader$Bound.m_206789_(RegistryLoader.java:91) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading} at net.minecraft.core.RegistryAccess.m_206159_(RegistryAccess.java:295) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading,re:mixin} at net.minecraft.core.RegistryAccess.m_206171_(RegistryAccess.java:290) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading,re:mixin} at net.minecraft.resources.RegistryOps.m_206817_(RegistryOps.java:32) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading} at net.minecraft.core.RegistryAccess.m_206197_(RegistryAccess.java:267) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading,re:mixin} at net.minecraft.core.RegistryAccess.m_206215_(RegistryAccess.java:285) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading,re:mixin} at com.google.common.base.Suppliers$NonSerializableMemoizingSupplier.get(Suppliers.java:183) ~[guava-31.0.1-jre.jar%2328!/:?] {} at net.minecraft.client.gui.screens.worldselection.CreateWorldScreen.m_205424_(CreateWorldScreen.java:108) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading,pl:runtimedistcleaner:A} at net.minecraft.client.gui.screens.worldselection.SelectWorldScreen.m_101375_(SelectWorldScreen.java:71) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading} at net.minecraft.client.gui.components.Button.m_5691_(Button.java:40) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading} at net.minecraft.client.gui.components.AbstractButton.m_5716_(AbstractButton.java:16) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading} at net.minecraft.client.gui.components.AbstractWidget.m_6375_(AbstractWidget.java:111) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading,pl:runtimedistcleaner:A} at net.minecraft.client.gui.components.events.ContainerEventHandler.m_6375_(ContainerEventHandler.java:27) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:computing_frames,re:mixin,re:classloading} at net.minecraft.client.MouseHandler.m_168084_(MouseHandler.java:88) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading,pl:runtimedistcleaner:A} at net.minecraft.client.gui.screens.Screen.m_96579_(Screen.java:528) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:computing_frames,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:WrappedGenericStackTooltipModIdMixin,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.MouseHandler.m_91530_(MouseHandler.java:85) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading,pl:runtimedistcleaner:A} at net.minecraft.client.MouseHandler.m_168091_(MouseHandler.java:185) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading,pl:runtimedistcleaner:A} at net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B} at net.minecraft.client.MouseHandler.m_91565_(MouseHandler.java:184) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading,pl:runtimedistcleaner:A} at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar%2347!/:build 10] {} at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar%2343!/:build 10] {} at org.lwjgl.glfw.GLFW.glfwPollEvents(GLFW.java:3101) ~[lwjgl-glfw-3.2.2.jar%2347!/:build 10] {} at com.mojang.blaze3d.systems.RenderSystem.m_69495_(RenderSystem.java:197) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:mixin,re:classloading,pl:mixin:APP:flywheel.mixins.json:RenderTexturesMixin,pl:mixin:A} -- Affected screen -- Details: Screen name: net.minecraft.client.gui.screens.worldselection.SelectWorldScreen Stacktrace: at net.minecraft.client.gui.screens.Screen.m_96579_(Screen.java:528) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:computing_frames,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:WrappedGenericStackTooltipModIdMixin,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.MouseHandler.m_91530_(MouseHandler.java:85) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading,pl:runtimedistcleaner:A} at net.minecraft.client.MouseHandler.m_168091_(MouseHandler.java:185) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading,pl:runtimedistcleaner:A} at net.minecraft.util.thread.BlockableEventLoop.execute(BlockableEventLoop.java:103) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:mixin,pl:accesstransformer:B,re:computing_frames,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B} at net.minecraft.client.MouseHandler.m_91565_(MouseHandler.java:184) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading,pl:runtimedistcleaner:A} at org.lwjgl.glfw.GLFWMouseButtonCallbackI.callback(GLFWMouseButtonCallbackI.java:36) ~[lwjgl-glfw-3.2.2.jar%2347!/:build 10] {} at org.lwjgl.system.JNI.invokeV(Native Method) ~[lwjgl-3.2.2.jar%2343!/:build 10] {} at org.lwjgl.glfw.GLFW.glfwPollEvents(GLFW.java:3101) ~[lwjgl-glfw-3.2.2.jar%2347!/:build 10] {} at com.mojang.blaze3d.systems.RenderSystem.m_69495_(RenderSystem.java:197) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:mixin,re:classloading,pl:mixin:APP:flywheel.mixins.json:RenderTexturesMixin,pl:mixin:A} at com.mojang.blaze3d.platform.Window.m_85435_(Window.java:333) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading,pl:runtimedistcleaner:A} at net.minecraft.client.Minecraft.m_91383_(Minecraft.java:1066) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:immersiveengineering.mixins.json:accessors.client.MinecraftAccess,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:663) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:immersiveengineering.mixins.json:accessors.client.MinecraftAccess,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.main.Main.main(Main.java:205) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading,pl:runtimedistcleaner:A} at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {} at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {} at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {} at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {} at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:31) ~[fmlloader-1.18.2-40.1.20.jar%2316!/:?] {} at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-9.1.3.jar%235!/:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-9.1.3.jar%235!/:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-9.1.3.jar%235!/:?] {} at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-9.1.3.jar%235!/:?] {} at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-9.1.3.jar%235!/:?] {} at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-9.1.3.jar%235!/:?] {} at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-9.1.3.jar%235!/:?] {} at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:149) [bootstraplauncher-1.0.0.jar:?] {} -- Last reload -- Details: Reload number: 1 Reload reason: initial Finished: Yes Packs: Mod Resources, Default Stacktrace: at net.minecraft.client.ResourceLoadStateTracker.m_168562_(ResourceLoadStateTracker.java:49) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading} at net.minecraft.client.Minecraft.m_91354_(Minecraft.java:2262) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:immersiveengineering.mixins.json:accessors.client.MinecraftAccess,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.Minecraft.m_91374_(Minecraft.java:680) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:mixin,pl:accesstransformer:B,pl:runtimedistcleaner:A,re:classloading,pl:accesstransformer:B,pl:mixin:APP:ae2.mixins.json:PickColorMixin,pl:mixin:APP:flywheel.mixins.json:PausedPartialTickAccessor,pl:mixin:APP:immersiveengineering.mixins.json:accessors.client.MinecraftAccess,pl:mixin:APP:create.mixins.json:WindowResizeMixin,pl:mixin:A,pl:runtimedistcleaner:A} at net.minecraft.client.main.Main.main(Main.java:205) ~[client-1.18.2-20220404.173914-srg.jar%2371!/:?] {re:classloading,pl:runtimedistcleaner:A} at jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:?] {} at jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:77) ~[?:?] {} at jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[?:?] {} at java.lang.reflect.Method.invoke(Method.java:568) ~[?:?] {} at net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$launchService$0(CommonClientLaunchHandler.java:31) ~[fmlloader-1.18.2-40.1.20.jar%2316!/:?] {} at cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch(LaunchServiceHandlerDecorator.java:37) [modlauncher-9.1.3.jar%235!/:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:53) [modlauncher-9.1.3.jar%235!/:?] {} at cpw.mods.modlauncher.LaunchServiceHandler.launch(LaunchServiceHandler.java:71) [modlauncher-9.1.3.jar%235!/:?] {} at cpw.mods.modlauncher.Launcher.run(Launcher.java:106) [modlauncher-9.1.3.jar%235!/:?] {} at cpw.mods.modlauncher.Launcher.main(Launcher.java:77) [modlauncher-9.1.3.jar%235!/:?] {} at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:26) [modlauncher-9.1.3.jar%235!/:?] {} at cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(BootstrapLaunchConsumer.java:23) [modlauncher-9.1.3.jar%235!/:?] {} at cpw.mods.bootstraplauncher.BootstrapLauncher.main(BootstrapLauncher.java:149) [bootstraplauncher-1.0.0.jar:?] {} -- System Details -- Details: Minecraft Version: 1.18.2 Minecraft Version ID: 1.18.2 Operating System: Windows 10 (amd64) version 10.0 Java Version: 17.0.1, Microsoft Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Microsoft Memory: 1115665992 bytes (1063 MiB) / 2147483648 bytes (2048 MiB) up to 2147483648 bytes (2048 MiB) CPUs: 4 Processor Vendor: AuthenticAMD Processor Name: AMD Ryzen 3 1200 Quad-Core Processor Identifier: AuthenticAMD Family 23 Model 1 Stepping 1 Microarchitecture: Zen Frequency (GHz): 3.10 Number of physical packages: 1 Number of physical CPUs: 4 Number of logical CPUs: 4 Graphics card #0 name: NVIDIA GeForce GTX 1050 Ti Graphics card #0 vendor: NVIDIA (0x10de) Graphics card #0 VRAM (MB): 4095.00 Graphics card #0 deviceId: 0x1c82 Graphics card #0 versionInfo: DriverVersion=27.21.14.5671 Memory slot #0 capacity (MB): 8192.00 Memory slot #0 clockSpeed (GHz): 2.67 Memory slot #0 type: DDR4 Memory slot #1 capacity (MB): 8192.00 Memory slot #1 clockSpeed (GHz): 2.67 Memory slot #1 type: DDR4 Virtual memory max (MB): 18747.92 Virtual memory used (MB): 8672.07 Swap memory total (MB): 2432.00 Swap memory used (MB): 0.00 JVM Flags: 9 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx2G -XX:+UnlockExperimentalVMOptions -XX:+UseG1GC -XX:G1NewSizePercent=20 -XX:G1ReservePercent=20 -XX:MaxGCPauseMillis=50 -XX:G1HeapRegionSize=32M Launched Version: 1.18.2-forge-40.1.20 Backend library: LWJGL version 3.2.2 SNAPSHOT Backend API: GeForce GTX 1050 Ti/PCIe/SSE2 GL version 3.2.0 NVIDIA 456.71, NVIDIA Corporation Window size: 854x480 GL Caps: Using framebuffer using OpenGL 3.2 GL debug messages: Using VBOs: Yes Is Modded: Definitely; Client brand changed to 'forge' Type: Client (map_client.txt) Graphics mode: fancy Resource Packs: vanilla Current Language: English (US) CPU: 4x AMD Ryzen 3 1200 Quad-Core Processor ModLauncher: 9.1.3+9.1.3+main.9b69c82a ModLauncher launch target: forgeclient ModLauncher naming: srg ModLauncher services: mixin PLUGINSERVICE eventbus PLUGINSERVICE slf4jfixer PLUGINSERVICE object_holder_definalize PLUGINSERVICE runtime_enum_extender PLUGINSERVICE capability_token_subclass PLUGINSERVICE accesstransformer PLUGINSERVICE runtimedistcleaner PLUGINSERVICE mixin TRANSFORMATIONSERVICE fml TRANSFORMATIONSERVICE FML Language Providers: minecraft@1.0 javafml@null Mod List: client-1.18.2-20220404.173914-srg.jar |Minecraft |minecraft |1.18.2 |DONE |Manifest: a1:d4:5e:04:4f:d3:d6:e0:7b:37:97:cf:77:b0:de:ad:4a:47:ce:8c:96:49:5f:0a:cf:8c:ae:b2:6d:4b:8a:3f ImmersiveEngineering-1.18.2-8.0.1-147.jar |Immersive Engineering |immersiveengineering |1.18.2-8.0.1-147 |DONE |Manifest: 44:39:94:cf:1d:8c:be:3c:7f:a9:ee:f4:1e:63:a5:ac:61:f9:c2:87:d5:5b:d9:d6:8c:b5:3e:96:5d:8e:3f:b7 ironfurnaces-1.18.2-3.3.0.jar |Iron Furnaces |ironfurnaces |3.3.0 |DONE |Manifest: NOSIGNATURE allthemodium-1.7.9-1.18.2-40.1.0.jar |Allthemodium |allthemodium |1.7.9-1.18.2-40.1.0 |DONE |Manifest: NOSIGNATURE cc-tweaked-1.18.2-1.100.5.jar |CC: Tweaked |computercraft |1.100.5 |DONE |Manifest: NOSIGNATURE bedspreads-forge-1.18.1-5.1.0.5.jar |Bedspreads |bedspreads |1.18.1-5.1.0.5 |DONE |Manifest: NOSIGNATURE jei-1.18.2-9.7.0.195.jar |Just Enough Items |jei |9.7.0.195 |DONE |Manifest: NOSIGNATURE appliedenergistics2-11.0.0.jar |Applied Energistics 2 |ae2 |11.0.0 |DONE |Manifest: NOSIGNATURE Craftable+Horse+Armour++Saddle-1.18-1.8-Forge.jar |CHA&S - Craftable Horse Armour|craftablehorsearmour |1.8 |DONE |Manifest: NOSIGNATURE forge-1.18.2-40.1.20-universal.jar |Forge |forge |40.1.20 |DONE |Manifest: 84:ce:76:e8:45:35:e4:0e:63:86:df:47:59:80:0f:67:6c:c1:5f:6e:5f:4d:b3:54:47:1a:9f:7f:ed:5e:f2:90 appleskin-forge-mc1.18-2.4.0.jar |AppleSkin |appleskin |2.4.0+mc1.18 |DONE |Manifest: NOSIGNATURE flywheel-forge-1.18-0.6.2.jar |Flywheel |flywheel |1.18-0.6.2 |DONE |Manifest: NOSIGNATURE create-mc1.18.2_v0.4.1.jar |Create |create |0.4.1 |DONE |Manifest: NOSIGNATURE createdeco-1.2.7-1.18.2.jar |Create Deco |createdeco |1.2.7-1.18.2 |DONE |Manifest: NOSIGNATURE ChiselsBits-forge-1.18.2-1.2.87-universal.jar |Chisels & bits |chiselsandbits |1.2.87 |DONE |Manifest: NOSIGNATURE createaddition-1.18.2-20220424a.jar |Create Crafts & Additions |createaddition |1.18.2-20220424a |DONE |Manifest: NOSIGNATURE NaturesCompass-1.18.2-1.9.5-forge.jar |Nature's Compass |naturescompass |1.18.2-1.9.5-forge |DONE |Manifest: NOSIGNATURE Flywheel Backend: GL33 Instanced Arrays Crash Report UUID: 9cd54d5f-f538-4ac5-b4d4-576d208f8325 FML: 40.1 Forge: net.minecraftforge:40.1.20 -
Trying to use 1.18.2 forge and it keeps crashing. Here's the launcher Log [Info: 2022-05-16 22:45:11.7901304: NetQueue.cpp(186)] NetQueue: Setting up. [Info: 2022-05-16 22:45:11.7907743: NetQueue.cpp(622)] NetQueue: worker thread started. [Info: 2022-05-16 22:45:11.7908928: mainWindows.cpp(86)] Running launcher bootstrap (version 1.1.11) [Error: 2022-05-16 22:45:11.7948647: localization.cpp(45)] No locale matching [en-us.json] found. [Error: 2022-05-16 22:45:11.7948850: localization.cpp(110)] No translation found for "Unable to download <game>. Please try again later." [Error: 2022-05-16 22:45:11.7948995: localization.cpp(110)] No translation found for "Unable to download the <game> Native Launcher." [Error: 2022-05-16 22:45:11.7949129: localization.cpp(110)] No translation found for "Unable to update the <game> Game Launcher." [Error: 2022-05-16 22:45:11.7949267: localization.cpp(110)] No translation found for "Unable to download the <game> Runtime Environment." [Error: 2022-05-16 22:45:11.7949394: localization.cpp(110)] No translation found for "Unable to update the <game> Game Launcher." [Error: 2022-05-16 22:45:11.7949516: localization.cpp(110)] No translation found for "Unable to update the <game> Runtime Environment." [Error: 2022-05-16 22:45:11.7949644: localization.cpp(110)] No translation found for "Unable to update the <game> Native Launcher." [Error: 2022-05-16 22:45:11.7949764: localization.cpp(110)] No translation found for "Unable to relaunch the Minecraft bootstrap." [Error: 2022-05-16 22:45:11.7949885: localization.cpp(110)] No translation found for "Unable to start the <game> Runtime Environment. This is most likely caused by a corruption. Please try to reinstall <game>." [Error: 2022-05-16 22:45:11.7950069: localization.cpp(110)] No translation found for "Unable to start <game>, if you are running from a dmg, please drag to Applications and try again." [Error: 2022-05-16 22:45:11.7950218: localization.cpp(110)] No translation found for "Unable to initialize the network library." [Error: 2022-05-16 22:45:11.7950335: localization.cpp(110)] No translation found for "<game> Launcher" [Info: 2022-05-16 22:45:11.7977098: NetQueue.cpp(186)] NetQueue: Setting up. [Info: 2022-05-16 22:45:11.7985711: NetQueue.cpp(622)] NetQueue: worker thread started. [Error: 2022-05-16 22:45:11.7991049: localization.cpp(45)] No locale matching [en-us.json] found. [Error: 2022-05-16 22:45:11.7991335: localization.cpp(110)] No translation found for "Unable to download <game>. Please try again later." [Error: 2022-05-16 22:45:11.7991588: localization.cpp(110)] No translation found for "Unable to download the <game> Native Launcher." [Error: 2022-05-16 22:45:11.7991802: localization.cpp(110)] No translation found for "Unable to update the <game> Game Launcher." [Error: 2022-05-16 22:45:11.7992000: localization.cpp(110)] No translation found for "Unable to download the <game> Runtime Environment." [Error: 2022-05-16 22:45:11.7992196: localization.cpp(110)] No translation found for "Unable to update the <game> Game Launcher." [Error: 2022-05-16 22:45:11.7992391: localization.cpp(110)] No translation found for "Unable to update the <game> Runtime Environment." [Error: 2022-05-16 22:45:11.7992695: localization.cpp(110)] No translation found for "Unable to update the <game> Native Launcher." [Error: 2022-05-16 22:45:11.7992896: localization.cpp(110)] No translation found for "Unable to relaunch the Minecraft bootstrap." [Error: 2022-05-16 22:45:11.7993087: localization.cpp(110)] No translation found for "Unable to start the <game> Runtime Environment. This is most likely caused by a corruption. Please try to reinstall <game>." [Error: 2022-05-16 22:45:11.7993286: localization.cpp(110)] No translation found for "Unable to start <game>, if you are running from a dmg, please drag to Applications and try again." [Error: 2022-05-16 22:45:11.7993477: localization.cpp(110)] No translation found for "Unable to initialize the network library." [Error: 2022-05-16 22:45:11.7993662: localization.cpp(110)] No translation found for "<game> Launcher" [Info: 2022-05-16 22:45:11.7993906: Common.cpp(32)] Native Launcher Version: 1.1.11 [Info: 2022-05-16 22:45:11.7994586: Common.cpp(33)] Operating System: Windows 10 Enterprise [Info: 2022-05-16 22:45:11.7995356: Common.cpp(34)] Application Data directory: C:\...\.minecraft [Info: 2022-05-16 22:45:11.7997306: Common.cpp(35)] Executable Path: /:\...\MinecraftLauncher.exe [Info: 2022-05-16 22:45:11.7997747: Common.cpp(36)] App Directory dir: C:\...\Minecraft [Info: 2022-05-16 22:45:11.7998151: Common.cpp(37)] Game data directory: C:\...\.minecraft [Info: 2022-05-16 22:45:11.7998547: Common.cpp(38)] Launcher dir: C:\...\game [Info: 2022-05-16 22:45:11.7998938: Common.cpp(39)] Java dir: C:\...\jre-x64 [Info: 2022-05-16 22:45:11.7999317: Common.cpp(40)] TmpDir dir: C:\...\MinecraftLauncher [Info: 2022-05-16 22:45:11.7999723: Common.cpp(41)] x64: true [Info: 2022-05-16 22:45:11.8000116: LauncherConfiguration.cpp(292)] Using update preferences at path: C:\...\launcher_profiles.json [Warning: 2022-05-16 22:45:11.8006837: LauncherConfiguration.cpp(113)] Failed to get clientToken from configuration, launcher updater will fall back to using stable versions instead of controlled experiment versions. [Info: 2022-05-16 22:45:11.8007504: LauncherConfiguration.cpp(295)] Failed to read update preferences from C:\...\launcher_profiles.json [Info: 2022-05-16 22:45:11.8008036: LauncherConfiguration.cpp(306)] Using update preferences at path: C:\...\launcher_settings.json [Info: 2022-05-16 22:45:11.8012773: NetQueue.cpp(632)] NetQueue: Starting net action https://launchermeta.mojang.com/v1/products/launcher/d03cf0cf95cce259fa9ea3ab54b65bd28bb0ae82/windows-x86.json [Info: 2022-05-16 22:45:11.9377702: NetQueue.cpp(472)] NetQueue: Primary ip: 18.67.62.16, Host: launchermeta.mojang.com [Info: 2022-05-16 22:45:11.9378648: NetQueue.cpp(551)] NetQueue: Action finished: https://launchermeta.mojang.com/v1/products/launcher/d03cf0cf95cce259fa9ea3ab54b65bd28bb0ae82/windows-x86.json [Info: 2022-05-16 22:45:11.9379301: NetQueue.cpp(579)] NetQueue: Action finalized: https://launchermeta.mojang.com/v1/products/launcher/d03cf0cf95cce259fa9ea3ab54b65bd28bb0ae82/windows-x86.json [Info: 2022-05-16 22:45:11.9397754: LauncherConfiguration.cpp(198)] Deciding on update with strategy 2 and clientID 1459299594 [Info: 2022-05-16 22:45:11.9398734: LauncherConfiguration.cpp(215)] Version of launcher-bootstrap-ado is current, no action is necessary. [Info: 2022-05-16 22:45:11.9399652: LauncherConfiguration.cpp(248)] Bootstrap is current [Info: 2022-05-16 22:45:11.9465539: LauncherConfiguration.cpp(198)] Deciding on update with strategy 2 and clientID 1459299594 [Info: 2022-05-16 22:45:11.9466555: LauncherConfiguration.cpp(215)] Version of launcher-core-ado is current, no action is necessary. [Info: 2022-05-16 22:45:11.9467433: LauncherConfiguration.cpp(248)] Bootstrap is current [Info: 2022-05-16 22:45:11.9468742: StartLibrary.cpp(61)] Starting C:\...\launcher.dll [Info: 2022-05-16 22:45:11.9696834: StartLibrary.cpp(95)] Running launcher! [Info: 2022-05-16 22:45:11.9697337: StartLibrary.cpp(97)] Logging is open, passing it to Launcher Core. [Info: 2022-05-16 22:45:11.9704219: LauncherMain.cpp(113)] Initiated models [Info: 2022-05-16 22:45:11.9723487: LauncherMain.cpp(296)] Initiated app arguments [Info: 2022-05-16 22:45:11.9723930: LauncherMain.cpp(357)] Initiated directories [Info: 2022-05-16 22:45:11.9724716: LauncherMain.cpp(378)] Initialized network [Info: 2022-05-16 22:45:11.9724994: NetQueue.cpp(186)] NetQueue: Setting up. [Info: 2022-05-16 22:45:11.9728177: NetQueue.cpp(622)] NetQueue: worker thread started. [Info: 2022-05-16 22:45:11.9729503: LauncherMain.cpp(399)] Initialized Sentry [Info: 2022-05-16 22:45:11.9730045: LauncherMain.cpp(405)] workDir: %USERPROFILE%\AppData\Roaming\.minecraft [Info: 2022-05-16 22:45:11.9730463: LauncherMain.cpp(413)] appDir: C:\...\Minecraft [Info: 2022-05-16 22:45:11.9736582: LauncherMain.cpp(439)] Launcher core version: 2.3.173 (4c029a87f0e20a6526734ab172822bb176f75481) [Info: 2022-05-16 22:45:11.9736959: LauncherMain.cpp(440)] Main process: true [Info: 2022-05-16 22:45:11.9737844: NetQueue.cpp(186)] NetQueue: Setting up. [Info: 2022-05-16 22:45:11.9739959: NetQueue.cpp(622)] NetQueue: worker thread started. [Info: 2022-05-16 22:45:11.9751183: NetQueue.cpp(632)] NetQueue: Starting net action https://www.xboxab.com/ab [Info: 2022-05-16 22:45:11.9751235: LauncherController.cpp(466)] Constructing launcher controller with workDir: %USERPROFILE%\AppData\Roaming\.minecraft, isActive: 1 [Info: 2022-05-16 22:45:11.9765149: SecureTokenStorage_Windows.cpp(105)] Initing windows secure storage [Info: 2022-05-16 22:45:11.9774601: NetQueue.cpp(186)] NetQueue: Setting up. [Info: 2022-05-16 22:45:11.9777298: NetQueue.cpp(622)] NetQueue: worker thread started. [Info: 2022-05-16 22:45:11.9794086: XalStorage.cpp(438)] Parsing content from MSA File [Info: 2022-05-16 22:45:11.9795956: XalContext.cpp(428)] ClockSkew is -3416142 (0 seconds) [Info: 2022-05-16 22:45:11.9802935: Xal.lib(0)] XAL: Initializing Xal 2021.04.20210518.001, Win32 platform [Info: 2022-05-16 22:45:11.9803517: Xal.lib(0)] XAL: Init args: [Info: 2022-05-16 22:45:11.9804345: Xal.lib(0)] XAL: sandbox: [Info: 2022-05-16 22:45:11.9804833: Xal.lib(0)] XAL: disableDiagnosticTelemetry: false [Info: 2022-05-16 22:45:11.9805343: Xal.lib(0)] XAL: correlationVector: (null) [Info: 2022-05-16 22:45:11.9805817: Xal.lib(0)] XAL: flags: 91000000 [Info: 2022-05-16 22:45:11.9806286: Xal.lib(0)] XAL: thirdPartyConsent (0) [Info: 2022-05-16 22:45:11.9806753: Xal.lib(0)] XAL: redirectUri: [Warning: 2022-05-16 22:45:11.9807582: Xal.lib(0)] XAL: Expected REG_SZ type for SOFTWARE\Microsoft\XboxLive\Sandbox, found 0 instead [Info: 2022-05-16 22:45:11.9830743: Xal.lib(0)] XAL: Diagnostic telemetry disabled: false [Info: 2022-05-16 22:45:11.9835194: Xal.lib(0)] XAL: [op 57629680] Operation UploadTelemetryEventsWithDelay is starting [Info: 2022-05-16 22:45:11.9835841: Xal.lib(0)] XAL_TELEMETRY: AppActivation Version="2021.04.20210518.001" [Info: 2022-05-16 22:45:11.9837455: Xal.lib(0)] XAL: [op 57628448] Operation InitializeComponents is starting [Info: 2022-05-16 22:45:11.9838019: Xal.lib(0)] XAL: [op 57628448] with CV 'VmvOBV7NOugtp7e4.0.0' [Info: 2022-05-16 22:45:11.9839483: Xal.lib(0)] XAL: [op 57725576] Operation InitializeTokenStack is starting [Info: 2022-05-16 22:45:11.9839986: Xal.lib(0)] XAL: [op 57725576] with CV 'VmvOBV7NOugtp7e4.0.0' [Info: 2022-05-16 22:45:11.9841400: Xal.lib(0)] XAL: [op 57628896] Operation LoadClockSkew is starting [Info: 2022-05-16 22:45:11.9841895: Xal.lib(0)] XAL: [op 57628896] with CV 'VmvOBV7NOugtp7e4.0.0' [Info: 2022-05-16 22:45:11.9842471: Xal.lib(0)] XAL: [op 12296832] Client operation StorageReadPlatformOperation starting [Error: 2022-05-16 22:45:11.9856249: PersistentReflectedStruct.h(42)] Data version 3 is greater than current version 0 but we don't support downgrading. [Warning: 2022-05-16 22:45:11.9856779: PreferencesManager.cpp(567)] Unable to load profile settings. [Info: 2022-05-16 22:45:11.9864075: PreferencesManager.cpp(116)] Removed %USERPROFILE%\AppData\Roaming\.minecraft\launcher_profiles_microsoft_store.json [Warning: 2022-05-16 22:45:12.0408567: XalApi.cpp(191)] Failed to register user callback: -2147024846 [Info: 2022-05-16 22:45:12.0413438: GameVersionManager.cpp(267)] Reading local cache of the Mojang versions manifest (version_manifest_v2.json)... [Info: 2022-05-16 22:45:12.0504448: GameVersionManager.cpp(307)] Looking for installed versions in %USERPROFILE%\AppData\Roaming\.minecraft\versions [Info: 2022-05-16 22:45:12.0512553: GameVersionManager.cpp(348)] Parsing version 1.12 [Info: 2022-05-16 22:45:12.0525838: GameVersionManager.cpp(348)] Parsing version 1.12-forge1.12-14.21.1.2387 [Warning: 2022-05-16 22:45:12.0528533: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[10].checksums: Unknown key [Warning: 2022-05-16 22:45:12.0528768: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[10].clientreq: Unknown key [Warning: 2022-05-16 22:45:12.0528950: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[10].serverreq: Unknown key [Warning: 2022-05-16 22:45:12.0529172: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[11].checksums: Unknown key [Warning: 2022-05-16 22:45:12.0529362: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[11].clientreq: Unknown key [Warning: 2022-05-16 22:45:12.0529533: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[11].serverreq: Unknown key [Warning: 2022-05-16 22:45:12.0529701: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[12].checksums: Unknown key [Warning: 2022-05-16 22:45:12.0529868: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[12].clientreq: Unknown key [Warning: 2022-05-16 22:45:12.0530031: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[12].serverreq: Unknown key [Warning: 2022-05-16 22:45:12.0530196: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[13].checksums: Unknown key [Warning: 2022-05-16 22:45:12.0530362: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[13].clientreq: Unknown key [Warning: 2022-05-16 22:45:12.0530526: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[13].serverreq: Unknown key [Warning: 2022-05-16 22:45:12.0530689: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[14].checksums: Unknown key [Warning: 2022-05-16 22:45:12.0530853: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[14].clientreq: Unknown key [Warning: 2022-05-16 22:45:12.0531017: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[14].serverreq: Unknown key [Warning: 2022-05-16 22:45:12.0531182: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[15].serverreq: Unknown key [Warning: 2022-05-16 22:45:12.0531344: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[16].serverreq: Unknown key [Warning: 2022-05-16 22:45:12.0531507: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[17].clientreq: Unknown key [Warning: 2022-05-16 22:45:12.0531670: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[17].serverreq: Unknown key [Warning: 2022-05-16 22:45:12.0531835: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[18].clientreq: Unknown key [Warning: 2022-05-16 22:45:12.0532001: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[18].serverreq: Unknown key [Warning: 2022-05-16 22:45:12.0532164: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[1].serverreq: Unknown key [Warning: 2022-05-16 22:45:12.0532328: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[2].checksums: Unknown key [Warning: 2022-05-16 22:45:12.0532573: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[2].clientreq: Unknown key [Warning: 2022-05-16 22:45:12.0532758: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[2].serverreq: Unknown key [Warning: 2022-05-16 22:45:12.0533012: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[3].checksums: Unknown key [Warning: 2022-05-16 22:45:12.0533176: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[3].clientreq: Unknown key [Warning: 2022-05-16 22:45:12.0533341: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[3].serverreq: Unknown key [Warning: 2022-05-16 22:45:12.0533506: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[4].checksums: Unknown key [Warning: 2022-05-16 22:45:12.0533671: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[4].clientreq: Unknown key [Warning: 2022-05-16 22:45:12.0533836: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[4].serverreq: Unknown key [Warning: 2022-05-16 22:45:12.0533997: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[5].checksums: Unknown key [Warning: 2022-05-16 22:45:12.0534690: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[5].clientreq: Unknown key [Warning: 2022-05-16 22:45:12.0534906: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[5].serverreq: Unknown key [Warning: 2022-05-16 22:45:12.0535079: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[6].checksums: Unknown key [Warning: 2022-05-16 22:45:12.0535244: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[6].clientreq: Unknown key [Warning: 2022-05-16 22:45:12.0535407: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[6].serverreq: Unknown key [Warning: 2022-05-16 22:45:12.0535569: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[7].checksums: Unknown key [Warning: 2022-05-16 22:45:12.0535732: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[7].clientreq: Unknown key [Warning: 2022-05-16 22:45:12.0535896: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[7].serverreq: Unknown key [Warning: 2022-05-16 22:45:12.0536058: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[8].checksums: Unknown key [Warning: 2022-05-16 22:45:12.0536219: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[8].clientreq: Unknown key [Warning: 2022-05-16 22:45:12.0536380: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[8].serverreq: Unknown key [Warning: 2022-05-16 22:45:12.0536540: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[9].checksums: Unknown key [Warning: 2022-05-16 22:45:12.0536702: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[9].clientreq: Unknown key [Warning: 2022-05-16 22:45:12.0536863: GameVersionManager.cpp(362)] 1.12-forge1.12-14.21.1.2387.json.libraries[9].serverreq: Unknown key [Info: 2022-05-16 22:45:12.0540325: GameVersionManager.cpp(348)] Parsing version 1.12.2 [Info: 2022-05-16 22:45:12.0554885: GameVersionManager.cpp(348)] Parsing version 1.13 [Info: 2022-05-16 22:45:12.0570953: GameVersionManager.cpp(348)] Parsing version 1.13.2 [Info: 2022-05-16 22:45:12.0586441: GameVersionManager.cpp(348)] Parsing version 1.14 [Info: 2022-05-16 22:45:12.0601640: GameVersionManager.cpp(348)] Parsing version 1.14.1 [Info: 2022-05-16 22:45:12.0617009: GameVersionManager.cpp(348)] Parsing version 1.14.2 [Info: 2022-05-16 22:45:12.0632339: GameVersionManager.cpp(348)] Parsing version 1.14.3 [Info: 2022-05-16 22:45:12.0646651: GameVersionManager.cpp(348)] Parsing version 1.14.4 [Info: 2022-05-16 22:45:12.0667134: GameVersionManager.cpp(348)] Parsing version 1.14.4-forge-28.2.0 [Warning: 2022-05-16 22:45:12.0670328: GameVersionManager.cpp(362)] 1.14.4-forge-28.2.0.json._comment_: Unknown key [Info: 2022-05-16 22:45:12.0674454: GameVersionManager.cpp(348)] Parsing version 1.14.4-OptiFine_HD_U_F5 [Info: 2022-05-16 22:45:12.0678227: GameVersionManager.cpp(348)] Parsing version 1.14.4-pre2 [Info: 2022-05-16 22:45:12.0693062: GameVersionManager.cpp(348)] Parsing version 1.14.4-pre3 [Info: 2022-05-16 22:45:12.0708887: GameVersionManager.cpp(348)] Parsing version 1.14.4-pre5 [Info: 2022-05-16 22:45:12.0726396: GameVersionManager.cpp(348)] Parsing version 1.14.4-pre6 [Info: 2022-05-16 22:45:12.0748488: GameVersionManager.cpp(348)] Parsing version 1.15-pre6 [Info: 2022-05-16 22:45:12.0772281: GameVersionManager.cpp(348)] Parsing version 1.15.1 [Info: 2022-05-16 22:45:12.0795238: GameVersionManager.cpp(348)] Parsing version 1.15.2 [Info: 2022-05-16 22:45:12.0818819: GameVersionManager.cpp(348)] Parsing version 1.15.2-OptiFine_HD_U_G1_pre17 [Info: 2022-05-16 22:45:12.0822765: GameVersionManager.cpp(348)] Parsing version 1.15.2-pre2 [Info: 2022-05-16 22:45:12.0846230: GameVersionManager.cpp(348)] Parsing version 1.16.1 [Info: 2022-05-16 22:45:12.0868995: GameVersionManager.cpp(348)] Parsing version 1.16.1-forge-32.0.108 [Warning: 2022-05-16 22:45:12.0872438: GameVersionManager.cpp(362)] 1.16.1-forge-32.0.108.json._comment_: Unknown key [Info: 2022-05-16 22:45:12.0876552: GameVersionManager.cpp(348)] Parsing version 1.16.2 [Info: 2022-05-16 22:45:12.0899769: GameVersionManager.cpp(348)] Parsing version 1.16.2-pre1 [Info: 2022-05-16 22:45:12.0921646: GameVersionManager.cpp(348)] Parsing version 1.16.2-pre3 [Info: 2022-05-16 22:45:12.0944243: GameVersionManager.cpp(348)] Parsing version 1.16.2-rc1 [Info: 2022-05-16 22:45:12.0966673: GameVersionManager.cpp(348)] Parsing version 1.16.4 [Info: 2022-05-16 22:45:12.0989118: GameVersionManager.cpp(348)] Parsing version 1.16.5 [Info: 2022-05-16 22:45:12.0999449: Xal.lib(0)] XAL: [op 12296832] Client operation StorageReadPlatformOperation calling platform handler [Info: 2022-05-16 22:45:12.1000194: Xal.lib(0)] XAL: [op 12296832] Added operation as handle 00BBA2EC with type 78E48FBC [Info: 2022-05-16 22:45:12.1000570: XalStorage.cpp(264)] [op 00BBA2EC] Xal Read callback - Started [Info: 2022-05-16 22:45:12.1001026: XalStorage.cpp(344)] [op 00BBA2EC] Xal Read callback - Failed [Info: 2022-05-16 22:45:12.1003460: Xal.lib(0)] XAL: [op 12296832] Client operation StorageReadPlatformOperation platform handler reported completion status 'XalPlatformOperationResult_Failure' (1) [Info: 2022-05-16 22:45:12.1004136: Xal.lib(0)] XAL: [op 12296832] Cleared operation handle 00BBA2EC [Info: 2022-05-16 22:45:12.1004755: Xal.lib(0)] XAL: [op 12296832] Client operation StorageReadPlatformOperation failed with result 0x89235107: Client operation failed [Info: 2022-05-16 22:45:12.1014837: GameVersionManager.cpp(348)] Parsing version 1.16.5-forge-36.1.0 [Warning: 2022-05-16 22:45:12.1018668: GameVersionManager.cpp(362)] 1.16.5-forge-36.1.0.json._comment_: Unknown key [Info: 2022-05-16 22:45:12.1022659: GameVersionManager.cpp(348)] Parsing version 1.16.5-OptiFine_HD_U_G7 [Info: 2022-05-16 22:45:12.1026465: GameVersionManager.cpp(348)] Parsing version 1.17 [Info: 2022-05-16 22:45:12.1049767: GameVersionManager.cpp(348)] Parsing version 1.17-pre1 [Info: 2022-05-16 22:45:12.1074351: GameVersionManager.cpp(348)] Parsing version 1.17.1 [Info: 2022-05-16 22:45:12.1097009: GameVersionManager.cpp(348)] Parsing version 1.17.1-pre1 [Info: 2022-05-16 22:45:12.1120125: GameVersionManager.cpp(348)] Parsing version 1.17.1-rc1 [Info: 2022-05-16 22:45:12.1142502: GameVersionManager.cpp(348)] Parsing version 1.18.1 [Info: 2022-05-16 22:45:12.1169125: GameVersionManager.cpp(348)] Parsing version 1.18.1-OptiFine_HD_U_H4 [Info: 2022-05-16 22:45:12.1172989: GameVersionManager.cpp(348)] Parsing version 1.18.2 [Info: 2022-05-16 22:45:12.1195923: GameVersionManager.cpp(348)] Parsing version 1.18.2-forge-40.1.0 [Warning: 2022-05-16 22:45:12.1199660: GameVersionManager.cpp(362)] 1.18.2-forge-40.1.0.json._comment_: Unknown key [Warning: 2022-05-16 22:45:12.1202079: GameVersionManager.cpp(331)] Path is not a regular file but of type 4294967295 [Warning: 2022-05-16 22:45:12.1202477: GameVersionManager.cpp(332)] Version 1.19_deep_dark_experimental_snapshot-1 doesn't have a json file. [Info: 2022-05-16 22:45:12.1205478: GameVersionManager.cpp(348)] Parsing version 1.2.5 [Info: 2022-05-16 22:45:12.1213117: GameVersionManager.cpp(348)] Parsing version 1.8.9 [Info: 2022-05-16 22:45:12.1224849: GameVersionManager.cpp(348)] Parsing version 19w07a [Info: 2022-05-16 22:45:12.1240424: GameVersionManager.cpp(348)] Parsing version 19w34a [Info: 2022-05-16 22:45:12.1260609: GameVersionManager.cpp(348)] Parsing version 19w36a [Info: 2022-05-16 22:45:12.1280985: GameVersionManager.cpp(348)] Parsing version 19w37a [Info: 2022-05-16 22:45:12.1300844: GameVersionManager.cpp(348)] Parsing version 19w39a [Info: 2022-05-16 22:45:12.1320929: GameVersionManager.cpp(348)] Parsing version 19w41a [Info: 2022-05-16 22:45:12.1337885: NetQueue.cpp(472)] NetQueue: Primary ip: 13.107.5.91, Host: www.xboxab.com [Info: 2022-05-16 22:45:12.1338376: NetQueue.cpp(551)] NetQueue: Action finished: https://www.xboxab.com/ab [Info: 2022-05-16 22:45:12.1338816: NetQueue.cpp(579)] NetQueue: Action finalized: https://www.xboxab.com/ab [Info: 2022-05-16 22:45:12.1342957: GameVersionManager.cpp(348)] Parsing version 19w46b [Info: 2022-05-16 22:45:12.1365702: GameVersionManager.cpp(348)] Parsing version 1_19_deep_dark_experimental_snapshot-1 [Info: 2022-05-16 22:45:12.1388511: GameVersionManager.cpp(348)] Parsing version 20w06a [Info: 2022-05-16 22:45:12.1410507: GameVersionManager.cpp(348)] Parsing version 20w07a [Info: 2022-05-16 22:45:12.1432823: GameVersionManager.cpp(348)] Parsing version 20w09a [Info: 2022-05-16 22:45:12.1455927: GameVersionManager.cpp(348)] Parsing version 20w12a [Info: 2022-05-16 22:45:12.1478232: GameVersionManager.cpp(348)] Parsing version 20w13a [Info: 2022-05-16 22:45:12.1500590: GameVersionManager.cpp(348)] Parsing version 20w13b [Info: 2022-05-16 22:45:12.1522250: GameVersionManager.cpp(348)] Parsing version 20w14a [Info: 2022-05-16 22:45:12.1545205: GameVersionManager.cpp(348)] Parsing version 20w14infinite [Info: 2022-05-16 22:45:12.1567312: GameVersionManager.cpp(348)] Parsing version 20w15a [Info: 2022-05-16 22:45:12.1589371: GameVersionManager.cpp(348)] Parsing version 20w19a [Info: 2022-05-16 22:45:12.1611089: GameVersionManager.cpp(348)] Parsing version 20w20b [Info: 2022-05-16 22:45:12.1634679: GameVersionManager.cpp(348)] Parsing version 20w21a [Info: 2022-05-16 22:45:12.1657037: GameVersionManager.cpp(348)] Parsing version 20w27a [Info: 2022-05-16 22:45:12.1679467: GameVersionManager.cpp(348)] Parsing version 20w45a [Info: 2022-05-16 22:45:12.1701720: GameVersionManager.cpp(348)] Parsing version 20w46a [Info: 2022-05-16 22:45:12.1724704: GameVersionManager.cpp(348)] Parsing version 20w48a [Info: 2022-05-16 22:45:12.1746772: GameVersionManager.cpp(348)] Parsing version 20w49a [Info: 2022-05-16 22:45:12.1769256: GameVersionManager.cpp(348)] Parsing version 20w51a [Info: 2022-05-16 22:45:12.1791814: GameVersionManager.cpp(348)] Parsing version 21w05b [Info: 2022-05-16 22:45:12.1813674: GameVersionManager.cpp(348)] Parsing version 21w06a [Info: 2022-05-16 22:45:12.1835539: GameVersionManager.cpp(348)] Parsing version 21w07a [Info: 2022-05-16 22:45:12.1858427: GameVersionManager.cpp(348)] Parsing version 21w08b [Info: 2022-05-16 22:45:12.1880137: GameVersionManager.cpp(348)] Parsing version 21w10a [Info: 2022-05-16 22:45:12.1902087: GameVersionManager.cpp(348)] Parsing version 21w11a [Info: 2022-05-16 22:45:12.1924938: GameVersionManager.cpp(348)] Parsing version 21w15a [Info: 2022-05-16 22:45:12.1947934: GameVersionManager.cpp(348)] Parsing version 21w16a [Info: 2022-05-16 22:45:12.1970166: GameVersionManager.cpp(348)] Parsing version 21w17a [Info: 2022-05-16 22:45:12.1992279: GameVersionManager.cpp(348)] Parsing version 21w18a [Info: 2022-05-16 22:45:12.2014391: GameVersionManager.cpp(348)] Parsing version 21w19a [Info: 2022-05-16 22:45:12.2036660: GameVersionManager.cpp(348)] Parsing version 21w20a [Info: 2022-05-16 22:45:12.2060042: GameVersionManager.cpp(348)] Parsing version 21w39a [Info: 2022-05-16 22:45:12.2084130: GameVersionManager.cpp(348)] Parsing version 21w40a [Info: 2022-05-16 22:45:12.2112321: GameVersionManager.cpp(348)] Parsing version 21w41a [Info: 2022-05-16 22:45:12.2134557: GameVersionManager.cpp(348)] Parsing version 21w42a [Info: 2022-05-16 22:45:12.2157326: GameVersionManager.cpp(348)] Parsing version 21w44a [Info: 2022-05-16 22:45:12.2180344: GameVersionManager.cpp(348)] Parsing version 22w03a [Info: 2022-05-16 22:45:12.2202480: GameVersionManager.cpp(348)] Parsing version 22w07a [Info: 2022-05-16 22:45:12.2225314: GameVersionManager.cpp(348)] Parsing version 22w19a [Info: 2022-05-16 22:45:12.2229722: Xal.lib(0)] XAL: [op 12296832] Client operation StorageReadPlatformOperation continuing [Warning: 2022-05-16 22:45:12.2230848: Xal.lib(0)] XAL: Clock skew failed to be read: 0x89235107 "Client operation failed" [Warning: 2022-05-16 22:45:12.2231721: Xal.lib(0)] XAL: [op 57628896] Operation LoadClockSkew failed with result: 0x89235107 - Client operation failed [Info: 2022-05-16 22:45:12.2235861: Xal.lib(0)] XAL: [op 68295760] Operation LoadDeviceIdentity is starting [Info: 2022-05-16 22:45:12.2236848: Xal.lib(0)] XAL: [op 68295760] with CV 'VmvOBV7NOugtp7e4.0.0' [Info: 2022-05-16 22:45:12.2237823: Xal.lib(0)] XAL: [op 12060008] Client operation StorageReadPlatformOperation starting [Info: 2022-05-16 22:45:12.2238971: Xal.lib(0)] XAL: [op 12296832] Client operation StorageReadPlatformOperation destroyed [Info: 2022-05-16 22:45:12.2239985: Xal.lib(0)] XAL: [op 12060008] Client operation StorageReadPlatformOperation calling platform handler [Info: 2022-05-16 22:45:12.2240845: Xal.lib(0)] XAL: [op 12060008] Added operation as handle 00B805D4 with type 78E48FBC [Info: 2022-05-16 22:45:12.2241329: XalStorage.cpp(264)] [op 00B805D4] Xal Read callback - Started [Info: 2022-05-16 22:45:12.2241859: XalStorage.cpp(356)] [op 00B805D4] Xal Read callback - Succeeded [Info: 2022-05-16 22:45:12.2245617: Xal.lib(0)] XAL: [op 12060008] Client operation StorageReadPlatformOperation platform handler reported completion status 'XalPlatformOperationResult_Success' (0) [Info: 2022-05-16 22:45:12.2246526: Xal.lib(0)] XAL: [op 12060008] Cleared operation handle 00B805D4 [Info: 2022-05-16 22:45:12.2247363: Xal.lib(0)] XAL: [op 12060008] Client operation StorageReadPlatformOperation succeeded [Info: 2022-05-16 22:45:12.2252006: GameVersionManager.cpp(348)] Parsing version fabric-loader-0.11.6-1.16.5 [Info: 2022-05-16 22:45:12.2255928: NetQueue.cpp(632)] NetQueue: Starting net action https://piston-meta.mojang.com/mc/game/version_manifest_v2.json?_t=2022-05-16T22:45:12Z [Info: 2022-05-16 22:45:12.3280711: NetQueue.cpp(472)] NetQueue: Primary ip: 2606:2800:11f:1cb7:261b:1f9c:2074:3c, Host: launchermeta.mojang.com [Info: 2022-05-16 22:45:12.3281352: NetQueue.cpp(551)] NetQueue: Action finished: https://piston-meta.mojang.com/mc/game/version_manifest_v2.json?_t=2022-05-16T22:45:12Z [Info: 2022-05-16 22:45:12.3281647: NetQueue.cpp(566)] NetQueue: Action should retry: https://launchermeta.mojang.com/mc/game/version_manifest_v2.json?_t=2022-05-16T22:45:12Z [Info: 2022-05-16 22:45:12.3282108: NetQueue.cpp(632)] NetQueue: Starting net action https://launchermeta.mojang.com/mc/game/version_manifest_v2.json?_t=2022-05-16T22:45:12Z [Info: 2022-05-16 22:45:12.3454696: Xal.lib(0)] XAL: [op 12060008] Client operation StorageReadPlatformOperation continuing [Info: 2022-05-16 22:45:12.3458551: Xal.lib(0)] XAL: [op 12299120] Client operation StorageReadPlatformOperation starting [Info: 2022-05-16 22:45:12.3459219: Xal.lib(0)] XAL: [op 12060008] Client operation StorageReadPlatformOperation destroyed [Info: 2022-05-16 22:45:12.3459931: Xal.lib(0)] XAL: [op 12299120] Client operation StorageReadPlatformOperation calling platform handler [Info: 2022-05-16 22:45:12.3460503: Xal.lib(0)] XAL: [op 12299120] Added operation as handle 00BBABDC with type 78E48FBC [Info: 2022-05-16 22:45:12.3460807: XalStorage.cpp(264)] [op 00BBABDC] Xal Read callback - Started [Info: 2022-05-16 22:45:12.3687371: XalStorage.cpp(356)] [op 00BBABDC] Xal Read callback - Succeeded [Info: 2022-05-16 22:45:12.3693235: Xal.lib(0)] XAL: [op 12299120] Client operation StorageReadPlatformOperation platform handler reported completion status 'XalPlatformOperationResult_Success' (0) [Info: 2022-05-16 22:45:12.3694733: Xal.lib(0)] XAL: [op 12299120] Cleared operation handle 00BBABDC [Info: 2022-05-16 22:45:12.3696061: Xal.lib(0)] XAL: [op 12299120] Client operation StorageReadPlatformOperation succeeded [Info: 2022-05-16 22:45:12.4861926: Xal.lib(0)] XAL: [op 12299120] Client operation StorageReadPlatformOperation continuing [Info: 2022-05-16 22:45:12.4865213: Xal.lib(0)] XAL: [op 12296832] Client operation StorageReadPlatformOperation starting [Info: 2022-05-16 22:45:12.4866723: Xal.lib(0)] XAL: [op 12299120] Client operation StorageReadPlatformOperation destroyed [Info: 2022-05-16 22:45:12.4868301: Xal.lib(0)] XAL: [op 12296832] Client operation StorageReadPlatformOperation calling platform handler [Info: 2022-05-16 22:45:12.4869684: Xal.lib(0)] XAL: [op 12296832] Added operation as handle 00BBA2EC with type 78E48FBC [Info: 2022-05-16 22:45:12.4871577: XalStorage.cpp(264)] [op 00BBA2EC] Xal Read callback - Started [Info: 2022-05-16 22:45:12.4884509: XalStorage.cpp(356)] [op 00BBA2EC] Xal Read callback - Succeeded [Info: 2022-05-16 22:45:12.4889919: Xal.lib(0)] XAL: [op 12296832] Client operation StorageReadPlatformOperation platform handler reported completion status 'XalPlatformOperationResult_Success' (0) [Info: 2022-05-16 22:45:12.4891309: Xal.lib(0)] XAL: [op 12296832] Cleared operation handle 00BBA2EC [Info: 2022-05-16 22:45:12.4892586: Xal.lib(0)] XAL: [op 12296832] Client operation StorageReadPlatformOperation succeeded [Info: 2022-05-16 22:45:12.5339099: NetQueue.cpp(472)] NetQueue: Primary ip: 18.67.62.16, Host: launchermeta.mojang.com [Info: 2022-05-16 22:45:12.5339513: NetQueue.cpp(551)] NetQueue: Action finished: https://launchermeta.mojang.com/mc/game/version_manifest_v2.json?_t=2022-05-16T22:45:12Z [Info: 2022-05-16 22:45:12.5339802: NetQueue.cpp(579)] NetQueue: Action finalized: https://launchermeta.mojang.com/mc/game/version_manifest_v2.json?_t=2022-05-16T22:45:12Z [Info: 2022-05-16 22:45:12.5340478: GameVersionManager.cpp(432)] Got available versions manifest from https://launchermeta.mojang.com/mc/game/version_manifest_v2.json?_t=2022-05-16T22:45:12Z [Info: 2022-05-16 22:45:12.5459039: NetQueue.cpp(632)] NetQueue: Starting net action https://piston-meta.mojang.com/v1/products/dungeons/f4c685912beb55eb2d5c9e0713fe1195164bba27/windows-x64.json [Info: 2022-05-16 22:45:12.5469103: CefUI.cpp(123)] Web cache is compatible with current CEF version. [Info: 2022-05-16 22:45:12.5469827: CefUI.cpp(145)] Web cache path: %USERPROFILE%\AppData\Roaming\.minecraft\webcache2 [Info: 2022-05-16 22:45:12.5625026: NetQueue.cpp(472)] NetQueue: Primary ip: 2606:2800:11f:1cb7:261b:1f9c:2074:3c, Host: piston-meta.mojang.com [Info: 2022-05-16 22:45:12.5625856: NetQueue.cpp(551)] NetQueue: Action finished: https://piston-meta.mojang.com/v1/products/dungeons/f4c685912beb55eb2d5c9e0713fe1195164bba27/windows-x64.json [Info: 2022-05-16 22:45:12.5626174: NetQueue.cpp(579)] NetQueue: Action finalized: https://piston-meta.mojang.com/v1/products/dungeons/f4c685912beb55eb2d5c9e0713fe1195164bba27/windows-x64.json [Info: 2022-05-16 22:45:12.5631709: NetQueue.cpp(632)] NetQueue: Starting net action https://piston-meta.mojang.com/v1/packages/a7c82598c31d7d7a74fd6e5f12a2c119dc51bdf9/manifest.json [Info: 2022-05-16 22:45:12.5795434: LauncherAppBrowser.cpp(83)] Will launch a Chromium subprocess with command line string: "C:\Program Files (x86)\Minecraft\MinecraftLauncher.exe" --type=gpu-process --no-sandbox --log-severity=info --lang=en-US --user-data-dir="C:\Users\Computer\AppData\Local\CEF\User Data" --launcherui --workdir="C:\Users\Computer\AppData\Roaming\.minecraft" /prefetch:2 [Info: 2022-05-16 22:45:12.5829319: NetQueue.cpp(472)] NetQueue: Primary ip: 2606:2800:11f:1cb7:261b:1f9c:2074:3c, Host: piston-meta.mojang.com [Info: 2022-05-16 22:45:12.5829992: NetQueue.cpp(551)] NetQueue: Action finished: https://piston-meta.mojang.com/v1/packages/a7c82598c31d7d7a74fd6e5f12a2c119dc51bdf9/manifest.json [Info: 2022-05-16 22:45:12.5830548: NetQueue.cpp(579)] NetQueue: Action finalized: https://piston-meta.mojang.com/v1/packages/a7c82598c31d7d7a74fd6e5f12a2c119dc51bdf9/manifest.json [Info: 2022-05-16 22:45:12.6010671: LauncherAppBrowser.cpp(64)] Work dir is %USERPROFILE%\AppData\Roaming\.minecraft [Info: 2022-05-16 22:45:12.6014757: main_context.cpp(131)] CEF initialized successfully. [Info: 2022-05-16 22:45:12.6015908: main_context.cpp(133)] CEF version: 99.2.14+g3f796b8+chromium-99.0.4844.84 [Info: 2022-05-16 22:45:12.6088395: Xal.lib(0)] XAL: [op 12296832] Client operation StorageReadPlatformOperation continuing [Info: 2022-05-16 22:45:12.6090048: Xal.lib(0)] XAL: [op 68295760] Operation LoadDeviceIdentity succeeded. [Info: 2022-05-16 22:45:12.6093703: Xal.lib(0)] XAL: [op 75226616] Operation NsalDb_LoadDefaultNsal is starting [Info: 2022-05-16 22:45:12.6094366: Xal.lib(0)] XAL: [op 75226616] with CV 'VmvOBV7NOugtp7e4.0.0' [Info: 2022-05-16 22:45:12.6097275: Xal.lib(0)] XAL: [op 12296832] Client operation StorageReadPlatformOperation destroyed [Info: 2022-05-16 22:45:12.6099368: NetQueue.cpp(632)] NetQueue: Starting net action https://title.mgt.xboxlive.com/titles/default/endpoints?type=1 [Info: 2022-05-16 22:45:12.6298599: root_window_manager.cpp(62)] Main window has been opened: 046D7DF8 [Info: 2022-05-16 22:45:12.6339405: LauncherAppBrowser.cpp(83)] Will launch a Chromium subprocess with command line string: "C:\Program Files (x86)\Minecraft\MinecraftLauncher.exe" --type=utility --utility-sub-type=storage.mojom.StorageService --lang=en-US --service-sandbox-type=utility --no-sandbox --log-severity=info --lang=en-US --user-data-dir="C:\Users\Computer\AppData\Local\CEF\User Data" --launcherui --workdir="C:\Users\Computer\AppData\Roaming\.minecraft" /prefetch:8 [Info: 2022-05-16 22:45:12.6348244: LauncherAppBrowser.cpp(83)] Will launch a Chromium subprocess with command line string: "C:\Program Files (x86)\Minecraft\MinecraftLauncher.exe" --type=utility --utility-sub-type=network.mojom.NetworkService --lang=en-US --service-sandbox-type=none --no-sandbox --log-severity=info --lang=en-US --user-data-dir="C:\Users\Computer\AppData\Local\CEF\User Data" --launcherui --workdir="C:\Users\Computer\AppData\Roaming\.minecraft" /prefetch:8 [Info: 2022-05-16 22:45:12.6636707: LauncherAppBrowser.cpp(83)] Will launch a Chromium subprocess with command line string: "C:\Program Files (x86)\Minecraft\MinecraftLauncher.exe" --type=renderer --log-severity=info --user-data-dir="C:\Users\Computer\AppData\Local\CEF\User Data" --launcherui --workdir="C:\Users\Computer\AppData\Roaming\.minecraft" [Info: 2022-05-16 22:45:12.6643732: LauncherAppBrowser.cpp(83)] Will launch a Chromium subprocess with command line string: "C:\Program Files (x86)\Minecraft\MinecraftLauncher.exe" --type=renderer --log-severity=info --user-data-dir="C:\Users\Computer\AppData\Local\CEF\User Data" --launcherui --workdir="C:\Users\Computer\AppData\Roaming\.minecraft" [Info: 2022-05-16 22:45:12.7934340: NetQueue.cpp(472)] NetQueue: Primary ip: 52.184.201.245, Host: title.mgt.xboxlive.com [Info: 2022-05-16 22:45:12.7935065: NetQueue.cpp(551)] NetQueue: Action finished: https://title.mgt.xboxlive.com/titles/default/endpoints?type=1 [Info: 2022-05-16 22:45:12.7935892: XalContext.cpp(136)] ResponseHeader "Access-Control-Allow-Origin" = "*" [Info: 2022-05-16 22:45:12.7936696: XalContext.cpp(136)] ResponseHeader "Cache-Control" = "no-cache, no-store" [Info: 2022-05-16 22:45:12.7937499: XalContext.cpp(136)] ResponseHeader "Content-Length" = "15101" [Info: 2022-05-16 22:45:12.7938262: XalContext.cpp(136)] ResponseHeader "Date" = "Mon, 16 May 2022 22:45:12 GMT" [Info: 2022-05-16 22:45:12.7939038: XalContext.cpp(136)] ResponseHeader "ETag" = ""a4nqvzS5EeBPDOB7gq1dK6H9TJl+LLzuUgQpQZTHtqQ="" [Info: 2022-05-16 22:45:12.7939751: XalContext.cpp(136)] ResponseHeader "MS-CV" = "VmvOBV7NOugtp7e4.0.0.0" [Info: 2022-05-16 22:45:12.7940435: XalContext.cpp(136)] ResponseHeader "X-Content-Type-Options" = "nosniff" [Info: 2022-05-16 22:45:12.7941130: XalContext.cpp(141)] https://title.mgt.xboxlive.com/titles/default/endpoints?type=1 Response: {"EndPoints":[{"Protocol":"https","Host":"xlink.xboxlive.com","HostType":"fqdn","RelyingParty":"http://xlink.xboxlive.com","TokenType":"JWT","SignaturePolicyIndex":0},{"Protocol":"https","Host":"*.dfhosted.net","HostType":"wildcard","RelyingParty":"http://xlink.xboxlive.com","TokenType":"JWT","SignaturePolicyIndex":0},{"Protocol":"https","Host":"musicdelivery-ssl.xboxlive.com","HostType":"fqdn","RelyingParty":"http://music.xboxlive.com","TokenType":"JWT","SignaturePolicyIndex":0},{"Protocol":"https","Host":"cloudcollection-ssl.xboxlive.com","HostType":"fqdn","RelyingParty":"http://music.xboxlive.com","TokenType":"JWT","SignaturePolicyIndex":0},{"Protocol":"https","Host":"music.xboxlive.com","HostType":"fqdn","RelyingParty":"http://music.xboxlive.com","TokenType":"JWT","SignaturePolicyIndex":0},{"Protocol":"https","Host":"websockets.platform.bing.com","HostType":"fqdn","RelyingParty":"http://platform.bing.com/","TokenType":"JWT","SignaturePolicyIndex":0},{"Protocol":"https","Host":"websockets.platform.bing-int.com","HostType":"fqdn","RelyingParty":"http://platform.bing.com/","TokenType":"JWT","SignaturePolicyIndex":0},{"Protocol":"https","Host":"inventory.xboxlive.com","HostType":"fqdn","RelyingParty":"http://licensing.xboxlive.com","TokenType":"JWT","SignaturePolicyIndex":0},{"Protocol":"https","Host":"licensing.xboxlive.com","HostType":"fqdn","RelyingParty":"http://licensing.xboxlive.com","TokenType":"JWT","SignaturePolicyIndex":0},{"Protocol":"https","Host":"accountstroubleshooter.xboxlive.com","HostType":"fqdn","RelyingParty":"http://accounts.xboxlive.com","TokenType":"JWT","SignaturePolicyIndex":0},{"Protocol":"https","Host":"gamertag.xboxlive.com","HostType":"fqdn","RelyingParty":"http://accounts.xboxlive.com","TokenType":"JWT","SignaturePolicyIndex":0},{"Protocol":"https","Host":"help.ui.xboxlive.com","HostType":"fqdn","RelyingParty":"http://uxservices.xboxlive.com","TokenType":"JWT","SignaturePolicyIndex":0},{"Protocol":"https","Host":"*.ui.xboxlive.com","HostType":"wildcard"},{"Protocol":"https","Host":"data-vef.xboxlive.com","HostType":"fqdn","RelyingParty":"http://data-vef.xboxlive.com","TokenType":"JWT","SignaturePolicyIndex":1},{"Protocol":"https","Host":"update.xboxlive.com","HostType":"fqdn","RelyingParty":"http://update.xboxlive.com","TokenType":"JWT","SignaturePolicyIndex":0},{"Protocol":"https","Host":"updatepc.xboxlive.com","HostType":"fqdn","RelyingParty":"http://update.xboxlive.com","TokenType":"JWT","SignaturePolicyIndex":0},{"Protocol":"https","Host":"update-cdn.xboxlive.com","HostType":"fqdn","RelyingParty":"http://update.xboxlive.com","TokenType":"JWT","SignaturePolicyIndex":0},{"Protocol":"https","Host":"packages.xboxlive.com","HostType":"fqdn","RelyingParty":"http://update.xboxlive.com","TokenType":"JWT","SignaturePolicyIndex":0},{"Protocol":"https","Host":"packagespc.xboxlive.com","HostType":"fqdn","RelyingParty":"http://update.xboxlive.com","TokenType":"JWT","SignaturePolicyIndex":0},{"Protocol":"https","Host":"instance.mgt.xboxlive.com","HostType":"fqdn","RelyingParty":"http://instance.mgt.xboxlive.com","TokenType":"JWT","SignaturePolicyIndex":1},{"Protocol":"https","Host":"device.mgt.xboxlive.com","HostType":"fqdn","RelyingParty":"http://device.mgt.xboxlive.com","TokenType":"JWT","SignaturePolicyIndex":1},{"Protocol":"https","Host":"device.mgt.xboxlive.com","HostType":"fqdn","Path":"/registrations/bestv","RelyingParty":"http://bestv.device.mgt.xboxlive.com","TokenType":"JWT","SignaturePolicyIndex":1},{"Protocol":"https","Host":"device.mgt.xboxlive.com","HostType":"fqdn","Path":"/devices/current/unlock","RelyingParty":"http://unlock.device.mgt.xboxlive.com","TokenType":"JWT","SignaturePolicyIndex":1},{"Protocol":"https","Host":"xkms.xboxlive.com","HostType":"fqdn","RelyingParty":"http://xkms.xboxlive.com","TokenType":"JWT","MinTlsVersion":"1.2","SignaturePolicyIndex":0},{"Protocol":"https","Host":"privileges.xboxlive.com","HostType":"fqdn","RelyingParty":"http://banning.xboxlive.com","TokenType":"JWT","SignaturePolicyIndex":1},{"Protocol":"https","Host":"privileges.xboxlive.com","HostType":"fqdn","Path":"/upsell","RelyingParty":"http://xboxlive.com","TokenType":"JWT","SignaturePolicyIndex":1},{"Protocol":"https","Host":"attestation.xboxlive.com","HostType":"fqdn","RelyingParty":"http://attestation.xboxlive.com","TokenType":"JWT","SignaturePolicyIndex":1},{"Protocol":"https","Host":"settings.xboxlive.com","HostType":"fqdn","RelyingParty":"http://xboxlive.com","TokenType":"JWT","ServerCertIndex":[0,1],"SignaturePolicyIndex":1},{"Protocol":"https","Host":"*.experimentation.xboxlive.com","HostType":"wildcard","RelyingParty":"http://experimentation.xboxlive.com/","TokenType":"JWT","SignaturePolicyIndex":1},{"Protocol":"https","Host":"*.xboxlive.com","HostType":"wildcard","RelyingParty":"http://xboxlive.com","TokenType":"JWT","SignaturePolicyIndex":0},{"Protocol":"https","Host":"xboxlive.com","HostType":"fqdn","RelyingParty":"http://xboxlive.com","TokenType":"JWT","SignaturePolicyIndex":0},{"Protocol":"http","Host":"*.xboxlive.com","HostType":"wildcard"},{"Protocol":"https","Host":"xaaa.bbtv.cn","HostType":"fqdn","Path":"/xboxsms/OOBEService/AuthorizationStatus","RelyingParty":"http://bestvrp.bestv.com/","SubRelyingParty":"http://www.bestv.com.cn/","TokenType":"JWT","SignaturePolicyIndex":0},{"Protocol":"https","Host":"*.data.microsoft.com","HostType":"wildcard","RelyingParty":"http://vortex.microsoft.com","TokenType":"JWT"},{"Protocol":"https","Host":"*.vortex-win-sandbox.data.microsoft.com","HostType":"wildcard","RelyingParty":"http://vortex-sbx.microsoft.com","TokenType":"JWT"},{"Protocol":"https","Host":"*.vortex-sandbox.data.microsoft.com","HostType":"wildcard","RelyingParty":"http://vortex-sbx.microsoft.com","TokenType":"JWT"},{"Protocol":"https","Host":"vortex-events.xboxlive.com","HostType":"fqdn","RelyingParty":"http://events.xboxlive.com","TokenType":"JWT"},{"Protocol":"https","Host":"*.pipe.int.trafficmanager.net","HostType":"wildcard","RelyingParty":"http://vortex-sbx.microsoft.com","TokenType":"JWT"},{"Protocol":"https","Host":"*.events-sandbox.data.microsoft.com","HostType":"wildcard","RelyingParty":"http://vortex-sbx.microsoft.com","TokenType":"JWT"},{"Protocol":"https","Host":"musicimage.xboxlive.com","HostType":"fqdn"},{"Protocol":"https","Host":"*.xboxservices.com","HostType":"wildcard","RelyingParty":"http://mp.microsoft.com/","TokenType":"JWT"},{"Protocol":"https","Host":"assets.xboxservices.com","HostType":"fqdn"},{"Protocol":"https","Host":"*.mp.microsoft.com","HostType":"wildcard","RelyingParty":"http://mp.microsoft.com/","TokenType":"JWT"},{"Protocol":"https","Host":"account.microsoft.com","HostType":"fqdn","RelyingParty":"http://mp.microsoft.com/","TokenType":"JWT"},{"Protocol":"https","Host":"*.account.microsoft.com","HostType":"wildcard","RelyingParty":"http://mp.microsoft.com/","TokenType":"JWT"},{"Protocol":"https","Host":"controls.cp.microsoft.com","HostType":"fqdn","RelyingParty":"http://mp.microsoft.com/","TokenType":"JWT"},{"Protocol":"https","Host":"controls.platform.account.www.microsoft.com","HostType":"fqdn","RelyingParty":"http://mp.microsoft.com/","TokenType":"JWT"},{"Protocol":"https","Host":"licensing.mp.microsoft.com","HostType":"fqdn","RelyingParty":"http://licensing.xboxlive.com","TokenType":"JWT","SignaturePolicyIndex":0},{"Protocol":"https","Host":"collections.mp.microsoft.com","HostType":"fqdn","RelyingParty":"http://licensing.xboxlive.com","TokenType":"JWT","SignaturePolicyIndex":0},{"Protocol":"https","Host":"api.twitch.tv","HostType":"fqdn","RelyingParty":"https://twitchxboxrp.twitch.tv/","TokenType":"JWT"},{"Protocol":"https","Host":"xdes.xboxlive.com","HostType":"fqdn","RelyingParty":"http://xdes.xboxlive.com/","TokenType":"JWT"},{"Protocol":"https","Host":"skypexbox.skype.com","HostType":"fqdn","RelyingParty":"http://xboxliverp.skype.com/","TokenType":"JWT"},{"Protocol":"https","Host":"*.gameservices.xboxlive.com","HostType":"wildcard","RelyingParty":"https://gameservices.xboxlive.com/","TokenType":"JWT"},{"Protocol":"https","Host":"ssl.bing.com","HostType":"fqdn","Path":"/speechreco/xbox/accessibility","RelyingParty":"http://platform.bing.com/","TokenType":"JWT"},{"Protocol":"https","Host":"speech.bing.com","HostType":"fqdn","RelyingParty":"http://platform.bing.com/","TokenType":"JWT"},{"Protocol":"https","Host":"beam.pro","HostType":"fqdn","RelyingParty":"http://beam.pro/","TokenType":"JWT"},{"Protocol":"https","Host":"*.beam.pro","HostType":"wildcard","RelyingParty":"http://beam.pro/","TokenType":"JWT"},{"Protocol":"https","Host":"mixer.com","HostType":"fqdn","RelyingParty":"http://beam.pro/","TokenType":"JWT"},{"Protocol":"https","Host":"*.mixer.com","HostType":"wildcard","RelyingParty":"http://beam.pro/","TokenType":"JWT"},{"Protocol":"https","Host":"zto.dds.microsoft.com","HostType":"fqdn","RelyingParty":"http://dds.microsoft.com","TokenType":"JWT"},{"Protocol":"https","Host":"user.mgt.xboxlive.com","HostType":"fqdn","RelyingParty":"http://accounts.xboxlive.com","TokenType":"JWT"},{"Protocol":"https","Host":"gssv-auth-prod.xboxlive.com","HostType":"fqdn","RelyingParty":"http://gssv.xboxlive.com/","TokenType":"JWT"},{"Protocol":"https","Host":"gssv-auth-strs.xboxlive.com","HostType":"fqdn","RelyingParty":"http://gssv.xboxlive.com/","TokenType":"JWT"},{"Protocol":"https","Host":"settings-sandbox.data.microsoft.com","HostType":"fqdn","RelyingParty":"http://onesettings-xbox-rp.com/","TokenType":"JWT"},{"Protocol":"https","Host":"settings-win.data.microsoft.com","HostType":"fqdn","RelyingParty":"http://onesettings-xbox-rp.com/","TokenType":"JWT","ServerCertIndex":[2]},{"Protocol":"https","Host":"settings-ppe.data.microsoft.com","HostType":"fqdn","RelyingParty":"http://onesettings-xbox-rp.com/","TokenType":"JWT"},{"Protocol":"https","Host":"settings.data.microsoft.com","HostType":"fqdn","RelyingParty":"http://onesettings-xbox-rp.com/","TokenType":"JWT","ServerCertIndex":[3,0]},{"Protocol":"https","Host":"playfabapi.com","HostType":"fqdn","RelyingParty":"http://playfab.xboxlive.com/","TokenType":"JWT"},{"Protocol":"https","Host":"sisu.xboxlive.com","HostType":"fqdn","RelyingParty":"http://sisu.xboxlive.com/","TokenType":"JWT","SignaturePolicyIndex":0},{"Protocol":"https","Host":"beta-sisu.xboxlive.com","HostType":"fqdn","RelyingParty":"http://sisu.xboxlive.com/","TokenType":"JWT","SignaturePolicyIndex":0},{"Protocol":"https","Host":"*.gamepass.com","HostType":"wildcard","RelyingParty":"http://xboxlive.com","TokenType":"JWT","SignaturePolicyIndex":0},{"Protocol":"https","Host":"downloadnotifications.xboxlive.com","HostType":"fqdn","RelyingParty":"http://download-notification.gamepass.com/","TokenType":"JWT","SignaturePolicyIndex":0},{"Protocol":"https","Host":"xflight.xboxlive.com","HostType":"fqdn","RelyingParty":"http://xflight.xboxlive.com/","TokenType":"JWT","SignaturePolicyIndex":0},{"Protocol":"https","Host":"xrap.xboxlive.com","HostType":"fqdn","RelyingParty":"rp://rap.xboxflight.com/","TokenType":"JWT","SignaturePolicyIndex":0},{"Protocol":"https","Host":"streaming.xboxlive.com","HostType":"fqdn","RelyingParty":"rp://streaming.xboxlive.com/","TokenType":"JWT","SignaturePolicyIndex":0},{"Protocol":"https","Host":"*.support.xboxlive.com","HostType":"wildcard","RelyingParty":"rp://support.xboxlive.com/","TokenType":"JWT","SignaturePolicyIndex":0}],"SignaturePolicies":[{"Version":1,"SupportedAlgorithms":["ES256"],"MaxBodyBytes":8192},{"Version":1,"SupportedAlgorithms":["ES256"],"MaxBodyBytes":4294967295}],"Certs":[{"Thumbprint":"54D9D20239080C32316ED9FF980A48988F4ADF2D","IsIssuer":true,"RootCertIndex":0},{"Thumbprint":"D5A9ACDB80066D0E67FF65A939BBBC952F8ED171","RootCertIndex":0},{"Thumbprint":"8F43288AD272F3103B6FB1428485EA3014C0BCFE","IsIssuer":true,"RootCertIndex":1},{"Thumbprint":"AD898AC73DF333EB60AC1F5FC6C4B2219DDB79B7","IsIssuer":true,"RootCertIndex":0}],"RootCerts":["MIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJRTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYDVQQDExlCYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoXDTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMCSUUxEjAQBgNVBAoTCUJhbHRpbW9yZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFsdGltb3JlIEN5YmVyVHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKMEuyKrmD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjrIZ3AQSsBUnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeKmpYcqWe4PwzV9/lSEy/CG9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSuXmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9XbIGevOF6uvUA65ehD5f/xXtabz5OTZydc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjprl3RjM71oGDHweI12v/yejl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoIVDaGezq1BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBBQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT929hkTI7gQCvlYpNRhcL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3WgxjkzSswF07r51XgdIGn9w/xZchMB5hbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsaY71k5h+3zvDyny67G7fyUIhzksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9HRCwBXbsdtTLSR9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp","MIIF7TCCA9WgAwIBAgIQP4vItfyfspZDtWnWbELhRDANBgkqhkiG9w0BAQsFADCBiDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEyMDAGA1UEAxMpTWljcm9zb2Z0IFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTEwHhcNMTEwMzIyMjIwNTI4WhcNMzYwMzIyMjIxMzA0WjCBiDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCldhc2hpbmd0b24xEDAOBgNVBAcTB1JlZG1vbmQxHjAcBgNVBAoTFU1pY3Jvc29mdCBDb3Jwb3JhdGlvbjEyMDAGA1UEAxMpTWljcm9zb2Z0IFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTEwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCygEGqNThNE3IyaCJNuLLx/9VSvGzH9dJKjDbu0cJcfoyKrq8TKG/Ac+M6ztAlqFo6be+ouFmrEyNozQwph9FvgFyPRH9dkAFSWKxRxV8qh9zc2AodwQO5e7BW6KPeZGHCnvjzfLnsDbVU/ky2ZU+I8JxImQxCCwl8MVkXeQZ4KI2JOkwDJb5xalwL54RgpJki49KvhKSn+9GY7Qyp3pSJ4Q6g3MDOmT3qCFK7VnnkH4S6Hri0xElcTzFLh93dBWcmmYDgcRGjuKVB4qRTufcyKYMME782XgSzS0NHL2vikR7TmE/dQgfI6B0S/Jmpaz6SfsjWaTr8ZL22CZ3K/QwLopt3YEsDlKQwaRLWQi3BQUzK3Kr9j1uDRprZ/LHR47PJf0h6zSTwQY9cdNCssBAgBkm3xy0hyFfj0IbzA2j70M5xwYmZSmQBbP3sMJHPQTySx+W6hh1hhMdfgzlirrSSL0fzC/hV66AfWdC7dJse0Hbm8ukG1xDo+mTeacY1logC8Ea4PyeZb8txiSk190gWAjWP1Xl8TQLPX+uKg09FcYj5qQ1OcunCnAfPSRtOBA5jUYxe2ADBVSy2xuDCZU7JNDn1nLPEfuhhbhNfFcRf2X7tHc7uROzLLoax7Dj2cO2rXBPB2Q8Nx4CyVe0096yb5MPa50c8prWPMd/FS6/r8QIDAQABo1EwTzALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUci06AjGQQ7kUBU7h6qfHMdEjiTQwEAYJKwYBBAGCNxUBBAMCAQAwDQYJKoZIhvcNAQELBQADggIBAH9yzw+3xRXbm8BJyiZb/p4T5tPw0tuXX/JLP02zrhmu7deXoKzvqTqjwkGw5biRnhOBJAPmCf0/V0A5ISRW0RAvS0CpNoZLtFNXmvvxfomPEf4YbFGq6O0JlbXlccmh6Yd1phV/yX43VF50k8XDZ8wNT2uoFwxtCJJ+i92Bqi1wIcM9BhS7vyRep4TXPw8hIr1LAAbblxzYXtTFC1yHblCk6MM4pPvLLMWSZpuFXst6bJN8gClYW1e1QGm6CHmmZGIVnYeWRbVmIyADixxzoNOieTPgUFmG2y/lAiXqcyqfABTINseSO+lOAOzYVgm5M0kS0lQLAausR7aRKX1MtHWAUgHoyoL2n8ysnI8X6i8msKtyrAv+nlEex0NVZ09Rs1fWtuzuUrc66U7h14GIvE+OdbtLqPA1qibUZ2dJsnBMO5PcHd94kIZysjik0dySTclY6ysSXNQ7roxrsIPlAT/4CTL2kzU0Iq/dNw13CYArzUgA8YyZGUcFAenRv9FO0OYoQzeZpApKCNmacXPSqs0xE2N2oTdvkjgefRI8ZjLny23h/FKJ3crWZgWalmG+oijHHKOnNlA8OqTfSm7mhzvO6/DggTedEzxSjr25HTTGHdUKaj2YKXCMiSrRq4IQSB/c9O+lxbtVGjhjhE63bK2VVOxlIhBJF7jAHscPrFRH"]} [Info: 2022-05-16 22:45:12.7942385: NetQueue.cpp(579)] NetQueue: Action finalized: https://title.mgt.xboxlive.com/titles/default/endpoints?type=1 [Info: 2022-05-16 22:45:12.8096767: NetQueue.cpp(632)] NetQueue: Starting net action https://piston-meta.mojang.com/v1/products/dungeons/f4c685912beb55eb2d5c9e0713fe1195164bba27/windows-x64.json [Info: 2022-05-16 22:45:12.8346495: NetQueue.cpp(472)] NetQueue: Primary ip: 2606:2800:11f:1cb7:261b:1f9c:2074:3c, Host: piston-meta.mojang.com [Info: 2022-05-16 22:45:12.8347250: NetQueue.cpp(551)] NetQueue: Action finished: https://piston-meta.mojang.com/v1/products/dungeons/f4c685912beb55eb2d5c9e0713fe1195164bba27/windows-x64.json [Info: 2022-05-16 22:45:12.8347724: NetQueue.cpp(579)] NetQueue: Action finalized: https://piston-meta.mojang.com/v1/products/dungeons/f4c685912beb55eb2d5c9e0713fe1195164bba27/windows-x64.json [Info: 2022-05-16 22:45:12.8351078: NetQueue.cpp(632)] NetQueue: Starting net action https://piston-meta.mojang.com/v1/packages/a7c82598c31d7d7a74fd6e5f12a2c119dc51bdf9/manifest.json [Info: 2022-05-16 22:45:12.8557441: Xal.lib(0)] XAL: [op 75226616] Operation NsalDb_LoadDefaultNsal succeeded. [Info: 2022-05-16 22:45:12.8562525: Xal.lib(0)] XAL: [op 76266256] Operation GetDtoken is starting [Info: 2022-05-16 22:45:12.8563565: Xal.lib(0)] XAL: [op 76266256] with CV 'VmvOBV7NOugtp7e4.0.1' [Info: 2022-05-16 22:45:12.8564627: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00014559C224B384) [Info: 2022-05-16 22:45:12.8565871: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Dtoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2022-05-30T22:38:51.7920000Z, now:2022-05-16T22:45:12.8550000Z, systemNow:2022-05-16T22:45:12.8550000Z} [Info: 2022-05-16 22:45:12.8566953: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00014559C224B384) [Info: 2022-05-16 22:45:12.8567826: Xal.lib(0)] XAL: [op 76266256] Operation GetDtoken succeeded. [Info: 2022-05-16 22:45:12.8570421: Xal.lib(0)] XAL: [op 57725576] Operation InitializeTokenStack succeeded. [Info: 2022-05-16 22:45:12.8573106: Xal.lib(0)] XAL: [op 57628448] Operation InitializeComponents succeeded. [Info: 2022-05-16 22:45:12.8575714: Xal.lib(0)] XAL: [op 58416952] Operation TryAddFirstUserSilently is starting [Info: 2022-05-16 22:45:12.8576616: Xal.lib(0)] XAL: [op 58416952] with CV 'VmvOBV7NOugtp7e4.5.0' [Info: 2022-05-16 22:45:12.8583573: Xal.lib(0)] XAL: [op 74089480] Operation GetDefaultUser is starting [Info: 2022-05-16 22:45:12.8584519: Xal.lib(0)] XAL: [op 74089480] with CV 'VmvOBV7NOugtp7e4.5.0' [Info: 2022-05-16 22:45:12.8587087: Xal.lib(0)] XAL: [op 75088192] Operation InitializeTokenStack is starting [Info: 2022-05-16 22:45:12.8587963: Xal.lib(0)] XAL: [op 75088192] with CV 'VmvOBV7NOugtp7e4.5.0' [Info: 2022-05-16 22:45:12.8590490: Xal.lib(0)] XAL: [op 181963112] Operation LoadClockSkew is starting [Info: 2022-05-16 22:45:12.8591362: Xal.lib(0)] XAL: [op 181963112] with CV 'VmvOBV7NOugtp7e4.5.0' [Info: 2022-05-16 22:45:12.8592305: Xal.lib(0)] XAL: [op 76250960] Client operation StorageReadPlatformOperation starting [Info: 2022-05-16 22:45:12.8593344: Xal.lib(0)] XAL: [op 76250960] Client operation StorageReadPlatformOperation calling platform handler [Info: 2022-05-16 22:45:12.8594236: Xal.lib(0)] XAL: [op 76250960] Added operation as handle 048B7FBC with type 78E48FBC [Info: 2022-05-16 22:45:12.8594731: XalStorage.cpp(264)] [op 048B7FBC] Xal Read callback - Started [Info: 2022-05-16 22:45:12.8595211: XalStorage.cpp(344)] [op 048B7FBC] Xal Read callback - Failed [Info: 2022-05-16 22:45:12.8599250: Xal.lib(0)] XAL: [op 76250960] Client operation StorageReadPlatformOperation platform handler reported completion status 'XalPlatformOperationResult_Failure' (1) [Info: 2022-05-16 22:45:12.8600166: Xal.lib(0)] XAL: [op 76250960] Cleared operation handle 048B7FBC [Info: 2022-05-16 22:45:12.8601029: Xal.lib(0)] XAL: [op 76250960] Client operation StorageReadPlatformOperation failed with result 0x89235107: Client operation failed [Info: 2022-05-16 22:45:12.8613969: NetQueue.cpp(472)] NetQueue: Primary ip: 2606:2800:11f:1cb7:261b:1f9c:2074:3c, Host: piston-meta.mojang.com [Info: 2022-05-16 22:45:12.8614490: NetQueue.cpp(551)] NetQueue: Action finished: https://piston-meta.mojang.com/v1/packages/a7c82598c31d7d7a74fd6e5f12a2c119dc51bdf9/manifest.json [Info: 2022-05-16 22:45:12.8614954: NetQueue.cpp(579)] NetQueue: Action finalized: https://piston-meta.mojang.com/v1/packages/a7c82598c31d7d7a74fd6e5f12a2c119dc51bdf9/manifest.json [Info: 2022-05-16 22:45:12.9771161: Xal.lib(0)] XAL: [op 76250960] Client operation StorageReadPlatformOperation continuing [Warning: 2022-05-16 22:45:12.9772533: Xal.lib(0)] XAL: Clock skew failed to be read: 0x89235107 "Client operation failed" [Warning: 2022-05-16 22:45:12.9773499: Xal.lib(0)] XAL: [op 181963112] Operation LoadClockSkew failed with result: 0x89235107 - Client operation failed [Info: 2022-05-16 22:45:12.9778109: Xal.lib(0)] XAL: [op 75501592] Operation LoadDeviceIdentity is starting [Info: 2022-05-16 22:45:12.9779070: Xal.lib(0)] XAL: [op 75501592] with CV 'VmvOBV7NOugtp7e4.5.0' [Info: 2022-05-16 22:45:12.9780040: Xal.lib(0)] XAL: [op 75501592] Operation LoadDeviceIdentity succeeded. [Info: 2022-05-16 22:45:12.9783440: Xal.lib(0)] XAL: [op 75088192] Operation InitializeTokenStack succeeded. [Info: 2022-05-16 22:45:12.9787738: Xal.lib(0)] XAL: [op 74447904] Operation LoadDefaultUser is starting [Info: 2022-05-16 22:45:12.9788777: Xal.lib(0)] XAL: [op 74447904] with CV 'VmvOBV7NOugtp7e4.5.0' [Info: 2022-05-16 22:45:12.9789916: Xal.lib(0)] XAL: [op 75812896] Client operation StorageReadPlatformOperation starting [Info: 2022-05-16 22:45:12.9791130: Xal.lib(0)] XAL: [op 76250960] Client operation StorageReadPlatformOperation destroyed [Info: 2022-05-16 22:45:12.9792302: Xal.lib(0)] XAL: [op 75812896] Client operation StorageReadPlatformOperation calling platform handler [Info: 2022-05-16 22:45:12.9793263: Xal.lib(0)] XAL: [op 75812896] Added operation as handle 0484D08C with type 78E48FBC [Info: 2022-05-16 22:45:12.9793845: XalStorage.cpp(264)] [op 0484D08C] Xal Read callback - Started [Info: 2022-05-16 22:45:12.9799425: XalStorage.cpp(356)] [op 0484D08C] Xal Read callback - Succeeded [Info: 2022-05-16 22:45:12.9803788: Xal.lib(0)] XAL: [op 75812896] Client operation StorageReadPlatformOperation platform handler reported completion status 'XalPlatformOperationResult_Success' (0) [Info: 2022-05-16 22:45:12.9804823: Xal.lib(0)] XAL: [op 75812896] Cleared operation handle 0484D08C [Info: 2022-05-16 22:45:12.9805792: Xal.lib(0)] XAL: [op 75812896] Client operation StorageReadPlatformOperation succeeded [Info: 2022-05-16 22:45:13.1003081: Xal.lib(0)] XAL: [op 75812896] Client operation StorageReadPlatformOperation continuing [Info: 2022-05-16 22:45:13.1004324: Xal.lib(0)] XAL: [op 75810608] Client operation StorageReadPlatformOperation starting [Info: 2022-05-16 22:45:13.1005024: Xal.lib(0)] XAL: [op 75812896] Client operation StorageReadPlatformOperation destroyed [Info: 2022-05-16 22:45:13.1005818: Xal.lib(0)] XAL: [op 75810608] Client operation StorageReadPlatformOperation calling platform handler [Info: 2022-05-16 22:45:13.1006439: Xal.lib(0)] XAL: [op 75810608] Added operation as handle 0484C79C with type 78E48FBC [Info: 2022-05-16 22:45:13.1006783: XalStorage.cpp(264)] [op 0484C79C] Xal Read callback - Started [Info: 2022-05-16 22:45:13.1015090: XalStorage.cpp(356)] [op 0484C79C] Xal Read callback - Succeeded [Info: 2022-05-16 22:45:13.1017659: Xal.lib(0)] XAL: [op 75810608] Client operation StorageReadPlatformOperation platform handler reported completion status 'XalPlatformOperationResult_Success' (0) [Info: 2022-05-16 22:45:13.1018289: Xal.lib(0)] XAL: [op 75810608] Cleared operation handle 0484C79C [Info: 2022-05-16 22:45:13.1018888: Xal.lib(0)] XAL: [op 75810608] Client operation StorageReadPlatformOperation succeeded [Info: 2022-05-16 22:45:13.2257438: Xal.lib(0)] XAL: [op 75810608] Client operation StorageReadPlatformOperation continuing [Info: 2022-05-16 22:45:13.2259472: Xal.lib(0)] XAL: [op 74447904] Operation LoadDefaultUser succeeded. [Info: 2022-05-16 22:45:13.2262275: Xal.lib(0)] XAL: [op 76083256] Operation LoadTokensForUser is starting [Info: 2022-05-16 22:45:13.2262899: Xal.lib(0)] XAL: [op 76083256] with CV 'VmvOBV7NOugtp7e4.5.0' [Info: 2022-05-16 22:45:13.2263597: Xal.lib(0)] XAL: [op 75810784] Client operation StorageReadPlatformOperation starting [Info: 2022-05-16 22:45:13.2264292: Xal.lib(0)] XAL: [op 75810608] Client operation StorageReadPlatformOperation destroyed [Info: 2022-05-16 22:45:13.2265087: Xal.lib(0)] XAL: [op 75810784] Client operation StorageReadPlatformOperation calling platform handler [Info: 2022-05-16 22:45:13.2265704: Xal.lib(0)] XAL: [op 75810784] Added operation as handle 0484C84C with type 78E48FBC [Info: 2022-05-16 22:45:13.2266052: XalStorage.cpp(264)] [op 0484C84C] Xal Read callback - Started [Info: 2022-05-16 22:45:13.2283542: XalStorage.cpp(356)] [op 0484C84C] Xal Read callback - Succeeded [Info: 2022-05-16 22:45:13.2287042: Xal.lib(0)] XAL: [op 75810784] Client operation StorageReadPlatformOperation platform handler reported completion status 'XalPlatformOperationResult_Success' (0) [Info: 2022-05-16 22:45:13.2287753: Xal.lib(0)] XAL: [op 75810784] Cleared operation handle 0484C84C [Info: 2022-05-16 22:45:13.2288351: Xal.lib(0)] XAL: [op 75810784] Client operation StorageReadPlatformOperation succeeded [Info: 2022-05-16 22:45:13.0486223: LauncherMain.cpp(113)] Initiated models [Info: 2022-05-16 22:45:13.0495040: LauncherController.cpp(466)] Constructing launcher controller with workDir: C:\...\.minecraft, isActive: 0 [Info: 2022-05-16 22:45:13.0658140: LauncherAppRenderer.cpp(172)] Javascript bridge extended in OnWebKitInitialized. [Info: 2022-05-16 22:45:13.0860702: LauncherAppRenderer.cpp(314)] OnContextCreated: main frame. Url=mojang://launcher/index.html browser id=1 [Info: 2022-05-16 22:45:13.0861185: LauncherAppRenderer.cpp(319)] OnContextCreated: Create JS bindings in main browser. [Info: 2022-05-16 22:45:13.0894531: LauncherAppRenderer.cpp(499)] Javascript bridge extended in OnContextCreated. [Info: 2022-05-16 22:45:13.3373306: Xal.lib(0)] XAL: [op 75810784] Client operation StorageReadPlatformOperation continuing [Info: 2022-05-16 22:45:13.3375315: Xal.lib(0)] XAL: [op 76083256] Operation LoadTokensForUser succeeded. [Info: 2022-05-16 22:45:13.3379387: Xal.lib(0)] XAL: [op 179932912] Operation GetXtoken is starting [Info: 2022-05-16 22:45:13.3380387: Xal.lib(0)] XAL: [op 179932912] with CV 'VmvOBV7NOugtp7e4.5.0' [Info: 2022-05-16 22:45:13.3382479: Xal.lib(0)] XAL: [op 75091096] Operation InitializeTokenStack is starting [Info: 2022-05-16 22:45:13.3383080: Xal.lib(0)] XAL: [op 75091096] with CV 'VmvOBV7NOugtp7e4.5.0' [Info: 2022-05-16 22:45:13.3384541: Xal.lib(0)] XAL: [op 181963448] Operation LoadClockSkew is starting [Info: 2022-05-16 22:45:13.3385104: Xal.lib(0)] XAL: [op 181963448] with CV 'VmvOBV7NOugtp7e4.5.0' [Info: 2022-05-16 22:45:13.3385725: Xal.lib(0)] XAL: [op 75812896] Client operation StorageReadPlatformOperation starting [Info: 2022-05-16 22:45:13.3386598: Xal.lib(0)] XAL: [op 75810784] Client operation StorageReadPlatformOperation destroyed [Info: 2022-05-16 22:45:13.3387320: Xal.lib(0)] XAL: [op 75812896] Client operation StorageReadPlatformOperation calling platform handler [Info: 2022-05-16 22:45:13.3387896: Xal.lib(0)] XAL: [op 75812896] Added operation as handle 0484D08C with type 78E48FBC [Info: 2022-05-16 22:45:13.3388194: XalStorage.cpp(264)] [op 0484D08C] Xal Read callback - Started [Info: 2022-05-16 22:45:13.3388493: XalStorage.cpp(344)] [op 0484D08C] Xal Read callback - Failed [Info: 2022-05-16 22:45:13.3390716: Xal.lib(0)] XAL: [op 75812896] Client operation StorageReadPlatformOperation platform handler reported completion status 'XalPlatformOperationResult_Failure' (1) [Info: 2022-05-16 22:45:13.3391299: Xal.lib(0)] XAL: [op 75812896] Cleared operation handle 0484D08C [Info: 2022-05-16 22:45:13.3391856: Xal.lib(0)] XAL: [op 75812896] Client operation StorageReadPlatformOperation failed with result 0x89235107: Client operation failed [Info: 2022-05-16 22:45:13.4472746: Xal.lib(0)] XAL: [op 75812896] Client operation StorageReadPlatformOperation continuing [Warning: 2022-05-16 22:45:13.4474249: Xal.lib(0)] XAL: Clock skew failed to be read: 0x89235107 "Client operation failed" [Warning: 2022-05-16 22:45:13.4475294: Xal.lib(0)] XAL: [op 181963448] Operation LoadClockSkew failed with result: 0x89235107 - Client operation failed [Info: 2022-05-16 22:45:13.4478934: Xal.lib(0)] XAL: [op 75504952] Operation LoadDeviceIdentity is starting [Info: 2022-05-16 22:45:13.4479552: Xal.lib(0)] XAL: [op 75504952] with CV 'VmvOBV7NOugtp7e4.5.0' [Info: 2022-05-16 22:45:13.4480115: Xal.lib(0)] XAL: [op 75504952] Operation LoadDeviceIdentity succeeded. [Info: 2022-05-16 22:45:13.4482485: Xal.lib(0)] XAL: [op 194956688] Operation GetDtoken is starting [Info: 2022-05-16 22:45:13.4483042: Xal.lib(0)] XAL: [op 194956688] with CV 'VmvOBV7NOugtp7e4.5.0' [Info: 2022-05-16 22:45:13.4483586: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00014559E56C9730) [Info: 2022-05-16 22:45:13.4484292: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Dtoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2022-05-30T22:38:51.7920000Z, now:2022-05-16T22:45:13.4480000Z, systemNow:2022-05-16T22:45:13.4480000Z} [Info: 2022-05-16 22:45:13.4484874: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00014559E56C9730) [Info: 2022-05-16 22:45:13.4485399: Xal.lib(0)] XAL: [op 194956688] Operation GetDtoken succeeded. [Info: 2022-05-16 22:45:13.4486813: Xal.lib(0)] XAL: [op 75091096] Operation InitializeTokenStack succeeded. [Info: 2022-05-16 22:45:13.4489008: Xal.lib(0)] XAL: [op 194956688] Operation GetDtoken is starting [Info: 2022-05-16 22:45:13.4489538: Xal.lib(0)] XAL: [op 194956688] with CV 'VmvOBV7NOugtp7e4.5.0' [Info: 2022-05-16 22:45:13.4490767: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00014559E5778280) [Info: 2022-05-16 22:45:13.4491489: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Dtoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2022-05-30T22:38:51.7920000Z, now:2022-05-16T22:45:13.4480000Z, systemNow:2022-05-16T22:45:13.4480000Z} [Info: 2022-05-16 22:45:13.4492124: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00014559E5778280) [Info: 2022-05-16 22:45:13.4492651: Xal.lib(0)] XAL: [op 194956688] Operation GetDtoken succeeded. [Info: 2022-05-16 22:45:13.4494911: Xal.lib(0)] XAL: [op 179264872] Operation GetMsaTicket is starting [Info: 2022-05-16 22:45:13.4495450: Xal.lib(0)] XAL: [op 179264872] with CV 'VmvOBV7NOugtp7e4.5.0' [Info: 2022-05-16 22:45:13.4496810: Xal.lib(0)] XAL: [op 75092416] Operation InitializeTokenStack is starting [Info: 2022-05-16 22:45:13.4497335: Xal.lib(0)] XAL: [op 75092416] with CV 'VmvOBV7NOugtp7e4.5.0' [Info: 2022-05-16 22:45:13.4498700: Xal.lib(0)] XAL: [op 181963560] Operation LoadClockSkew is starting [Info: 2022-05-16 22:45:13.4499224: Xal.lib(0)] XAL: [op 181963560] with CV 'VmvOBV7NOugtp7e4.5.0' [Info: 2022-05-16 22:45:13.4499854: Xal.lib(0)] XAL: [op 75811488] Client operation StorageReadPlatformOperation starting [Info: 2022-05-16 22:45:13.4500480: Xal.lib(0)] XAL: [op 75812896] Client operation StorageReadPlatformOperation destroyed [Info: 2022-05-16 22:45:13.4501156: Xal.lib(0)] XAL: [op 75811488] Client operation StorageReadPlatformOperation calling platform handler [Info: 2022-05-16 22:45:13.4501744: Xal.lib(0)] XAL: [op 75811488] Added operation as handle 0484CB0C with type 78E48FBC [Info: 2022-05-16 22:45:13.4502034: XalStorage.cpp(264)] [op 0484CB0C] Xal Read callback - Started [Info: 2022-05-16 22:45:13.4502323: XalStorage.cpp(344)] [op 0484CB0C] Xal Read callback - Failed [Info: 2022-05-16 22:45:13.4504451: Xal.lib(0)] XAL: [op 75811488] Client operation StorageReadPlatformOperation platform handler reported completion status 'XalPlatformOperationResult_Failure' (1) [Info: 2022-05-16 22:45:13.4505015: Xal.lib(0)] XAL: [op 75811488] Cleared operation handle 0484CB0C [Info: 2022-05-16 22:45:13.4505545: Xal.lib(0)] XAL: [op 75811488] Client operation StorageReadPlatformOperation failed with result 0x89235107: Client operation failed [Info: 2022-05-16 22:45:13.5744213: Xal.lib(0)] XAL: [op 75811488] Client operation StorageReadPlatformOperation continuing [Warning: 2022-05-16 22:45:13.5745382: Xal.lib(0)] XAL: Clock skew failed to be read: 0x89235107 "Client operation failed" [Warning: 2022-05-16 22:45:13.5746002: Xal.lib(0)] XAL: [op 181963560] Operation LoadClockSkew failed with result: 0x89235107 - Client operation failed [Info: 2022-05-16 22:45:13.5748556: Xal.lib(0)] XAL: [op 75503272] Operation LoadDeviceIdentity is starting [Info: 2022-05-16 22:45:13.5749140: Xal.lib(0)] XAL: [op 75503272] with CV 'VmvOBV7NOugtp7e4.5.0' [Info: 2022-05-16 22:45:13.5749688: Xal.lib(0)] XAL: [op 75503272] Operation LoadDeviceIdentity succeeded. [Info: 2022-05-16 22:45:13.5751964: Xal.lib(0)] XAL: [op 194957888] Operation GetDtoken is starting [Info: 2022-05-16 22:45:13.5752512: Xal.lib(0)] XAL: [op 194957888] with CV 'VmvOBV7NOugtp7e4.5.0' [Info: 2022-05-16 22:45:13.5753102: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00014559ECFDA5E8) [Info: 2022-05-16 22:45:13.5753825: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Dtoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2022-05-30T22:38:51.7920000Z, now:2022-05-16T22:45:13.5750000Z, systemNow:2022-05-16T22:45:13.5750000Z} [Info: 2022-05-16 22:45:13.5754405: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00014559ECFDA5E8) [Info: 2022-05-16 22:45:13.5755608: Xal.lib(0)] XAL: [op 194957888] Operation GetDtoken succeeded. [Info: 2022-05-16 22:45:13.5757095: Xal.lib(0)] XAL: [op 75092416] Operation InitializeTokenStack succeeded. [Info: 2022-05-16 22:45:13.5758606: Xal.lib(0)] XAL: >>> Xal::Auth::MsaTicketSet::GetTicket (00014559ED061930) [Info: 2022-05-16 22:45:13.5759293: Xal.lib(0)] XAL: Found requested token in cache: [firstScope:service::user.auth.xboxlive.com::MBI_SSL]:{expiry:2022-05-17T22:29:03.9840000Z, now:2022-05-16T22:45:13.5750000Z, systemNow:2022-05-16T22:45:13.5750000Z} [Info: 2022-05-16 22:45:13.5759848: Xal.lib(0)] XAL: <<< Xal::Auth::MsaTicketSet::GetTicket (00014559ED061930) [Info: 2022-05-16 22:45:13.5760370: Xal.lib(0)] XAL: [op 179264872] Operation GetMsaTicket succeeded. [Info: 2022-05-16 22:45:13.5761806: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00014559ED0AFB94) [Info: 2022-05-16 22:45:13.5762499: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Utoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2022-05-30T22:29:04.8700000Z, now:2022-05-16T22:45:13.5750000Z, systemNow:2022-05-16T22:45:13.5750000Z} [Info: 2022-05-16 22:45:13.5763117: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00014559ED0AFB94) [Info: 2022-05-16 22:45:13.5763654: Xal.lib(0)] XAL: >>> Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00014559ED0DD288) [Info: 2022-05-16 22:45:13.5764342: Xal.lib(0)] XAL: Returning requested cache: [hasSignInDisplayClaims:false identityType:Ttoken, relyingParty:http://auth.xboxlive.com, subRelyingParty:, tokenType:JWT]:{HasSignInDisplayClaims:false hasData:true, isValid:true, xerr:0, expiry:2022-05-30T22:29:04.5740000Z, now:2022-05-16T22:45:13.5760000Z, systemNow:2022-05-16T22:45:13.5760000Z} [Info: 2022-05-16 22:45:13.5764900: Xal.lib(0)] XAL: <<< Xal::Auth::InMemoryXboxTokenCache::GetTokenInternal (00014559ED0DD288) [Info: 2022-05-16 22:45:13.5766482: Xal.lib(0)] XAL: [op 76083256] Refresh Xtoken running with user: true. [Info: 2022-05-16 22:45:13.5767074: Xal.lib(0)] XAL: [op 76083256] Operation RefreshXtoken is starting [Info: 2022-05-16 22:45:13.5767655: Xal.lib(0)] XAL: [op 76083256] with CV 'VmvOBV7NOugtp7e4.5.0' [Info: 2022-05-16 22:45:13.5768307: Xal.lib(0)] XAL: [op 76083256] RefreshXtoken token fetch started. [Info: 2022-05-16 22:45:13.5783680: Xal.lib(0)] XAL: [op 75811488] Client operation StorageReadPlatformOperation destroyed [Info: 2022-05-16 22:45:13.5785472: XalContext.cpp(228)] POST https://xsts.auth.xboxlive.com/xsts/authorize Request body: {"RelyingParty":"http://xboxlive.com","TokenType":"JWT","Properties":{"SandboxId":"RETAIL","DeviceToken":"eyJhbGciOiJSU0EtT0FFUCIsImVuYyI6IkExMjhDQkMtSFMyNTYiLCJ6aXAiOiJERUYiLCJ4NXQiOiJxcEQtU2ZoOUg3NFFHOXlMN1hSZXJ5RmZvbk0iLCJjdHkiOiJKV1QifQ.aYUvfC2dUdKVNNZVAIImS3MJiYdjFlVcgsJ-tC7U39J-gIqlLywLB9yfHa15EG3MJrGjjgMmvz4nPIcWNVclyacBJOBE0hdpz10UMTVJ8TB8jxuJKLfkIHdRWrZEi0XhRJAm0JVwOa_xBzaS5o-KH4jsa_eHad6W-0r6hL40qwgggblmbrzdZ8KNtO5Q4wul4nQcS0YJVtuRqHnVi0MG6bFNjEOXxBwVOVd3twzjwrlYP5HnY9P0m-fYkPpdziIBTTFe4NMm-QL9Yv78VDhR9C3KdaZt5b7roTQ9Wn4Gr1CFHSdHwHo-iYdYsptfSV6wRSR8zRlEomhOV1054cnbxA.rFpILs5LA0hf_8gvQj1LAA.3JMv7UyTzqvQz4k-dIrUjoO0PgH-GPopr_xdZkqezY9QYoa2addCBh3_BHg5RRJvuFJqeaIOcqWVBDl8L3R-q5zHYzBYKdUP3UdvSnOd-PxBWCocfDDSQn1zrmw3weD-tRVhze3eNwrLBtj2bvxtUkpx1KRKGzrUfwdtFEJWHrdviN3BMy3jR3sEZswAzKD0KhpcOOSzaTViwJqAXib6qvDtJrr24_axoT0bVKdJghT7ILc49_Q53Eox-a-TWUgRvGPVPFRy58tPr8GZDVpfo_PsH2dnto9PYOHju3ES5qkDOxex4dATF5QoHQMvx16Y1Z5Vj2MHcZ0Tbm5z_kNr4D5Zcse7Y0Fvzki5vGngiaXwJqdzvE2hQ3RW0X3Qppv0-cjDTkfQzuWixf8-yZauZ5-JcCC0tGMHpPCF3RkdODCwkhWcreu8u-OJi-G3Y3kC8C1i8HDHMbKPDOPi-IpaXXD-SWm2F6KUDYWULEpdMe1ALym_xrGM_bbxwXptmKAExcebhxgfQjsl6ibvh1aIh7p4p1Vuy92jSvFjtEYpOMSkSCsO26SixDHUMDLW5HVe8xQKqXaaKmU20pWhZBcob7xeMKKnON3_WFw7UCK3NPEOJQalJnlpEzdDgSPq9gs5jsFiNjXAYRw3eix3vYYVjuADo-LUDmXJQ7YYKy4hXaz9TVh8OzoVojiuXMqz3-4VAfjjpkTVd0pwMgETh4Y08NY7s7bSUk1dpkZcbV8eOTR3gauFh9Schrszwk7hqso22NWZSZxqkJgyg3rZwmJbxc1_I9_MgzQJPZnNz4t1aOWpPBe8Sa4O68QbkKWS1YQrySV6T0R_Jr6hgGopLYhDYBr93XjZh1ap07nt_WHifTReR271SyqBV8TGWBnARMXlX77LrQUTkJiZVAvHabtmQdVXe8k8sm6hj3fkJJzKeXH84v9iWCanpWhAujv0XdSvfqzvFx7RGzkpb4CzOXkiSESfPIsW7QahqcNRDqkVRmk.ep9bVSSyxqXKjXcKyDePtw","TitleToken":"eyJhbGciOiJSU0EtT0FFUCIsImVuYyI6IkExMjhDQkMtSFMyNTYiLCJ6aXAiOiJERUYiLCJ4NXQiOiJxcEQtU2ZoOUg3NFFHOXlMN1hSZXJ5RmZvbk0iLCJjdHkiOiJKV1QifQ.cMGOMQ_p0HubjtYEY5LV0LCNosKKEnos3-qjoI7sPNB-q6EWNFGzgB9QYrG7oLDOI_30bkvsYFgh_1akV-g_DZOdDL8JprsWkJBu6XloPBUp85dfSAdGlk9yFJGh5HTARMpIynMzKDOpigYSQebGmLjdCSJwZzQKuhsP9p6skTnZdjHJDreWs4k-XzrL_UdTqwWDjNtLHFkmKz6YiuU4dF1NCF8ZQW7_iS8mx2qRYyrCWovF2T0gPOpcR25a_eJ5YNbYr5hPeOEasdHq6DFzHv8mBhWU3UgxvKybtxk720rFftalwldTB_kwsIqtBuo79RgbGnsJ4XessOfCU1SjlQ.8safIJZQ7_98QmGtH3V3Xw.iRgMHHqmUVNK4jC8--n07VnaYNIaZIbSCq9ioQLDJe6ziJEhdQn03PvW9miedYmAnZLjwzWTAezdxSqyoYbD1O4xFuLwI3Ga_Pz5nPexeaiwO3ZvHGRBRhP_MM1viWURYv7-e1pOLdToS9Qi9ZfPEv_BAzBVz2aly26glAR6nimeakViEx1JzEWAUdOKy4B-QnlKQypGrLLyYo11MsxmctCJZIrnJfbMu23FX2QoYfb7whc9_Djrk9WGBrQtZj8QrriTMKIo8xmdHF11VvJopm1ZctgSDYd7PEyv-jd5BoHpPffKaW-VTRChr80oR8bd4WM8onXRIBLlBY84aa3iOjct3xmTeauS6Z6__WbBYvcUEFhHLBRpYIBH7L6r3ns1KKPgyfo3Zjy601s7LW4Rznd7JW2pHppnMMTXfI951zS244oP0TUOO6W-aiMuR43Yf7rU4cystsBv5dorBhl0O6R4degFWj_NTvcf5drCI4tR3vN0MXuRIpb5mwKMJJUP_rk26TxE_LenOENKgPbgzRKB0qP-d1Fv1Yo46VLb9Pzx1T0jjxfLi5IGAM7zdhSAEjON5E6ZO2tQtpZ249n1-WT2RL1hvVKVFRuaiwP8voblqOMzR7TJ3VJb00KEcQzlg0BuRPgFYB7B6BqLxtAZQWJ3wZETqU7AqLeor6PQHyxSTgetVJwM0xuXe2jfbxN76-SagYGeW6IVtsksn_dSGaIxVdnTQw6FwIUl22Aoce9kH8PfSDdP377z06OzeQ0U-b448zCk-EY8y5IvaItof6XXoULsRFQ9tn2RpoGtOhrLY2WhwgIE-yijFLIkN_wlhTxf8EZ6kHKXRucRG-2uOnz9w-SCOMDpirUTmqGK-A2iILSMZ0phS173DiO6MeI2GiHlDycroS8TT9dND5ZAT1yhfBkpnc7lZ_Z0mnY2mq56-OWbFNGJap4TBxLPzJ5M9mZ53lUtlWHgBoAYu_OBAOP7UpzLnzrA6V5DMY-7A5k.aC8y3Y53JKi0RDhQwaUyXA","UserTokens":["eyJhbGciOiJSU0EtT0FFUCIsImVuYyI6IkExMjhDQkMtSFMyNTYiLCJ6aXAiOiJERUYiLCJ4NXQiOiJxcEQtU2ZoOUg3NFFHOXlMN1hSZXJ5RmZvbk0iLCJjdHkiOiJKV1QifQ.UP7tzsBZgyHas7CCP7WTmDdGmQc77XS0Tj95YVhRPtLK1duB1SwSfzaybVm8_38chiBgfYeLguKb73VTUvYts6vmpgbRA-_RyB6SETWX-zZpvI2HwLiYqooUfW_vr-PECYQS78gazcrbIFkEO1ciU8HMRCE7h-5vMR8nIRbCksFO9kY7ZIluqKhRpTuBcBt5CZNYx7WxD3c-AVfVotyvp3mX6eNKbWEa0f-2QUe0pVQDBZlZ4lBEPxc8cLyDJKDEczZ9rzyQzk_-KEwq2TwxalYZrVCtoGME84KnhTqa2VrKIXfZPMkFIswX4-Vzk-qo40z5LZyMzqJGCkVaLq1Biw.Sekk9N88G3-GMxsp7MCcvA.03dxvwpTDELASFfz_kV3c65FvPlyD8LsQJhLfn1lRaJNd-obFS0RnZWMtYJFQSpqtaKxV7zRPvnbbwHSPAfcp0vsWuJ6W8C8l-cqvStQBcVbS2rHLJ_hsElkruR12ZUqGh9m5hrULFTH_4-r4SqT-yHuUye3EGdTzzma4rajB4vcxmh_yKTBxD9b-Q_eCRVVOqTSn4QaqkSezLhvp5lY4_GnbG-xgkGwnaUYyBveH4y2u3ES4XebnQjzO97i8ZJlUelPr8zqNECuY1Bac89tY6ZnNEwn_38wkDF4E82qJybefpv9pFzg2FozKgIAgkXW8WdaNHA0x2AFwKJIsQeKsmH2i3qKIsnkF63xK1XkuHWTebcSmZ-mD_zqggl3HAgThEuUTKOQu7y7Ue0o7VRhj2PWFh_qGW7uDc26hnrTg3dLhWyxkqkKmigCeSdLCA2kJcPs6_Q7YO62Cd1FcwzGFQknpAQ2UojKlMATe8KOxxiNuAUaMRP45bIpeTp5g18geMt1_L44eKUjSCNldQrLZ9S9AoR5GC_H7HIYfTArMdzBdqSTzVCyI-QvPSrm1KFd3SN0NsKhVZDqr1vbCZaTLPur3x7fZm2GnLkCnviacUVqpv4uUotzwY4xmqfs2FczD8edizXO9t0EzZDOeH9rU4rt2odkufjzIr0rjp2atoLH1eUQovLxWM6kbFVdh2im_BzeJeSEdaGMcLIVgLfHIFHq56PGFoYN4lagL8F6rvVwb
-
Recommended Posts
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.