diff --git a/Assets/Advanced INI Parser/INIReader.cs b/Assets/Advanced INI Parser/INIReader.cs index 0d593debbe..f360d7f7db 100644 --- a/Assets/Advanced INI Parser/INIReader.cs +++ b/Assets/Advanced INI Parser/INIReader.cs @@ -14,7 +14,9 @@ public class INIReader : MonoBehaviour [Header("Objects that need initialized on load")] [SerializeField] private Slider ScreenshotRes; [SerializeField] private Slider MusicVolume; + [SerializeField] private Slider UIVolume; [SerializeField] private List ScreenshotExtension; + [SerializeField] private bool InitializeSettings = false; // Start is called before the first frame update @@ -90,77 +92,81 @@ public class INIReader : MonoBehaviour sw.WriteLine("[Sound Settings]"); sw.WriteLine("MusicVolume = 1"); + sw.WriteLine("UIVolume = 1"); } } else { - // General Settings - RCKSettings.NPC_TO_NPC_CONVERSATION_DISTANCE = float.Parse(ReadSettingString("General", "NPC_TO_NPC_CONVERSATION_DISTANCE", "3.5")); - RCKSettings.NPC_LOOKAT_TARGET_DISTANCE = float.Parse(ReadSettingString("General", "NPC_LOOKAT_TARGET_DISTANCE", "5")); - RCKSettings.NPC_STOP_FOLLOW_AFTER_DISTANCE = float.Parse(ReadSettingString("General", "NPC_STOP_FOLLOW_AFTER_DISTANCE", "2.2")); - RCKSettings.PLAYER_HEARS_NPC_DIALOGUES_DISTANCE = float.Parse(ReadSettingString("General", "PLAYER_HEARS_NPC_DIALOGUES_DISTANCE", "15")); - RCKSettings.PLAYER_DISTANCE_TO_DIALOGUE = float.Parse(ReadSettingString("General", "PLAYER_DISTANCE_TO_DIALOGUE", "3")); - RCKSettings.PLAYER_DISTANCE_TO_DISPLAY_ENEMY_BAR = float.Parse(ReadSettingString("General", "PLAYER_DISTANCE_TO_DISPLAY_ENEMY_BAR", "100")); - RCKSettings.CHARGED_ATTACK_MOUSE_DOWN_TIME = float.Parse(ReadSettingString("General", "CHARGED_ATTACK_MOUSE_DOWN_TIME", "0.5")); - RCKSettings.MIN_VELOCITY_TO_CONTINUE_ROTATING_ARROW = float.Parse(ReadSettingString("General", "MIN_VELOCITY_TO_CONTINUE_ROTATING_ARROW", "5")); - RCKSettings.DISTANCE_SHOW_NPC_IN_COMBAT_UI = float.Parse(ReadSettingString("General", "DISTANCE_SHOW_NPC_IN_COMBAT_UI", "100")); - RCKSettings.MELEE_GENERAL_RIGIDBODY_FORCE = float.Parse(ReadSettingString("General", "MELEE_GENERAL_RIGIDBODY_FORCE", "20")); - RCKSettings.ARROW_GENERAL_RIGIDBODY_FORCE = float.Parse(ReadSettingString("General", "ARROW_GENERAL_RIGIDBODY_FORCE", "5")); - RCKSettings.MELEE_ONBODY_RIGIDBODY_FORCE = float.Parse(ReadSettingString("General", "MELEE_ONBODY_RIGIDBODY_FORCE", "35")); - RCKSettings.ARROW_ONBODY_RIGIDBODY_FORCE = float.Parse(ReadSettingString("General", "ARROW_ONBODY_RIGIDBODY_FORCE", "10")); - RCKSettings.DRAIN_HEALTH_DEFAULT_RATE = float.Parse(ReadSettingString("General", "DRAIN_HEALTH_DEFAULT_RATE", "200")); - RCKSettings.DRAIN_STAMINA_DEFAULT_RATE = float.Parse(ReadSettingString("General", "DRAIN_STAMINA_DEFAULT_RATE", "200")); - RCKSettings.DISTANCE_WHEN_NPCS_START_LOOK_AT = float.Parse(ReadSettingString("General", "DISTANCE_WHEN_NPCS_START_LOOK_AT", "3.5")); - RCKSettings.CROSSHAIR_HIT_TIME = float.Parse(ReadSettingString("General", "CROSSHAIR_HIT_TIME", ".25")); - RCKSettings.STOPPING_DETECTION_THRESHOLD = float.Parse(ReadSettingString("General", "STOPPING_DETECTION_THRESHOLD", "0.15")); - RCKSettings.HOSTILE_FACTION_COMBAT_THERSHOLD = float.Parse(ReadSettingString("General", "HOSTILE_FACTION_COMBAT_THERSHOLD", "10")); + if (InitializeSettings) { + // General Settings + RCKSettings.NPC_TO_NPC_CONVERSATION_DISTANCE = float.Parse(ReadSettingString("General", "NPC_TO_NPC_CONVERSATION_DISTANCE", "3.5")); + RCKSettings.NPC_LOOKAT_TARGET_DISTANCE = float.Parse(ReadSettingString("General", "NPC_LOOKAT_TARGET_DISTANCE", "5")); + RCKSettings.NPC_STOP_FOLLOW_AFTER_DISTANCE = float.Parse(ReadSettingString("General", "NPC_STOP_FOLLOW_AFTER_DISTANCE", "2.2")); + RCKSettings.PLAYER_HEARS_NPC_DIALOGUES_DISTANCE = float.Parse(ReadSettingString("General", "PLAYER_HEARS_NPC_DIALOGUES_DISTANCE", "15")); + RCKSettings.PLAYER_DISTANCE_TO_DIALOGUE = float.Parse(ReadSettingString("General", "PLAYER_DISTANCE_TO_DIALOGUE", "3")); + RCKSettings.PLAYER_DISTANCE_TO_DISPLAY_ENEMY_BAR = float.Parse(ReadSettingString("General", "PLAYER_DISTANCE_TO_DISPLAY_ENEMY_BAR", "100")); + RCKSettings.CHARGED_ATTACK_MOUSE_DOWN_TIME = float.Parse(ReadSettingString("General", "CHARGED_ATTACK_MOUSE_DOWN_TIME", "0.5")); + RCKSettings.MIN_VELOCITY_TO_CONTINUE_ROTATING_ARROW = float.Parse(ReadSettingString("General", "MIN_VELOCITY_TO_CONTINUE_ROTATING_ARROW", "5")); + RCKSettings.DISTANCE_SHOW_NPC_IN_COMBAT_UI = float.Parse(ReadSettingString("General", "DISTANCE_SHOW_NPC_IN_COMBAT_UI", "100")); + RCKSettings.MELEE_GENERAL_RIGIDBODY_FORCE = float.Parse(ReadSettingString("General", "MELEE_GENERAL_RIGIDBODY_FORCE", "20")); + RCKSettings.ARROW_GENERAL_RIGIDBODY_FORCE = float.Parse(ReadSettingString("General", "ARROW_GENERAL_RIGIDBODY_FORCE", "5")); + RCKSettings.MELEE_ONBODY_RIGIDBODY_FORCE = float.Parse(ReadSettingString("General", "MELEE_ONBODY_RIGIDBODY_FORCE", "35")); + RCKSettings.ARROW_ONBODY_RIGIDBODY_FORCE = float.Parse(ReadSettingString("General", "ARROW_ONBODY_RIGIDBODY_FORCE", "10")); + RCKSettings.DRAIN_HEALTH_DEFAULT_RATE = float.Parse(ReadSettingString("General", "DRAIN_HEALTH_DEFAULT_RATE", "200")); + RCKSettings.DRAIN_STAMINA_DEFAULT_RATE = float.Parse(ReadSettingString("General", "DRAIN_STAMINA_DEFAULT_RATE", "200")); + RCKSettings.DISTANCE_WHEN_NPCS_START_LOOK_AT = float.Parse(ReadSettingString("General", "DISTANCE_WHEN_NPCS_START_LOOK_AT", "3.5")); + RCKSettings.CROSSHAIR_HIT_TIME = float.Parse(ReadSettingString("General", "CROSSHAIR_HIT_TIME", ".25")); + RCKSettings.STOPPING_DETECTION_THRESHOLD = float.Parse(ReadSettingString("General", "STOPPING_DETECTION_THRESHOLD", "0.15")); + RCKSettings.HOSTILE_FACTION_COMBAT_THERSHOLD = float.Parse(ReadSettingString("General", "HOSTILE_FACTION_COMBAT_THERSHOLD", "10")); - // EDITOR - RCKSettings.EDITOR_AI_LOAD_LOCATION = ReadSettingString("EDITOR", "EDITOR_AI_LOAD_LOCATION", "Assets/RPG Creation Kit/Prefab Library/AI/"); - RCKSettings.EDITOR_AI_SAVE_LOCATION = ReadSettingString("EDITOR", "EDITOR_AI_SAVE_LOCATION", "Assets/RPG Creation Kit/Prefab Library/AI/"); - RCKSettings.EDITOR_CREATUREAI_LOAD_LOCATION = ReadSettingString("EDITOR", "EDITOR_CREATUREAI_LOAD_LOCATION", "Assets/RPG Creation Kit/Prefab Library/AI/Creatures/"); - RCKSettings.EDITOR_CREATUREAI_SAVE_LOCATION = ReadSettingString("EDITOR", "EDITOR_CREATUREAI_SAVE_LOCATION", "Assets/RPG Creation Kit/Prefab Library/AI/Creatures/"); + // EDITOR + RCKSettings.EDITOR_AI_LOAD_LOCATION = ReadSettingString("EDITOR", "EDITOR_AI_LOAD_LOCATION", "Assets/RPG Creation Kit/Prefab Library/AI/"); + RCKSettings.EDITOR_AI_SAVE_LOCATION = ReadSettingString("EDITOR", "EDITOR_AI_SAVE_LOCATION", "Assets/RPG Creation Kit/Prefab Library/AI/"); + RCKSettings.EDITOR_CREATUREAI_LOAD_LOCATION = ReadSettingString("EDITOR", "EDITOR_CREATUREAI_LOAD_LOCATION", "Assets/RPG Creation Kit/Prefab Library/AI/Creatures/"); + RCKSettings.EDITOR_CREATUREAI_SAVE_LOCATION = ReadSettingString("EDITOR", "EDITOR_CREATUREAI_SAVE_LOCATION", "Assets/RPG Creation Kit/Prefab Library/AI/Creatures/"); - //Code - RCKSettings.DEFAULT_WEAPON_REACH = float.Parse(ReadSettingString("General", "DEFAULT_WEAPON_REACH", "4.0")); - float TempA = float.Parse(ReadSettingString("General", "INTERACTOR_RAYCAST_MAXDISTANCE", "0")); - if (TempA == 0f) { - RCKSettings.INTERACTOR_RAYCAST_MAXDISTANCE = float.MaxValue; - } else { - RCKSettings.INTERACTOR_RAYCAST_MAXDISTANCE = TempA; - } - RCKSettings.DRAIN_STAMINA_ON_ATTACK_SPEEDAMOUNT = float.Parse(ReadSettingString("General", "DRAIN_STAMINA_ON_ATTACK_SPEEDAMOUNT", "25")); - RCKSettings.DRAIN_STAMINA_ON_ATTACKBLOCKED_SPEEDAMOUNT = float.Parse(ReadSettingString("General", "DRAIN_STAMINA_ON_ATTACKBLOCKED_SPEEDAMOUNT", "25")); - RCKSettings.DRAIN_MANA_ON_CAST_SPEEDAMOUNT = float.Parse(ReadSettingString("General", "DRAIN_MANA_ON_CAST_SPEEDAMOUNT", "25")); - RCKSettings.PROJECTILE_DESPAWN_TIME = float.Parse(ReadSettingString("General", "PROJECTILE_DESPAWN_TIME", "30")); - RCKSettings.DISTANCE_BEFORE_ROTATING_TO_TARGET = float.Parse(ReadSettingString("General", "DISTANCE_BEFORE_ROTATING_TO_TARGET", "4.5")); + //Code + RCKSettings.DEFAULT_WEAPON_REACH = float.Parse(ReadSettingString("General", "DEFAULT_WEAPON_REACH", "4.0")); + float TempA = float.Parse(ReadSettingString("General", "INTERACTOR_RAYCAST_MAXDISTANCE", "0")); + if (TempA == 0f) { + RCKSettings.INTERACTOR_RAYCAST_MAXDISTANCE = float.MaxValue; + } else { + RCKSettings.INTERACTOR_RAYCAST_MAXDISTANCE = TempA; + } + RCKSettings.DRAIN_STAMINA_ON_ATTACK_SPEEDAMOUNT = float.Parse(ReadSettingString("General", "DRAIN_STAMINA_ON_ATTACK_SPEEDAMOUNT", "25")); + RCKSettings.DRAIN_STAMINA_ON_ATTACKBLOCKED_SPEEDAMOUNT = float.Parse(ReadSettingString("General", "DRAIN_STAMINA_ON_ATTACKBLOCKED_SPEEDAMOUNT", "25")); + RCKSettings.DRAIN_MANA_ON_CAST_SPEEDAMOUNT = float.Parse(ReadSettingString("General", "DRAIN_MANA_ON_CAST_SPEEDAMOUNT", "25")); + RCKSettings.PROJECTILE_DESPAWN_TIME = float.Parse(ReadSettingString("General", "PROJECTILE_DESPAWN_TIME", "30")); + RCKSettings.DISTANCE_BEFORE_ROTATING_TO_TARGET = float.Parse(ReadSettingString("General", "DISTANCE_BEFORE_ROTATING_TO_TARGET", "4.5")); - // Save Game - RCKSettings.JSON_PRETTY_PRINT = ReadSettingBool("Save Game", "JSON_PRETTY_PRINT", false); - RCKSettings.PLAYER_DAMAGE_SPEED = float.Parse(ReadSettingString("Save Game", "PLAYER_DAMAGE_SPEED", "100")); + // Save Game + RCKSettings.JSON_PRETTY_PRINT = ReadSettingBool("Save Game", "JSON_PRETTY_PRINT", false); + RCKSettings.PLAYER_DAMAGE_SPEED = float.Parse(ReadSettingString("Save Game", "PLAYER_DAMAGE_SPEED", "100")); - // NEW GAME START - RCKSettings.RCK_NEW_STARTING_LOCATION = ReadSettingString("NEW GAME START", "RCK_NEW_STARTING_LOCATION", "Starting cave"); - RCKSettings.RCK_NEW_STARTING_WORLDSPACEID = ReadSettingString("NEW GAME START", "RCK_NEW_STARTING_WORLDSPACEID", "00CanyonInteriors"); - RCKSettings.RCK_NEW_STARTING_CELLID = ReadSettingString("NEW GAME START", "RCK_NEW_STARTING_CELLID", "CanyonCaveCell1-1Cave2"); - RCKSettings.RCK_NEW_STARTING_LEVEL = ReadSettingInt("NEW GAME START", "RCK_NEW_STARTING_LEVEL", 1); - float StartPOSX = float.Parse(ReadSettingString("NEW GAME START", "STARTING_POSX", "93.52182")); - float StartPOSY = float.Parse(ReadSettingString("NEW GAME START", "STARTING_POSY", "-6.028")); - float StartPOSZ = float.Parse(ReadSettingString("NEW GAME START", "STARTING_POSZ", "-76.271")); - RCKSettings.RCK_NEW_STARTING_POS = new Vector3(StartPOSX, StartPOSY, StartPOSZ); - float StartROTX = float.Parse(ReadSettingString("NEW GAME START", "STARTING_ROTX", "0")); - float StartROTY = float.Parse(ReadSettingString("NEW GAME START", "STARTING_ROTY", "0")); - float StartROTZ = float.Parse(ReadSettingString("NEW GAME START", "STARTING_ROTZ", "0")); - RCKSettings.RCK_NEW_STARTING_ROT = new Vector3(StartROTX, StartROTY, StartROTZ); - RCKSettings.ATTRIBUTES_DEF_HEALTH = float.Parse(ReadSettingString("NEW GAME START", "ATTRIBUTES_DEF_HEALTH", "200.0")); - RCKSettings.ATTRIBUTES_DEF_STAMINA = float.Parse(ReadSettingString("NEW GAME START", "ATTRIBUTES_DEF_STAMINA", "200.0")); - RCKSettings.ATTRIBUTES_DEF_MANA = float.Parse(ReadSettingString("NEW GAME START", "ATTRIBUTES_DEF_MANA", "200.0")); + // NEW GAME START + RCKSettings.RCK_NEW_STARTING_LOCATION = ReadSettingString("NEW GAME START", "RCK_NEW_STARTING_LOCATION", "Starting cave"); + RCKSettings.RCK_NEW_STARTING_WORLDSPACEID = ReadSettingString("NEW GAME START", "RCK_NEW_STARTING_WORLDSPACEID", "00CanyonInteriors"); + RCKSettings.RCK_NEW_STARTING_CELLID = ReadSettingString("NEW GAME START", "RCK_NEW_STARTING_CELLID", "CanyonCaveCell1-1Cave2"); + RCKSettings.RCK_NEW_STARTING_LEVEL = ReadSettingInt("NEW GAME START", "RCK_NEW_STARTING_LEVEL", 1); + float StartPOSX = float.Parse(ReadSettingString("NEW GAME START", "STARTING_POSX", "93.52182")); + float StartPOSY = float.Parse(ReadSettingString("NEW GAME START", "STARTING_POSY", "-6.028")); + float StartPOSZ = float.Parse(ReadSettingString("NEW GAME START", "STARTING_POSZ", "-76.271")); + RCKSettings.RCK_NEW_STARTING_POS = new Vector3(StartPOSX, StartPOSY, StartPOSZ); + float StartROTX = float.Parse(ReadSettingString("NEW GAME START", "STARTING_ROTX", "0")); + float StartROTY = float.Parse(ReadSettingString("NEW GAME START", "STARTING_ROTY", "0")); + float StartROTZ = float.Parse(ReadSettingString("NEW GAME START", "STARTING_ROTZ", "0")); + RCKSettings.RCK_NEW_STARTING_ROT = new Vector3(StartROTX, StartROTY, StartROTZ); + RCKSettings.ATTRIBUTES_DEF_HEALTH = float.Parse(ReadSettingString("NEW GAME START", "ATTRIBUTES_DEF_HEALTH", "200.0")); + RCKSettings.ATTRIBUTES_DEF_STAMINA = float.Parse(ReadSettingString("NEW GAME START", "ATTRIBUTES_DEF_STAMINA", "200.0")); + RCKSettings.ATTRIBUTES_DEF_MANA = float.Parse(ReadSettingString("NEW GAME START", "ATTRIBUTES_DEF_MANA", "200.0")); - // Screenshot tools - ScreenshotRes.value = (float)ReadSettingInt("Screenshot Tool", "ScreenshotMultiplier", 0); - int A = ReadSettingInt("Screenshot Tool", "ScreenshotExtension", 0); - ScreenshotExtension[A].isOn = true; + // Screenshot tools + ScreenshotRes.value = (float)ReadSettingInt("Screenshot Tool", "ScreenshotMultiplier", 0); + int A = ReadSettingInt("Screenshot Tool", "ScreenshotExtension", 0); + ScreenshotExtension[A].isOn = true; + } // Sound settings MusicVolume.value = float.Parse(ReadSettingString("Sound Settings", "MusicVolume", "1")); + UIVolume.value = float.Parse(ReadSettingString("Sound Settings", "UIVolume", "1")); } } @@ -172,6 +178,10 @@ public class INIReader : MonoBehaviour SaveSettingString("Sound Settings", "MusicVolume", MusicVolume.value.ToString()); } + public void SetUIVolume() { + SaveSettingString("Sound Settings", "UIVolume", UIVolume.value.ToString()); + } + ///////////////////////////////////////// ////// - Read and save settings - /////// diff --git a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2.meta b/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials.meta similarity index 100% rename from Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2.meta rename to Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials.meta diff --git a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall.mat b/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall.mat similarity index 98% rename from Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall.mat rename to Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall.mat index ce3565bef3..04f64c5038 100644 --- a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall.mat +++ b/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall.mat @@ -15,7 +15,7 @@ Material: - IRAYUBER_DUALLOBESPECULARREFLECTIVITYACTIVE - _DOUBLESIDED_ON m_LightmapFlags: 2 - m_EnableInstancingVariants: 0 + m_EnableInstancingVariants: 1 m_DoubleSidedGI: 1 m_CustomRenderQueue: 2000 stringTagMap: diff --git a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall.mat.meta b/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall.mat.meta similarity index 100% rename from Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall.mat.meta rename to Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall.mat.meta diff --git a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_DoorFrameWall_BaseColor.png b/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_DoorFrameWall_BaseColor.png similarity index 100% rename from Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_DoorFrameWall_BaseColor.png rename to Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_DoorFrameWall_BaseColor.png diff --git a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_DoorFrameWall_BaseColor.png.meta b/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_DoorFrameWall_BaseColor.png.meta similarity index 100% rename from Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_DoorFrameWall_BaseColor.png.meta rename to Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_DoorFrameWall_BaseColor.png.meta diff --git a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_DoorFrameWall_Normal-OGL.png b/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_DoorFrameWall_Normal-OGL.png similarity index 100% rename from Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_DoorFrameWall_Normal-OGL.png rename to Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_DoorFrameWall_Normal-OGL.png diff --git a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_DoorFrameWall_Normal-OGL.png.meta b/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_DoorFrameWall_Normal-OGL.png.meta similarity index 100% rename from Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_DoorFrameWall_Normal-OGL.png.meta rename to Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_DoorFrameWall_Normal-OGL.png.meta diff --git a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_DoorFrameWall_Roughness.png b/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_DoorFrameWall_Roughness.png similarity index 100% rename from Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_DoorFrameWall_Roughness.png rename to Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_DoorFrameWall_Roughness.png diff --git a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_DoorFrameWall_Roughness.png.meta b/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_DoorFrameWall_Roughness.png.meta similarity index 100% rename from Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_DoorFrameWall_Roughness.png.meta rename to Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_DoorFrameWall_Roughness.png.meta diff --git a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones2_BaseColor.png b/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_Stones2_BaseColor.png similarity index 100% rename from Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones2_BaseColor.png rename to Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_Stones2_BaseColor.png diff --git a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones2_BaseColor.png.meta b/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_Stones2_BaseColor.png.meta similarity index 100% rename from Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones2_BaseColor.png.meta rename to Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_Stones2_BaseColor.png.meta diff --git a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones2_Normal-OGL.png b/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_Stones2_Normal-OGL.png similarity index 100% rename from Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones2_Normal-OGL.png rename to Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_Stones2_Normal-OGL.png diff --git a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones2_Normal-OGL.png.meta b/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_Stones2_Normal-OGL.png.meta similarity index 100% rename from Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones2_Normal-OGL.png.meta rename to Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_Stones2_Normal-OGL.png.meta diff --git a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones2_Roughness.png b/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_Stones2_Roughness.png similarity index 100% rename from Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones2_Roughness.png rename to Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_Stones2_Roughness.png diff --git a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones2_Roughness.png.meta b/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_Stones2_Roughness.png.meta similarity index 100% rename from Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones2_Roughness.png.meta rename to Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_Stones2_Roughness.png.meta diff --git a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones_BaseColor.png b/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_Stones_BaseColor.png similarity index 100% rename from Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones_BaseColor.png rename to Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_Stones_BaseColor.png diff --git a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones_BaseColor.png.meta b/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_Stones_BaseColor.png.meta similarity index 100% rename from Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones_BaseColor.png.meta rename to Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_Stones_BaseColor.png.meta diff --git a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones_Normal-OGL.png b/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_Stones_Normal-OGL.png similarity index 100% rename from Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones_Normal-OGL.png rename to Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_Stones_Normal-OGL.png diff --git a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones_Normal-OGL.png.meta b/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_Stones_Normal-OGL.png.meta similarity index 100% rename from Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones_Normal-OGL.png.meta rename to Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_Stones_Normal-OGL.png.meta diff --git a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones_Roughness.png b/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_Stones_Roughness.png similarity index 100% rename from Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones_Roughness.png rename to Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_Stones_Roughness.png diff --git a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones_Roughness.png.meta b/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_Stones_Roughness.png.meta similarity index 100% rename from Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones_Roughness.png.meta rename to Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/DoorFrameWall_Stones_Roughness.png.meta diff --git a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/Stones.mat b/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/Stones.mat similarity index 98% rename from Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/Stones.mat rename to Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/Stones.mat index c502ec791a..5a66b0a7d9 100644 --- a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/Stones.mat +++ b/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/Stones.mat @@ -28,7 +28,7 @@ Material: - IRAYUBER_DUALLOBESPECULARREFLECTIVITYACTIVE - _DOUBLESIDED_ON m_LightmapFlags: 2 - m_EnableInstancingVariants: 0 + m_EnableInstancingVariants: 1 m_DoubleSidedGI: 1 m_CustomRenderQueue: 2000 stringTagMap: diff --git a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/Stones.mat.meta b/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/Stones.mat.meta similarity index 100% rename from Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/Stones.mat.meta rename to Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/Stones.mat.meta diff --git a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/Stones2.mat b/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/Stones2.mat similarity index 98% rename from Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/Stones2.mat rename to Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/Stones2.mat index f7c1ec27ed..5f49cdcba3 100644 --- a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/Stones2.mat +++ b/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/Stones2.mat @@ -15,7 +15,7 @@ Material: - IRAYUBER_DUALLOBESPECULARREFLECTIVITYACTIVE - _DOUBLESIDED_ON m_LightmapFlags: 2 - m_EnableInstancingVariants: 0 + m_EnableInstancingVariants: 1 m_DoubleSidedGI: 1 m_CustomRenderQueue: 2000 stringTagMap: diff --git a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/Stones2.mat.meta b/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/Stones2.mat.meta similarity index 100% rename from Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/Stones2.mat.meta rename to Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials/Stones2.mat.meta diff --git a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/_DoorFrame.dtu b/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/_DoorFrame.dtu deleted file mode 100644 index 9366613d9f..0000000000 --- a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/_DoorFrame.dtu +++ /dev/null @@ -1,2595 +0,0 @@ -{ - "DTU Version" : 4, - "Asset Name" : "_DoorFrame", - "Import Name" : "!_Wall_Door", - "Asset Type" : "StaticMesh", - "Use Experimental Animation Transfer" : false, - "Asset Id" : "!_Wall_Door", - "Content Type" : "Unknown", - "FBX File" : "C:/Work/My project/Assets/Daz3D/_DoorFrame/_DoorFrame.fbx", - "Base FBX File" : "C:/Work/My project/Assets/Daz3D/_DoorFrame/_DoorFrame_base.fbx", - "HD FBX File" : "C:/Work/My project/Assets/Daz3D/_DoorFrame/_DoorFrame_HD.fbx", - "Import Folder" : "C:/Work/My project/Assets/Daz3D/_DoorFrame/", - "Product Name" : "", - "Product Component Name" : "", - "Materials" : [ - { - "Version" : 4, - "Asset Name" : "DoorFrame (2)", - "Asset Label" : "DoorFrame", - "Material Name" : "DoorFrameWall", - "Material Type" : "Iray Uber", - "Value" : "Prop", - "Properties" : [ - { - "Name" : "Asset Type", - "Label" : "Asset Type", - "Value" : "Prop", - "Data Type" : "String", - "Texture" : "" - }, - { - "Name" : "UV Set", - "Label" : "UV Set", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Smooth On", - "Label" : "Smooth", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Smooth Angle", - "Label" : "Angle", - "Value" : 89, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Line Preview Color", - "Label" : "Line Preview Color", - "Value" : "#000000", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Line Start Width", - "Label" : "Line Start Width (mm)", - "Value" : 0.1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Line End Width", - "Label" : "Line End Width (mm)", - "Value" : 0.1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Line UV Width", - "Label" : "Line UV Width", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Render Priority", - "Label" : "Render Priority", - "Value" : 3, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Propagate Priority", - "Label" : "Propagate Priority", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Follow Blend", - "Label" : "Follow Blend", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Base Mixing", - "Label" : "Base Mixing", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Metallic Weight", - "Label" : "Metallicity", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Diffuse Weight", - "Label" : "Diffuse Weight", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Diffuse Color", - "Label" : "Base Color", - "Value" : "#ffffff", - "Data Type" : "Color", - "Texture" : "C:/Users/Public/Documents/My DAZ 3D Library/Runtime/Textures/Roguey/MedBedroom/DoorFrameWall_DoorFrameWall_BaseColor.png" - }, - { - "Name" : "Diffuse Strength", - "Label" : "Diffuse Strength", - "Value" : 0.9, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Diffuse Roughness", - "Label" : "Diffuse Roughness", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Diffuse Overlay Weight", - "Label" : "Diffuse Overlay Weight", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Diffuse Overlay Weight Squared", - "Label" : "Diffuse Overlay Weight Squared", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Diffuse Overlay Color", - "Label" : "Diffuse Overlay Color", - "Value" : "#c0c0c0", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Diffuse Overlay Color Effect", - "Label" : "Diffuse Overlay Color Effect", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Diffuse Overlay Roughness", - "Label" : "Diffuse Overlay Roughness", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Translucency Weight", - "Label" : "Translucency Weight", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Base Color Effect", - "Label" : "Base Color Effect", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Translucency Color", - "Label" : "Translucency Color", - "Value" : "#ffffff", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Invert Transmission Normal", - "Label" : "Invert Transmission Normal", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "SSS Reflectance Tint", - "Label" : "SSS Reflectance Tint", - "Value" : "#ffffff", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Dual Lobe Specular Weight", - "Label" : "Dual Lobe Specular Weight", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Dual Lobe Specular Reflectivity", - "Label" : "Dual Lobe Specular Reflectivity", - "Value" : 0.5, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Specular Lobe 1 Roughness", - "Label" : "Specular Lobe 1 Roughness", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Specular Lobe 2 Roughness", - "Label" : "Specular Lobe 2 Roughness", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Specular Lobe 1 Glossiness", - "Label" : "Specular Lobe 1 Glossiness", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Specular Lobe 2 Glossiness", - "Label" : "Specular Lobe 2 Glossiness", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Dual Lobe Specular Ratio", - "Label" : "Dual Lobe Specular Ratio", - "Value" : 0.85, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Glossy Weight", - "Label" : "Glossy Weight", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Glossy Layered Weight", - "Label" : "Glossy Layered Weight", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "C:/Users/Public/Documents/My DAZ 3D Library/Runtime/Textures/Roguey/MedBedroom/DoorFrameWall_DoorFrameWall_Gloss.png" - }, - { - "Name" : "Share Glossy Inputs", - "Label" : "Share Glossy Inputs", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Glossy Color", - "Label" : "Glossy Color", - "Value" : "#ffffff", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Glossy Color Effect", - "Label" : "Glossy Color Effect", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Glossy Reflectivity", - "Label" : "Glossy Reflectivity", - "Value" : 0.5, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Glossy Specular", - "Label" : "Glossy Specular", - "Value" : "#3b3b3b", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Glossy Roughness", - "Label" : "Glossy Roughness", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "C:/Users/Public/Documents/My DAZ 3D Library/Runtime/Textures/Roguey/MedBedroom/DoorFrameWall_DoorFrameWall_Roughness.png" - }, - { - "Name" : "Glossiness", - "Label" : "Glossiness", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Glossy Anisotropy", - "Label" : "Glossy Anisotropy", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Backscattering Weight", - "Label" : "Backscattering Weight", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Backscattering Color", - "Label" : "Backscattering Color", - "Value" : "#ffffff", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Backscattering Roughness", - "Label" : "Backscattering Roughness", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Backscattering Glossiness", - "Label" : "Backscattering Glossiness", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Backscattering Anisotropy", - "Label" : "Backscattering Anisotropy", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Refraction Index", - "Label" : "Refraction Index", - "Value" : 1.5, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Refraction Weight", - "Label" : "Refraction Weight", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Refraction Color", - "Label" : "Refraction Color", - "Value" : "#ffffff", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Refraction Roughness", - "Label" : "Refraction Roughness", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Refraction Glossiness", - "Label" : "Refraction Glossiness", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Abbe", - "Label" : "Abbe", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Glossy Anisotropy Rotations", - "Label" : "Glossy Anisotropy Rotations", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Base Thin Film", - "Label" : "Base Thin Film", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Base Thin Film IOR", - "Label" : "Base Thin Film IOR", - "Value" : 1.5, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Bump Strength", - "Label" : "Base Bump", - "Value" : 50, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Normal Map", - "Label" : "Normal Map", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "C:/Users/Public/Documents/My DAZ 3D Library/Runtime/Textures/Roguey/MedBedroom/DoorFrameWall_DoorFrameWall_Normal-OGL.png" - }, - { - "Name" : "Metallic Flakes Weight", - "Label" : "Metallic Flakes Weight", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Metallic Flakes Color", - "Label" : "Metallic Flakes Color", - "Value" : "#ffffff", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Metallic Flakes Color Effect", - "Label" : "Metallic Flakes Color Effect", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Metallic Flakes Roughness", - "Label" : "Metallic Flakes Roughness", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Metallic Flakes Glossiness", - "Label" : "Metallic Flakes Glossiness", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Metallic Flakes Size", - "Label" : "Metallic Flakes Size", - "Value" : 0.001, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Metallic Flakes Strength", - "Label" : "Metallic Flakes Strength", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Metallic Flakes Density", - "Label" : "Metallic Flakes Density", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Metallic Flakes Thin Film", - "Label" : "Metallic Flakes Thin Film", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Metallic Flakes Thin Film IOR", - "Label" : "Metallic Flakes Thin Film IOR", - "Value" : 1.5, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Weight", - "Label" : "Top Coat Weight", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Color", - "Label" : "Top Coat Color", - "Value" : "#ffffff", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Top Coat Color Effect", - "Label" : "Top Coat Color Effect", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Roughness", - "Label" : "Top Coat Roughness", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Glossiness", - "Label" : "Top Coat Glossiness", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Layering Mode", - "Label" : "Top Coat Layering Mode", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Reflectivity", - "Label" : "Reflectivity", - "Value" : 0.5, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat IOR", - "Label" : "Top Coat IOR", - "Value" : 1.5, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Curve Normal", - "Label" : "Top Coat Curve 0", - "Value" : 0.04, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Curve Grazing", - "Label" : "Top Coat Curve 90", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Curve Exponent", - "Label" : "Top Coat Curve Exponent", - "Value" : 5, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Anisotropy", - "Label" : "Top Coat Anisotropy", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Rotations", - "Label" : "Top Coat Rotations", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Thin Film", - "Label" : "Top Coat Thin Film", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Thin Film IOR", - "Label" : "Top Coat Thin Film IOR", - "Value" : 1.5, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Bump Mode", - "Label" : "Top Coat Bump Mode", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Bump", - "Label" : "Top Coat Bump", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Thin Walled", - "Label" : "Thin Walled", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Transmitted Measurement Distance", - "Label" : "Transmitted Measurement Distance", - "Value" : 0.1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Transmitted Color", - "Label" : "Transmitted Color", - "Value" : "#000000", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "SSS Mode", - "Label" : "SSS Mode", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Scattering Measurement Distance", - "Label" : "Scattering Measurement Distance", - "Value" : 0.1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "SSS Amount", - "Label" : "SSS Amount", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "SSS Color", - "Label" : "SSS Color", - "Value" : "#000000", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "SSS Direction", - "Label" : "SSS Direction", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Emission Color", - "Label" : "Emission Color", - "Value" : "#000000", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Emission Temperature", - "Label" : "Emission Temperature (K)", - "Value" : 6500, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Two Sided Light", - "Label" : "Two Sided Light", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Luminance", - "Label" : "Luminance", - "Value" : 1500, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Luminance Units", - "Label" : "Luminance Units", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Luminous Efficacy", - "Label" : "Luminous Efficacy (lm/W)", - "Value" : 15, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Cutout Opacity", - "Label" : "Cutout Opacity", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Displacement Strength", - "Label" : "Displacement Strength", - "Value" : 2, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Minimum Displacement", - "Label" : "Minimum Displacement", - "Value" : -0.1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Maximum Displacement", - "Label" : "Maximum Displacement", - "Value" : 0.1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "SubD Displacement Level", - "Label" : "SubD Displacement Level", - "Value" : 2, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Horizontal Tiles", - "Label" : "Horizontal Tiles", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Horizontal Offset", - "Label" : "Horizontal Offset", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Vertical Tiles", - "Label" : "Vertical Tiles", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Vertical Offset", - "Label" : "Vertical Offset", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Round Corners Radius", - "Label" : "Round Corners Radius", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Round Corners Across Materials", - "Label" : "Round Corners Across Materials", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Round Corners Roundness", - "Label" : "Round Corners Roundness", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Roughness Squared", - "Label" : "Roughness Squared", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Glossiness Squared", - "Label" : "Glossiness Squared", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "BSDF Type", - "Label" : "BSDF Type", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "OutlineColorID", - "Label" : "Material ID", - "Value" : "#000000", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Exclude From White Mode", - "Label" : "Exclude From White Mode", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - } - ] - }, - { - "Version" : 4, - "Asset Name" : "DoorFrame (2)", - "Asset Label" : "DoorFrame", - "Material Name" : "Stones", - "Material Type" : "Iray Uber", - "Value" : "Prop", - "Properties" : [ - { - "Name" : "Asset Type", - "Label" : "Asset Type", - "Value" : "Prop", - "Data Type" : "String", - "Texture" : "" - }, - { - "Name" : "UV Set", - "Label" : "UV Set", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Smooth On", - "Label" : "Smooth", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Smooth Angle", - "Label" : "Angle", - "Value" : 89, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Line Preview Color", - "Label" : "Line Preview Color", - "Value" : "#000000", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Line Start Width", - "Label" : "Line Start Width (mm)", - "Value" : 0.1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Line End Width", - "Label" : "Line End Width (mm)", - "Value" : 0.1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Line UV Width", - "Label" : "Line UV Width", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Render Priority", - "Label" : "Render Priority", - "Value" : 3, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Propagate Priority", - "Label" : "Propagate Priority", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Follow Blend", - "Label" : "Follow Blend", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Base Mixing", - "Label" : "Base Mixing", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Metallic Weight", - "Label" : "Metallicity", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Diffuse Weight", - "Label" : "Diffuse Weight", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Diffuse Color", - "Label" : "Base Color", - "Value" : "#ffffff", - "Data Type" : "Color", - "Texture" : "C:/Users/Public/Documents/My DAZ 3D Library/Runtime/Textures/Roguey/MedBedroom/DoorFrameWall_Stones_BaseColor.png" - }, - { - "Name" : "Diffuse Strength", - "Label" : "Diffuse Strength", - "Value" : 0.9, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Diffuse Roughness", - "Label" : "Diffuse Roughness", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Diffuse Overlay Weight", - "Label" : "Diffuse Overlay Weight", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Diffuse Overlay Weight Squared", - "Label" : "Diffuse Overlay Weight Squared", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Diffuse Overlay Color", - "Label" : "Diffuse Overlay Color", - "Value" : "#c0c0c0", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Diffuse Overlay Color Effect", - "Label" : "Diffuse Overlay Color Effect", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Diffuse Overlay Roughness", - "Label" : "Diffuse Overlay Roughness", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Translucency Weight", - "Label" : "Translucency Weight", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Base Color Effect", - "Label" : "Base Color Effect", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Translucency Color", - "Label" : "Translucency Color", - "Value" : "#ffffff", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Invert Transmission Normal", - "Label" : "Invert Transmission Normal", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "SSS Reflectance Tint", - "Label" : "SSS Reflectance Tint", - "Value" : "#ffffff", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Dual Lobe Specular Weight", - "Label" : "Dual Lobe Specular Weight", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Dual Lobe Specular Reflectivity", - "Label" : "Dual Lobe Specular Reflectivity", - "Value" : 0.5, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Specular Lobe 1 Roughness", - "Label" : "Specular Lobe 1 Roughness", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Specular Lobe 2 Roughness", - "Label" : "Specular Lobe 2 Roughness", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Specular Lobe 1 Glossiness", - "Label" : "Specular Lobe 1 Glossiness", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Specular Lobe 2 Glossiness", - "Label" : "Specular Lobe 2 Glossiness", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Dual Lobe Specular Ratio", - "Label" : "Dual Lobe Specular Ratio", - "Value" : 0.85, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Glossy Weight", - "Label" : "Glossy Weight", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Glossy Layered Weight", - "Label" : "Glossy Layered Weight", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "C:/Users/Public/Documents/My DAZ 3D Library/Runtime/Textures/Roguey/MedBedroom/DoorFrameWall_Stones_Gloss.png" - }, - { - "Name" : "Share Glossy Inputs", - "Label" : "Share Glossy Inputs", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Glossy Color", - "Label" : "Glossy Color", - "Value" : "#ffffff", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Glossy Color Effect", - "Label" : "Glossy Color Effect", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Glossy Reflectivity", - "Label" : "Glossy Reflectivity", - "Value" : 0.5, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Glossy Specular", - "Label" : "Glossy Specular", - "Value" : "#3b3b3b", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Glossy Roughness", - "Label" : "Glossy Roughness", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "C:/Users/Public/Documents/My DAZ 3D Library/Runtime/Textures/Roguey/MedBedroom/DoorFrameWall_Stones_Roughness.png" - }, - { - "Name" : "Glossiness", - "Label" : "Glossiness", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Glossy Anisotropy", - "Label" : "Glossy Anisotropy", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Backscattering Weight", - "Label" : "Backscattering Weight", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Backscattering Color", - "Label" : "Backscattering Color", - "Value" : "#ffffff", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Backscattering Roughness", - "Label" : "Backscattering Roughness", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Backscattering Glossiness", - "Label" : "Backscattering Glossiness", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Backscattering Anisotropy", - "Label" : "Backscattering Anisotropy", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Refraction Index", - "Label" : "Refraction Index", - "Value" : 1.5, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Refraction Weight", - "Label" : "Refraction Weight", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Refraction Color", - "Label" : "Refraction Color", - "Value" : "#ffffff", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Refraction Roughness", - "Label" : "Refraction Roughness", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Refraction Glossiness", - "Label" : "Refraction Glossiness", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Abbe", - "Label" : "Abbe", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Glossy Anisotropy Rotations", - "Label" : "Glossy Anisotropy Rotations", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Base Thin Film", - "Label" : "Base Thin Film", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Base Thin Film IOR", - "Label" : "Base Thin Film IOR", - "Value" : 1.5, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Bump Strength", - "Label" : "Base Bump", - "Value" : 20, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Normal Map", - "Label" : "Normal Map", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "C:/Users/Public/Documents/My DAZ 3D Library/Runtime/Textures/Roguey/MedBedroom/DoorFrameWall_Stones_Normal-OGL.png" - }, - { - "Name" : "Metallic Flakes Weight", - "Label" : "Metallic Flakes Weight", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Metallic Flakes Color", - "Label" : "Metallic Flakes Color", - "Value" : "#ffffff", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Metallic Flakes Color Effect", - "Label" : "Metallic Flakes Color Effect", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Metallic Flakes Roughness", - "Label" : "Metallic Flakes Roughness", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Metallic Flakes Glossiness", - "Label" : "Metallic Flakes Glossiness", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Metallic Flakes Size", - "Label" : "Metallic Flakes Size", - "Value" : 0.001, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Metallic Flakes Strength", - "Label" : "Metallic Flakes Strength", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Metallic Flakes Density", - "Label" : "Metallic Flakes Density", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Metallic Flakes Thin Film", - "Label" : "Metallic Flakes Thin Film", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Metallic Flakes Thin Film IOR", - "Label" : "Metallic Flakes Thin Film IOR", - "Value" : 1.5, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Weight", - "Label" : "Top Coat Weight", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Color", - "Label" : "Top Coat Color", - "Value" : "#ffffff", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Top Coat Color Effect", - "Label" : "Top Coat Color Effect", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Roughness", - "Label" : "Top Coat Roughness", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Glossiness", - "Label" : "Top Coat Glossiness", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Layering Mode", - "Label" : "Top Coat Layering Mode", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Reflectivity", - "Label" : "Reflectivity", - "Value" : 0.5, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat IOR", - "Label" : "Top Coat IOR", - "Value" : 1.5, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Curve Normal", - "Label" : "Top Coat Curve 0", - "Value" : 0.04, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Curve Grazing", - "Label" : "Top Coat Curve 90", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Curve Exponent", - "Label" : "Top Coat Curve Exponent", - "Value" : 5, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Anisotropy", - "Label" : "Top Coat Anisotropy", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Rotations", - "Label" : "Top Coat Rotations", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Thin Film", - "Label" : "Top Coat Thin Film", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Thin Film IOR", - "Label" : "Top Coat Thin Film IOR", - "Value" : 1.5, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Bump Mode", - "Label" : "Top Coat Bump Mode", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Bump", - "Label" : "Top Coat Bump", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Thin Walled", - "Label" : "Thin Walled", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Transmitted Measurement Distance", - "Label" : "Transmitted Measurement Distance", - "Value" : 0.1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Transmitted Color", - "Label" : "Transmitted Color", - "Value" : "#000000", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "SSS Mode", - "Label" : "SSS Mode", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Scattering Measurement Distance", - "Label" : "Scattering Measurement Distance", - "Value" : 0.1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "SSS Amount", - "Label" : "SSS Amount", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "SSS Color", - "Label" : "SSS Color", - "Value" : "#000000", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "SSS Direction", - "Label" : "SSS Direction", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Emission Color", - "Label" : "Emission Color", - "Value" : "#000000", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Emission Temperature", - "Label" : "Emission Temperature (K)", - "Value" : 6500, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Two Sided Light", - "Label" : "Two Sided Light", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Luminance", - "Label" : "Luminance", - "Value" : 1500, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Luminance Units", - "Label" : "Luminance Units", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Luminous Efficacy", - "Label" : "Luminous Efficacy (lm/W)", - "Value" : 15, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Cutout Opacity", - "Label" : "Cutout Opacity", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Displacement Strength", - "Label" : "Displacement Strength", - "Value" : 2, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Minimum Displacement", - "Label" : "Minimum Displacement", - "Value" : -0.1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Maximum Displacement", - "Label" : "Maximum Displacement", - "Value" : 0.1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "SubD Displacement Level", - "Label" : "SubD Displacement Level", - "Value" : 2, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Horizontal Tiles", - "Label" : "Horizontal Tiles", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Horizontal Offset", - "Label" : "Horizontal Offset", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Vertical Tiles", - "Label" : "Vertical Tiles", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Vertical Offset", - "Label" : "Vertical Offset", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Round Corners Radius", - "Label" : "Round Corners Radius", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Round Corners Across Materials", - "Label" : "Round Corners Across Materials", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Round Corners Roundness", - "Label" : "Round Corners Roundness", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Roughness Squared", - "Label" : "Roughness Squared", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Glossiness Squared", - "Label" : "Glossiness Squared", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "BSDF Type", - "Label" : "BSDF Type", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "OutlineColorID", - "Label" : "Material ID", - "Value" : "#000000", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Exclude From White Mode", - "Label" : "Exclude From White Mode", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - } - ] - }, - { - "Version" : 4, - "Asset Name" : "DoorFrame (2)", - "Asset Label" : "DoorFrame", - "Material Name" : "Stones2", - "Material Type" : "Iray Uber", - "Value" : "Prop", - "Properties" : [ - { - "Name" : "Asset Type", - "Label" : "Asset Type", - "Value" : "Prop", - "Data Type" : "String", - "Texture" : "" - }, - { - "Name" : "UV Set", - "Label" : "UV Set", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Smooth On", - "Label" : "Smooth", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Smooth Angle", - "Label" : "Angle", - "Value" : 89, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Line Preview Color", - "Label" : "Line Preview Color", - "Value" : "#000000", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Line Start Width", - "Label" : "Line Start Width (mm)", - "Value" : 0.1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Line End Width", - "Label" : "Line End Width (mm)", - "Value" : 0.1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Line UV Width", - "Label" : "Line UV Width", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Render Priority", - "Label" : "Render Priority", - "Value" : 3, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Propagate Priority", - "Label" : "Propagate Priority", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Follow Blend", - "Label" : "Follow Blend", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Base Mixing", - "Label" : "Base Mixing", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Metallic Weight", - "Label" : "Metallicity", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Diffuse Weight", - "Label" : "Diffuse Weight", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Diffuse Color", - "Label" : "Base Color", - "Value" : "#ffffff", - "Data Type" : "Color", - "Texture" : "C:/Users/Public/Documents/My DAZ 3D Library/Runtime/Textures/Roguey/MedBedroom/DoorFrameWall_Stones2_BaseColor.png" - }, - { - "Name" : "Diffuse Strength", - "Label" : "Diffuse Strength", - "Value" : 0.9, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Diffuse Roughness", - "Label" : "Diffuse Roughness", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Diffuse Overlay Weight", - "Label" : "Diffuse Overlay Weight", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Diffuse Overlay Weight Squared", - "Label" : "Diffuse Overlay Weight Squared", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Diffuse Overlay Color", - "Label" : "Diffuse Overlay Color", - "Value" : "#c0c0c0", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Diffuse Overlay Color Effect", - "Label" : "Diffuse Overlay Color Effect", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Diffuse Overlay Roughness", - "Label" : "Diffuse Overlay Roughness", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Translucency Weight", - "Label" : "Translucency Weight", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Base Color Effect", - "Label" : "Base Color Effect", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Translucency Color", - "Label" : "Translucency Color", - "Value" : "#ffffff", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Invert Transmission Normal", - "Label" : "Invert Transmission Normal", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "SSS Reflectance Tint", - "Label" : "SSS Reflectance Tint", - "Value" : "#ffffff", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Dual Lobe Specular Weight", - "Label" : "Dual Lobe Specular Weight", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Dual Lobe Specular Reflectivity", - "Label" : "Dual Lobe Specular Reflectivity", - "Value" : 0.5, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Specular Lobe 1 Roughness", - "Label" : "Specular Lobe 1 Roughness", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Specular Lobe 2 Roughness", - "Label" : "Specular Lobe 2 Roughness", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Specular Lobe 1 Glossiness", - "Label" : "Specular Lobe 1 Glossiness", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Specular Lobe 2 Glossiness", - "Label" : "Specular Lobe 2 Glossiness", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Dual Lobe Specular Ratio", - "Label" : "Dual Lobe Specular Ratio", - "Value" : 0.85, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Glossy Weight", - "Label" : "Glossy Weight", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Glossy Layered Weight", - "Label" : "Glossy Layered Weight", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "C:/Users/Public/Documents/My DAZ 3D Library/Runtime/Textures/Roguey/MedBedroom/DoorFrameWall_Stones2_Gloss.png" - }, - { - "Name" : "Share Glossy Inputs", - "Label" : "Share Glossy Inputs", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Glossy Color", - "Label" : "Glossy Color", - "Value" : "#ffffff", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Glossy Color Effect", - "Label" : "Glossy Color Effect", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Glossy Reflectivity", - "Label" : "Glossy Reflectivity", - "Value" : 0.5, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Glossy Specular", - "Label" : "Glossy Specular", - "Value" : "#3b3b3b", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Glossy Roughness", - "Label" : "Glossy Roughness", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "C:/Users/Public/Documents/My DAZ 3D Library/Runtime/Textures/Roguey/MedBedroom/DoorFrameWall_Stones2_Roughness.png" - }, - { - "Name" : "Glossiness", - "Label" : "Glossiness", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Glossy Anisotropy", - "Label" : "Glossy Anisotropy", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Backscattering Weight", - "Label" : "Backscattering Weight", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Backscattering Color", - "Label" : "Backscattering Color", - "Value" : "#ffffff", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Backscattering Roughness", - "Label" : "Backscattering Roughness", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Backscattering Glossiness", - "Label" : "Backscattering Glossiness", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Backscattering Anisotropy", - "Label" : "Backscattering Anisotropy", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Refraction Index", - "Label" : "Refraction Index", - "Value" : 1.5, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Refraction Weight", - "Label" : "Refraction Weight", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Refraction Color", - "Label" : "Refraction Color", - "Value" : "#ffffff", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Refraction Roughness", - "Label" : "Refraction Roughness", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Refraction Glossiness", - "Label" : "Refraction Glossiness", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Abbe", - "Label" : "Abbe", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Glossy Anisotropy Rotations", - "Label" : "Glossy Anisotropy Rotations", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Base Thin Film", - "Label" : "Base Thin Film", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Base Thin Film IOR", - "Label" : "Base Thin Film IOR", - "Value" : 1.5, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Bump Strength", - "Label" : "Base Bump", - "Value" : 20, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Normal Map", - "Label" : "Normal Map", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "C:/Users/Public/Documents/My DAZ 3D Library/Runtime/Textures/Roguey/MedBedroom/DoorFrameWall_Stones2_Normal-OGL.png" - }, - { - "Name" : "Metallic Flakes Weight", - "Label" : "Metallic Flakes Weight", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Metallic Flakes Color", - "Label" : "Metallic Flakes Color", - "Value" : "#ffffff", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Metallic Flakes Color Effect", - "Label" : "Metallic Flakes Color Effect", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Metallic Flakes Roughness", - "Label" : "Metallic Flakes Roughness", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Metallic Flakes Glossiness", - "Label" : "Metallic Flakes Glossiness", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Metallic Flakes Size", - "Label" : "Metallic Flakes Size", - "Value" : 0.001, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Metallic Flakes Strength", - "Label" : "Metallic Flakes Strength", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Metallic Flakes Density", - "Label" : "Metallic Flakes Density", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Metallic Flakes Thin Film", - "Label" : "Metallic Flakes Thin Film", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Metallic Flakes Thin Film IOR", - "Label" : "Metallic Flakes Thin Film IOR", - "Value" : 1.5, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Weight", - "Label" : "Top Coat Weight", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Color", - "Label" : "Top Coat Color", - "Value" : "#ffffff", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Top Coat Color Effect", - "Label" : "Top Coat Color Effect", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Roughness", - "Label" : "Top Coat Roughness", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Glossiness", - "Label" : "Top Coat Glossiness", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Layering Mode", - "Label" : "Top Coat Layering Mode", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Reflectivity", - "Label" : "Reflectivity", - "Value" : 0.5, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat IOR", - "Label" : "Top Coat IOR", - "Value" : 1.5, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Curve Normal", - "Label" : "Top Coat Curve 0", - "Value" : 0.04, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Curve Grazing", - "Label" : "Top Coat Curve 90", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Curve Exponent", - "Label" : "Top Coat Curve Exponent", - "Value" : 5, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Anisotropy", - "Label" : "Top Coat Anisotropy", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Rotations", - "Label" : "Top Coat Rotations", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Thin Film", - "Label" : "Top Coat Thin Film", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Thin Film IOR", - "Label" : "Top Coat Thin Film IOR", - "Value" : 1.5, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Bump Mode", - "Label" : "Top Coat Bump Mode", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Top Coat Bump", - "Label" : "Top Coat Bump", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Thin Walled", - "Label" : "Thin Walled", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Transmitted Measurement Distance", - "Label" : "Transmitted Measurement Distance", - "Value" : 0.1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Transmitted Color", - "Label" : "Transmitted Color", - "Value" : "#000000", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "SSS Mode", - "Label" : "SSS Mode", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Scattering Measurement Distance", - "Label" : "Scattering Measurement Distance", - "Value" : 0.1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "SSS Amount", - "Label" : "SSS Amount", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "SSS Color", - "Label" : "SSS Color", - "Value" : "#000000", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "SSS Direction", - "Label" : "SSS Direction", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Emission Color", - "Label" : "Emission Color", - "Value" : "#000000", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Emission Temperature", - "Label" : "Emission Temperature (K)", - "Value" : 6500, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Two Sided Light", - "Label" : "Two Sided Light", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Luminance", - "Label" : "Luminance", - "Value" : 1500, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Luminance Units", - "Label" : "Luminance Units", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Luminous Efficacy", - "Label" : "Luminous Efficacy (lm/W)", - "Value" : 15, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Cutout Opacity", - "Label" : "Cutout Opacity", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Displacement Strength", - "Label" : "Displacement Strength", - "Value" : 2, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Minimum Displacement", - "Label" : "Minimum Displacement", - "Value" : -0.1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Maximum Displacement", - "Label" : "Maximum Displacement", - "Value" : 0.1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "SubD Displacement Level", - "Label" : "SubD Displacement Level", - "Value" : 2, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Horizontal Tiles", - "Label" : "Horizontal Tiles", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Horizontal Offset", - "Label" : "Horizontal Offset", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Vertical Tiles", - "Label" : "Vertical Tiles", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Vertical Offset", - "Label" : "Vertical Offset", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Round Corners Radius", - "Label" : "Round Corners Radius", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Round Corners Across Materials", - "Label" : "Round Corners Across Materials", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Round Corners Roundness", - "Label" : "Round Corners Roundness", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Roughness Squared", - "Label" : "Roughness Squared", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "Glossiness Squared", - "Label" : "Glossiness Squared", - "Value" : 1, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "BSDF Type", - "Label" : "BSDF Type", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - }, - { - "Name" : "OutlineColorID", - "Label" : "Material ID", - "Value" : "#000000", - "Data Type" : "Color", - "Texture" : "" - }, - { - "Name" : "Exclude From White Mode", - "Label" : "Exclude From White Mode", - "Value" : 0, - "Data Type" : "Double", - "Texture" : "" - } - ] - } - ], - "Morphs" : [ - ], - "MorphLinks" : { - }, - "MorphNames" : [ - ], - "SkeletonData" : { - "skeletonScale" : [ - "skeletonScale", - 1 - ], - "offset" : [ - "offset", - 0 - ] - }, - "HeadTailData" : { - }, - "JointOrientation" : { - }, - "LimitData" : { - }, - "PoseData" : { - "!_Wall_Door" : { - "Name" : "!_Wall_Door", - "Label" : "!_Wall4", - "Object Type" : "EMPTY", - "Object" : "EMPTY", - "Position" : [ - -39.77376, - 0, - 0 - ], - "Rotation" : [ - 0, - 0, - 0 - ], - "Scale" : [ - 1, - 1, - 1 - ] - }, - "DoorFrame (2)" : { - "Name" : "DoorFrame (2)", - "Label" : "DoorFrame", - "Object Type" : "MESH", - "Object" : "DoorFrame (2)", - "Position" : [ - 39.77376, - 0, - -1.299988 - ], - "Rotation" : [ - 0, - 0, - 0 - ], - "Scale" : [ - 1, - 1, - 1 - ] - } - }, - "Subdivisions" : [ - ], - "dForce" : [ - ] -} \ No newline at end of file diff --git a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/_DoorFrame.dtu.meta b/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/_DoorFrame.dtu.meta deleted file mode 100644 index c4f3e0d626..0000000000 --- a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/_DoorFrame.dtu.meta +++ /dev/null @@ -1,10 +0,0 @@ -fileFormatVersion: 2 -guid: 0b825cbf410d6d44da7340d69de42236 -ScriptedImporter: - internalIDToNameTable: [] - externalObjects: {} - serializedVersion: 2 - userData: - assetBundleName: - assetBundleVariant: - script: {fileID: 11500000, guid: 74b20127438474d259671807b26b59f2, type: 3} diff --git a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/_DoorFrame_Prefab.meta b/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/_DoorFrame_Prefab.meta deleted file mode 100644 index 282a2fd810..0000000000 --- a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/_DoorFrame_Prefab.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: 87a7a0cd51b9e1b4193601f39def562e -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/_DoorFrame_Prefab/Daz3D__DoorFrame.prefab b/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/_DoorFrame_Prefab/Daz3D__DoorFrame.prefab deleted file mode 100644 index 8f4434ee17..0000000000 --- a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/_DoorFrame_Prefab/Daz3D__DoorFrame.prefab +++ /dev/null @@ -1,446 +0,0 @@ -%YAML 1.1 -%TAG !u! tag:unity3d.com,2011: ---- !u!1 &3779636896301971427 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 5477636384708732947} - - component: {fileID: 879412960401098215} - - component: {fileID: 8373468795918857764} - m_Layer: 0 - m_Name: DoorFrame_LOD2 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &5477636384708732947 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3779636896301971427} - m_LocalRotation: {x: 0.00000005960466, y: 0, z: -0, w: 1} - m_LocalPosition: {x: -0.497172, y: 1.2434497e-15, z: -0.016249849} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 2284843477593073978} - m_RootOrder: 2 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &879412960401098215 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3779636896301971427} - m_Mesh: {fileID: 7091393209744437672, guid: 4ae4e050183883f42900fa1a0f2887de, type: 3} ---- !u!23 &8373468795918857764 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 3779636896301971427} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &4215905933126860110 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 2284843477593073978} - - component: {fileID: 4375609020605941100} - - component: {fileID: 1233953239368441486} - - component: {fileID: 250505584937521574} - m_Layer: 0 - m_Name: Daz3D__DoorFrame - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &2284843477593073978 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4215905933126860110} - m_LocalRotation: {x: 0.000000081460335, y: 0, z: -0, w: 1} - m_LocalPosition: {x: 0.497172, y: 0, z: 0} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: - - {fileID: 4573100230706393799} - - {fileID: 3243368214716604677} - - {fileID: 5477636384708732947} - - {fileID: 1396044511527966159} - m_Father: {fileID: 0} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!95 &4375609020605941100 -Animator: - serializedVersion: 4 - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4215905933126860110} - m_Enabled: 1 - m_Avatar: {fileID: 9000000, guid: 4ae4e050183883f42900fa1a0f2887de, type: 3} - m_Controller: {fileID: 0} - m_CullingMode: 0 - m_UpdateMode: 0 - m_ApplyRootMotion: 0 - m_LinearVelocityBlending: 0 - m_StabilizeFeet: 0 - m_WarningMessage: - m_HasTransformHierarchy: 1 - m_AllowConstantClipSamplingOptimization: 1 - m_KeepAnimatorControllerStateOnDisable: 0 ---- !u!205 &1233953239368441486 -LODGroup: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4215905933126860110} - serializedVersion: 2 - m_LocalReferencePoint: {x: -0.059031844, y: 1.6076335, z: -0.012691736} - m_Size: 3.605032 - m_FadeMode: 0 - m_AnimateCrossFading: 0 - m_LastLODIsBillboard: 0 - m_LODs: - - screenRelativeHeight: 0.25 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 2549735615504888169} - - screenRelativeHeight: 0.125 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 6212790706420803120} - - screenRelativeHeight: 0.0625 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 8373468795918857764} - - screenRelativeHeight: 0.01 - fadeTransitionWidth: 0 - renderers: - - renderer: {fileID: 2428498502741874449} - m_Enabled: 1 ---- !u!114 &250505584937521574 -MonoBehaviour: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 4215905933126860110} - m_Enabled: 1 - m_EditorHideFlags: 0 - m_Script: {fileID: 11500000, guid: 5a237cd1edabd402bb18b45be88b01ed, type: 3} - m_Name: - m_EditorClassIdentifier: - SourceFBX: {fileID: 919132149155446097, guid: 4ae4e050183883f42900fa1a0f2887de, - type: 3} - ReplaceOnImport: 1 ---- !u!1 &5232729599049748647 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 3243368214716604677} - - component: {fileID: 3621671738276847814} - - component: {fileID: 6212790706420803120} - m_Layer: 0 - m_Name: DoorFrame_LOD1 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &3243368214716604677 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5232729599049748647} - m_LocalRotation: {x: 0.00000005960466, y: 0, z: -0, w: 1} - m_LocalPosition: {x: -0.497172, y: 1.065814e-15, z: -0.016249849} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 2284843477593073978} - m_RootOrder: 1 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &3621671738276847814 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5232729599049748647} - m_Mesh: {fileID: 6770919716927393955, guid: 4ae4e050183883f42900fa1a0f2887de, type: 3} ---- !u!23 &6212790706420803120 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 5232729599049748647} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &8142164792027074168 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 1396044511527966159} - - component: {fileID: 3893361144764195683} - - component: {fileID: 2428498502741874449} - m_Layer: 0 - m_Name: DoorFrame_LOD3 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &1396044511527966159 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8142164792027074168} - m_LocalRotation: {x: 0.00000005960466, y: 0, z: -0, w: 1} - m_LocalPosition: {x: -0.497172, y: 1.5987211e-15, z: -0.016249849} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 2284843477593073978} - m_RootOrder: 3 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &3893361144764195683 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8142164792027074168} - m_Mesh: {fileID: 5108513017770282169, guid: 4ae4e050183883f42900fa1a0f2887de, type: 3} ---- !u!23 &2428498502741874449 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8142164792027074168} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} ---- !u!1 &8830787387711793254 -GameObject: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - serializedVersion: 6 - m_Component: - - component: {fileID: 4573100230706393799} - - component: {fileID: 2669950520324505989} - - component: {fileID: 2549735615504888169} - m_Layer: 0 - m_Name: DoorFrame_LOD0 - m_TagString: Untagged - m_Icon: {fileID: 0} - m_NavMeshLayer: 0 - m_StaticEditorFlags: 0 - m_IsActive: 1 ---- !u!4 &4573100230706393799 -Transform: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8830787387711793254} - m_LocalRotation: {x: 0.00000005960466, y: 0, z: -0, w: 1} - m_LocalPosition: {x: -0.497172, y: 7.105427e-16, z: -0.016249849} - m_LocalScale: {x: 1, y: 1, z: 1} - m_ConstrainProportionsScale: 0 - m_Children: [] - m_Father: {fileID: 2284843477593073978} - m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} ---- !u!33 &2669950520324505989 -MeshFilter: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8830787387711793254} - m_Mesh: {fileID: -5988726567863378959, guid: 4ae4e050183883f42900fa1a0f2887de, type: 3} ---- !u!23 &2549735615504888169 -MeshRenderer: - m_ObjectHideFlags: 0 - m_CorrespondingSourceObject: {fileID: 0} - m_PrefabInstance: {fileID: 0} - m_PrefabAsset: {fileID: 0} - m_GameObject: {fileID: 8830787387711793254} - m_Enabled: 1 - m_CastShadows: 1 - m_ReceiveShadows: 1 - m_DynamicOccludee: 1 - m_StaticShadowCaster: 0 - m_MotionVectors: 1 - m_LightProbeUsage: 1 - m_ReflectionProbeUsage: 1 - m_RayTracingMode: 2 - m_RayTraceProcedural: 0 - m_RenderingLayerMask: 1 - m_RendererPriority: 0 - m_Materials: - - {fileID: 0} - - {fileID: 0} - - {fileID: 0} - m_StaticBatchInfo: - firstSubMesh: 0 - subMeshCount: 0 - m_StaticBatchRoot: {fileID: 0} - m_ProbeAnchor: {fileID: 0} - m_LightProbeVolumeOverride: {fileID: 0} - m_ScaleInLightmap: 1 - m_ReceiveGI: 1 - m_PreserveUVs: 0 - m_IgnoreNormalsForChartDetection: 0 - m_ImportantGI: 0 - m_StitchLightmapSeams: 1 - m_SelectedEditorRenderState: 3 - m_MinimumChartSize: 4 - m_AutoUVMaxDistance: 0.5 - m_AutoUVMaxAngle: 89 - m_LightmapParameters: {fileID: 0} - m_SortingLayerID: 0 - m_SortingLayer: 0 - m_SortingOrder: 0 - m_AdditionalVertexStreams: {fileID: 0} diff --git a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/_DoorFrame_Prefab/Daz3D__DoorFrame.prefab.meta b/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/_DoorFrame_Prefab/Daz3D__DoorFrame.prefab.meta deleted file mode 100644 index 035b41d23e..0000000000 --- a/Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/_DoorFrame_Prefab/Daz3D__DoorFrame.prefab.meta +++ /dev/null @@ -1,7 +0,0 @@ -fileFormatVersion: 2 -guid: acec1cd5dd54e8d47aa26ac5b3a54494 -PrefabImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/Assets/Daz3D/Architecture/Doors/DoorStore/SmallDoorFrame.prefab b/Assets/Daz3D/Architecture/Doors/DoorStore/SmallDoorFrame.prefab index 6509218601..f272d0bcda 100644 --- a/Assets/Daz3D/Architecture/Doors/DoorStore/SmallDoorFrame.prefab +++ b/Assets/Daz3D/Architecture/Doors/DoorStore/SmallDoorFrame.prefab @@ -874,10 +874,10 @@ MonoBehaviour: teleports: 0 toCell: {fileID: 0} linkedDoorObjRef: - onDoorOpen: {fileID: 0} - onDoorOpenLocked: {fileID: 0} - onDoorOpenUnlocked: {fileID: 0} - onDoorClose: {fileID: 0} + onDoorOpen: {fileID: 8300000, guid: 94071824c3dd7a24d8032a96f6d0d157, type: 3} + onDoorOpenLocked: {fileID: 8300000, guid: 0ccc409b1966fdc448753d5185ba27d6, type: 3} + onDoorOpenUnlocked: {fileID: 8300000, guid: 0ccc409b1966fdc448753d5185ba27d6, type: 3} + onDoorClose: {fileID: 8300000, guid: 5daabac04d5b24a499f175cc93206213, type: 3} teleportMarker: {fileID: 0} isOpened: 0 --- !u!65 &8723151953468371353 diff --git a/Assets/RPG Creation Kit/Demos/Character Creation/_CharacterCreation_.unity b/Assets/RPG Creation Kit/Demos/Character Creation/_CharacterCreation_.unity index 9f99f2746b..87a6f22cf5 100644 --- a/Assets/RPG Creation Kit/Demos/Character Creation/_CharacterCreation_.unity +++ b/Assets/RPG Creation Kit/Demos/Character Creation/_CharacterCreation_.unity @@ -839,6 +839,60 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 19369862} m_CullTransparentMesh: 1 +--- !u!1 &33025599 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 33025601} + - component: {fileID: 33025600} + m_Layer: 0 + m_Name: INI Reader + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &33025600 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 33025599} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: dd830ac1cf79d5d48b4fa3944118608d, type: 3} + m_Name: + m_EditorClassIdentifier: + iniPath: + ScreenshotRes: {fileID: 0} + MusicVolume: {fileID: 1164788286} + UIVolume: {fileID: 1544491529} + ScreenshotExtension: + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + - {fileID: 0} + InitializeSettings: 0 +--- !u!4 &33025601 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 33025599} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 10 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &35763344 GameObject: m_ObjectHideFlags: 0 @@ -4438,6 +4492,8 @@ MonoBehaviour: PanelLipsMenu: {fileID: 592620618} ColorMenu: {fileID: 376376341} PlayerSexManu: {fileID: 1028635773} + MusicAudio: {fileID: 1588434478} + UIAudio: {fileID: 601062271} SetStats: - {fileID: 1927581610} - {fileID: 1075032876} @@ -6433,6 +6489,126 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 345698923} m_CullTransparentMesh: 1 +--- !u!1 &346266513 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 346266514} + - component: {fileID: 346266518} + - component: {fileID: 346266517} + - component: {fileID: 346266516} + - component: {fileID: 346266515} + m_Layer: 5 + m_Name: Volume + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &346266514 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 346266513} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1434041142} + - {fileID: 1313013937} + - {fileID: 1922458043} + m_Father: {fileID: 449846210} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 378.39618, y: -46.265} + m_SizeDelta: {x: 736.79236, y: 62.53} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &346266515 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 346266513} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!114 &346266516 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 346266513} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ShowMaskGraphic: 1 +--- !u!114 &346266517 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 346266513} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0.39215687} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: b8ea37140ea495e4ead127e6f1ca6c62, type: 3} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 3.02 +--- !u!222 &346266518 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 346266513} + m_CullTransparentMesh: 1 --- !u!1 &346913417 GameObject: m_ObjectHideFlags: 0 @@ -7450,11 +7626,11 @@ RectTransform: m_Children: - {fileID: 1951012580} m_Father: {fileID: 881458313} - m_RootOrder: 1 + m_RootOrder: 2 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 388.39618, y: -122.53} + m_AnchoredPosition: {x: 388.39618, y: -230.06} m_SizeDelta: {x: 756.79236, y: 272.59} m_Pivot: {x: 0.5, y: 1} --- !u!114 &395026505 @@ -8498,6 +8674,125 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 438349809} m_CullTransparentMesh: 1 +--- !u!1 &449846209 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 449846210} + - component: {fileID: 449846214} + - component: {fileID: 449846213} + - component: {fileID: 449846212} + - component: {fileID: 449846211} + m_Layer: 5 + m_Name: UIVolume + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &449846210 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 449846209} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 346266514} + m_Father: {fileID: 881458313} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 388.39618, y: -171.295} + m_SizeDelta: {x: 756.79236, y: 97.53} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &449846211 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 449846209} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3245ec927659c4140ac4f8d17403cc18, type: 3} + m_Name: + m_EditorClassIdentifier: + m_HorizontalFit: 0 + m_VerticalFit: 1 +--- !u!114 &449846212 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 449846209} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 59f8146938fff824cb5fd77236b75775, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 10 + m_Right: 10 + m_Top: 15 + m_Bottom: 20 + m_ChildAlignment: 0 + m_Spacing: 10 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 1 + m_ChildControlHeight: 0 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 +--- !u!114 &449846213 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 449846209} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &449846214 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 449846209} + m_CullTransparentMesh: 1 --- !u!1 &456486035 GameObject: m_ObjectHideFlags: 0 @@ -10137,6 +10432,7 @@ GameObject: - component: {fileID: 549741252} - component: {fileID: 549741251} - component: {fileID: 549741254} + - component: {fileID: 549741255} m_Layer: 5 m_Name: Continue Button m_TagString: Untagged @@ -10273,6 +10569,22 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_ShowMaskGraphic: 1 +--- !u!114 &549741255 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 549741249} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c6688c153c55b154ca47a1648262593f, type: 3} + m_Name: + m_EditorClassIdentifier: + inGameButton: 0 + source: {fileID: 601062271} + onEnter: {fileID: 8300000, guid: fabbca3853732004e90cc51e0bd1a073, type: 3} + onClick: {fileID: 8300000, guid: 0f0aa5bf462928d4e8132b6c0538e94d, type: 3} --- !u!1 &553184489 GameObject: m_ObjectHideFlags: 0 @@ -12231,6 +12543,134 @@ RectTransform: m_AnchoredPosition: {x: 0, y: 0} m_SizeDelta: {x: 0, y: -20} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &601062270 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 601062272} + - component: {fileID: 601062271} + m_Layer: 0 + m_Name: UI Sounds + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!82 &601062271 +AudioSource: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 601062270} + m_Enabled: 1 + serializedVersion: 4 + OutputAudioMixerGroup: {fileID: 0} + m_audioClip: {fileID: 0} + m_PlayOnAwake: 0 + m_Volume: 1 + m_Pitch: 1 + Loop: 0 + Mute: 0 + Spatialize: 0 + SpatializePostEffects: 0 + Priority: 128 + DopplerLevel: 1 + MinDistance: 1 + MaxDistance: 500 + Pan2D: 0 + rolloffMode: 0 + BypassEffects: 0 + BypassListenerEffects: 0 + BypassReverbZones: 0 + rolloffCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + - serializedVersion: 3 + time: 1 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + panLevelCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + spreadCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 0 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 + reverbZoneMixCustomCurve: + serializedVersion: 2 + m_Curve: + - serializedVersion: 3 + time: 0 + value: 1 + inSlope: 0 + outSlope: 0 + tangentMode: 0 + weightedMode: 0 + inWeight: 0.33333334 + outWeight: 0.33333334 + m_PreInfinity: 2 + m_PostInfinity: 2 + m_RotationOrder: 4 +--- !u!4 &601062272 +Transform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 601062270} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 2058.965, y: 1185.6614, z: -1743.6022} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 0} + m_RootOrder: 11 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1 &614684623 GameObject: m_ObjectHideFlags: 0 @@ -13567,6 +14007,8 @@ GameObject: - component: {fileID: 716303645} - component: {fileID: 716303647} - component: {fileID: 716303646} + - component: {fileID: 716303649} + - component: {fileID: 716303648} m_Layer: 5 m_Name: Handle m_TagString: Untagged @@ -13632,6 +14074,66 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 716303644} m_CullTransparentMesh: 1 +--- !u!114 &716303648 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 716303644} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c6688c153c55b154ca47a1648262593f, type: 3} + m_Name: + m_EditorClassIdentifier: + inGameButton: 0 + source: {fileID: 601062271} + onEnter: {fileID: 8300000, guid: fabbca3853732004e90cc51e0bd1a073, type: 3} + onClick: {fileID: 8300000, guid: 0f0aa5bf462928d4e8132b6c0538e94d, type: 3} +--- !u!114 &716303649 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 716303644} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 0 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 1, g: 0, b: 0, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 1, g: 0, b: 0, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 716303646} + m_OnClick: + m_PersistentCalls: + m_Calls: [] --- !u!1 &721295829 GameObject: m_ObjectHideFlags: 0 @@ -14754,6 +15256,143 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 792149855} m_CullTransparentMesh: 1 +--- !u!1 &792995643 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 792995644} + - component: {fileID: 792995646} + - component: {fileID: 792995645} + m_Layer: 5 + m_Name: Class + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &792995644 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 792995643} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1313013937} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: -40, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &792995645 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 792995643} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: 'UI Volume:' + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 5539dcd8aadf6ad4cae050b2b75b8d63, type: 2} + m_sharedMaterial: {fileID: 7074268001582046166, guid: 5539dcd8aadf6ad4cae050b2b75b8d63, + type: 2} + m_fontSharedMaterials: + - {fileID: 7074268001582046166, guid: 5539dcd8aadf6ad4cae050b2b75b8d63, type: 2} + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 44.65 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 4 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 1 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &792995646 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 792995643} + m_CullTransparentMesh: 1 --- !u!1 &797748129 GameObject: m_ObjectHideFlags: 0 @@ -16259,6 +16898,7 @@ RectTransform: m_ConstrainProportionsScale: 0 m_Children: - {fileID: 1399971244} + - {fileID: 449846210} - {fileID: 395026504} - {fileID: 1434370598} m_Father: {fileID: 2113318434} @@ -16267,7 +16907,7 @@ RectTransform: m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 1, y: 1} m_AnchoredPosition: {x: 0, y: -135} - m_SizeDelta: {x: 0, y: 482.65} + m_SizeDelta: {x: 0, y: 590.18005} m_Pivot: {x: 0.5, y: 1} --- !u!114 &881458314 MonoBehaviour: @@ -16866,6 +17506,43 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 932681224} m_CullTransparentMesh: 1 +--- !u!1 &934327798 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 934327799} + m_Layer: 5 + m_Name: Handle Slide Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &934327799 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 934327798} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1279319724} + m_Father: {fileID: 1077637967} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: -20, y: 31.265} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &936334284 GameObject: m_ObjectHideFlags: 0 @@ -18766,6 +19443,8 @@ GameObject: - component: {fileID: 1031844895} - component: {fileID: 1031844894} - component: {fileID: 1031844893} + - component: {fileID: 1031844897} + - component: {fileID: 1031844896} m_Layer: 5 m_Name: Handle m_TagString: Untagged @@ -18844,6 +19523,66 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1031844891} m_CullTransparentMesh: 1 +--- !u!114 &1031844896 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1031844891} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c6688c153c55b154ca47a1648262593f, type: 3} + m_Name: + m_EditorClassIdentifier: + inGameButton: 0 + source: {fileID: 601062271} + onEnter: {fileID: 8300000, guid: fabbca3853732004e90cc51e0bd1a073, type: 3} + onClick: {fileID: 8300000, guid: 0f0aa5bf462928d4e8132b6c0538e94d, type: 3} +--- !u!114 &1031844897 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1031844891} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 0 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 1, g: 0, b: 0, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 1, g: 0, b: 0, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1031844894} + m_OnClick: + m_PersistentCalls: + m_Calls: [] --- !u!1 &1032629128 GameObject: m_ObjectHideFlags: 0 @@ -20079,6 +20818,99 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1077093642} m_CullTransparentMesh: 1 +--- !u!1 &1077637966 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1077637967} + - component: {fileID: 1077637970} + - component: {fileID: 1077637969} + - component: {fileID: 1077637968} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1077637967 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1077637966} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2114190504} + - {fileID: 1186166661} + - {fileID: 934327799} + m_Father: {fileID: 1544491530} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.25} + m_AnchorMax: {x: 1, y: 0.75} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1077637968 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1077637966} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ShowMaskGraphic: 1 +--- !u!114 &1077637969 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1077637966} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0.003921569} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: b8ea37140ea495e4ead127e6f1ca6c62, type: 3} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 6.63 +--- !u!222 &1077637970 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1077637966} + m_CullTransparentMesh: 1 --- !u!1 &1085781081 GameObject: m_ObjectHideFlags: 0 @@ -21781,6 +22613,7 @@ MonoBehaviour: m_EditorClassIdentifier: iniPath: Volume: {fileID: 1164788286} + UIVolume: {fileID: 1544491529} --- !u!1 &1166521083 GameObject: m_ObjectHideFlags: 0 @@ -22005,6 +22838,8 @@ GameObject: - component: {fileID: 1182678739} - component: {fileID: 1182678741} - component: {fileID: 1182678740} + - component: {fileID: 1182678743} + - component: {fileID: 1182678742} m_Layer: 5 m_Name: Handle m_TagString: Untagged @@ -22070,6 +22905,103 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1182678738} m_CullTransparentMesh: 1 +--- !u!114 &1182678742 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1182678738} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c6688c153c55b154ca47a1648262593f, type: 3} + m_Name: + m_EditorClassIdentifier: + inGameButton: 0 + source: {fileID: 601062271} + onEnter: {fileID: 8300000, guid: fabbca3853732004e90cc51e0bd1a073, type: 3} + onClick: {fileID: 8300000, guid: 0f0aa5bf462928d4e8132b6c0538e94d, type: 3} +--- !u!114 &1182678743 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1182678738} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 0 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 1, g: 0, b: 0, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 1, g: 0, b: 0, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1182678740} + m_OnClick: + m_PersistentCalls: + m_Calls: [] +--- !u!1 &1186166660 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1186166661} + m_Layer: 5 + m_Name: Fill Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1186166661 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1186166660} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1417180166} + m_Father: {fileID: 1077637967} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.25} + m_AnchorMax: {x: 1, y: 0.75} + m_AnchoredPosition: {x: -5, y: 0} + m_SizeDelta: {x: -20, y: 15.6325} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1188674307 GameObject: m_ObjectHideFlags: 0 @@ -22261,7 +23193,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: 'Volume:' + m_text: 'Music Volume:' m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: 5539dcd8aadf6ad4cae050b2b75b8d63, type: 2} m_sharedMaterial: {fileID: 7074268001582046166, guid: 5539dcd8aadf6ad4cae050b2b75b8d63, @@ -22580,6 +23512,7 @@ GameObject: - component: {fileID: 1215228800} - component: {fileID: 1215228799} - component: {fileID: 1215228798} + - component: {fileID: 1215228801} m_Layer: 5 m_Name: Left Button m_TagString: Untagged @@ -22701,6 +23634,22 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1215228796} m_CullTransparentMesh: 1 +--- !u!114 &1215228801 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1215228796} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c6688c153c55b154ca47a1648262593f, type: 3} + m_Name: + m_EditorClassIdentifier: + inGameButton: 0 + source: {fileID: 601062271} + onEnter: {fileID: 8300000, guid: fabbca3853732004e90cc51e0bd1a073, type: 3} + onClick: {fileID: 8300000, guid: 0f0aa5bf462928d4e8132b6c0538e94d, type: 3} --- !u!1 &1216764723 GameObject: m_ObjectHideFlags: 0 @@ -23825,6 +24774,158 @@ MonoBehaviour: m_ChildScaleWidth: 0 m_ChildScaleHeight: 0 m_ReverseArrangement: 0 +--- !u!1 &1279319723 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1279319724} + - component: {fileID: 1279319726} + - component: {fileID: 1279319727} + - component: {fileID: 1279319725} + - component: {fileID: 1279319729} + - component: {fileID: 1279319728} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1279319724 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1279319723} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 934327799} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 70, y: 20} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1279319725 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1279319723} + m_Enabled: 0 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ShowMaskGraphic: 1 +--- !u!222 &1279319726 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1279319723} + m_CullTransparentMesh: 1 +--- !u!114 &1279319727 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1279319723} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 67540dd363d34924ba5dc8df44d27cc1, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &1279319728 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1279319723} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c6688c153c55b154ca47a1648262593f, type: 3} + m_Name: + m_EditorClassIdentifier: + inGameButton: 0 + source: {fileID: 601062271} + onEnter: {fileID: 8300000, guid: fabbca3853732004e90cc51e0bd1a073, type: 3} + onClick: {fileID: 8300000, guid: 0f0aa5bf462928d4e8132b6c0538e94d, type: 3} +--- !u!114 &1279319729 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1279319723} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 0 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 1, g: 0, b: 0, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 1, g: 0, b: 0, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1279319727} + m_OnClick: + m_PersistentCalls: + m_Calls: [] --- !u!1 &1282807465 GameObject: m_ObjectHideFlags: 0 @@ -24276,6 +25377,83 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1290225392} m_CullTransparentMesh: 1 +--- !u!1 &1313013936 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1313013937} + - component: {fileID: 1313013939} + - component: {fileID: 1313013938} + m_Layer: 5 + m_Name: Class Container + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1313013937 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1313013936} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 792995644} + m_Father: {fileID: 346266514} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 184.19809, y: -31.265} + m_SizeDelta: {x: 368.39618, y: 62.53} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1313013938 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1313013936} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1313013939 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1313013936} + m_CullTransparentMesh: 1 --- !u!1 &1314330680 GameObject: m_ObjectHideFlags: 0 @@ -25969,6 +27147,82 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1412912968} m_CullTransparentMesh: 1 +--- !u!1 &1417180165 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1417180166} + - component: {fileID: 1417180168} + - component: {fileID: 1417180167} + m_Layer: 5 + m_Name: Fill + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1417180166 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1417180165} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1186166661} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 10, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1417180167 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1417180165} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0.39215687} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 37ca5b92906dcc14a8e63015bc575e28, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1417180168 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1417180165} + m_CullTransparentMesh: 1 --- !u!1 &1418403475 GameObject: m_ObjectHideFlags: 0 @@ -26786,6 +28040,103 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1433867842} m_CullTransparentMesh: 1 +--- !u!1 &1434041141 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1434041142} + - component: {fileID: 1434041145} + - component: {fileID: 1434041144} + - component: {fileID: 1434041143} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1434041142 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1434041141} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 346266514} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1434041143 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1434041141} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &1434041144 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1434041141} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0.39215687} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 3698d76f9da5da44c9d73aaa44f36ced, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1434041145 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1434041141} + m_CullTransparentMesh: 1 --- !u!1 &1434370597 GameObject: m_ObjectHideFlags: 0 @@ -26822,11 +28173,11 @@ RectTransform: - {fileID: 1139070567} - {fileID: 993336676} m_Father: {fileID: 881458313} - m_RootOrder: 2 + m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} - m_AnchoredPosition: {x: 388.39618, y: -436.385} + m_AnchoredPosition: {x: 388.39618, y: -543.91504} m_SizeDelta: {x: 756.79236, y: 62.53} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &1434370599 @@ -29235,6 +30586,119 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1537305987} m_CullTransparentMesh: 1 +--- !u!1 &1544491528 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1544491530} + - component: {fileID: 1544491529} + m_Layer: 5 + m_Name: Slider + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!114 &1544491529 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1544491528} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 67db9e8f0e2ae9c40bc1e2b64352a6b4, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 1279319727} + m_FillRect: {fileID: 1417180166} + m_HandleRect: {fileID: 1279319724} + m_Direction: 0 + m_MinValue: 0 + m_MaxValue: 1 + m_WholeNumbers: 0 + m_Value: 1 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 601062271} + m_TargetAssemblyTypeName: UnityEngine.AudioSource, UnityEngine + m_MethodName: set_volume + m_Mode: 0 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 + - m_Target: {fileID: 1164788287} + m_TargetAssemblyTypeName: CharacterCreationVolume, Assembly-CSharp + m_MethodName: SaveUIVolume + m_Mode: 1 + m_Arguments: + m_ObjectArgument: {fileID: 0} + m_ObjectArgumentAssemblyTypeName: UnityEngine.Object, UnityEngine + m_IntArgument: 0 + m_FloatArgument: 0 + m_StringArgument: + m_BoolArgument: 0 + m_CallState: 2 +--- !u!224 &1544491530 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1544491528} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1077637967} + m_Father: {fileID: 1922458043} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: -10, y: 0} + m_SizeDelta: {x: -20, y: 0} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1545303474 GameObject: m_ObjectHideFlags: 0 @@ -29961,7 +31425,7 @@ GameObject: - component: {fileID: 1588434479} - component: {fileID: 1588434478} m_Layer: 0 - m_Name: Audio Source + m_Name: Music Source m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 @@ -36159,6 +37623,83 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_ShowMaskGraphic: 1 +--- !u!1 &1922458042 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1922458043} + - component: {fileID: 1922458045} + - component: {fileID: 1922458044} + m_Layer: 5 + m_Name: Class Settings Container + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1922458043 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1922458042} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1544491530} + m_Father: {fileID: 346266514} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 552.59424, y: -31.265} + m_SizeDelta: {x: 368.39618, y: 62.53} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1922458044 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1922458042} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1922458045 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1922458042} + m_CullTransparentMesh: 1 --- !u!1 &1927581608 GameObject: m_ObjectHideFlags: 0 @@ -38840,6 +40381,8 @@ GameObject: - component: {fileID: 2063700761} - component: {fileID: 2063700760} - component: {fileID: 2063700759} + - component: {fileID: 2063700763} + - component: {fileID: 2063700762} m_Layer: 5 m_Name: Handle m_TagString: Untagged @@ -38918,6 +40461,66 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2063700757} m_CullTransparentMesh: 1 +--- !u!114 &2063700762 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2063700757} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c6688c153c55b154ca47a1648262593f, type: 3} + m_Name: + m_EditorClassIdentifier: + inGameButton: 0 + source: {fileID: 601062271} + onEnter: {fileID: 8300000, guid: fabbca3853732004e90cc51e0bd1a073, type: 3} + onClick: {fileID: 8300000, guid: 0f0aa5bf462928d4e8132b6c0538e94d, type: 3} +--- !u!114 &2063700763 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2063700757} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 0 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 1, g: 0, b: 0, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 1, g: 0, b: 0, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 2063700760} + m_OnClick: + m_PersistentCalls: + m_Calls: [] --- !u!1 &2069335102 GameObject: m_ObjectHideFlags: 0 @@ -39267,6 +40870,7 @@ GameObject: - component: {fileID: 2105821841} - component: {fileID: 2105821840} - component: {fileID: 2105821839} + - component: {fileID: 2105821843} m_Layer: 5 m_Name: RightButton m_TagString: Untagged @@ -39388,6 +40992,22 @@ RectTransform: m_AnchoredPosition: {x: 311.5418, y: -47.265} m_SizeDelta: {x: 60, y: 60} m_Pivot: {x: 0, y: 0.4} +--- !u!114 &2105821843 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2105821838} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: c6688c153c55b154ca47a1648262593f, type: 3} + m_Name: + m_EditorClassIdentifier: + inGameButton: 0 + source: {fileID: 601062271} + onEnter: {fileID: 8300000, guid: fabbca3853732004e90cc51e0bd1a073, type: 3} + onClick: {fileID: 8300000, guid: 0f0aa5bf462928d4e8132b6c0538e94d, type: 3} --- !u!1 &2110893136 GameObject: m_ObjectHideFlags: 0 @@ -39832,6 +41452,82 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 2113318433} m_CullTransparentMesh: 1 +--- !u!1 &2114190503 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2114190504} + - component: {fileID: 2114190506} + - component: {fileID: 2114190505} + m_Layer: 5 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2114190504 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2114190503} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1077637967} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2114190505 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2114190503} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: dce8fc58955d7584c80f260fb867bc3e, type: 3} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 6.63 +--- !u!222 &2114190506 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2114190503} + m_CullTransparentMesh: 1 --- !u!1 &2114247467 GameObject: m_ObjectHideFlags: 0 diff --git a/Assets/RPG Creation Kit/Demos/MainMenu/_MainMenu_.unity b/Assets/RPG Creation Kit/Demos/MainMenu/_MainMenu_.unity index 36ee4fb124..47214ca34a 100644 --- a/Assets/RPG Creation Kit/Demos/MainMenu/_MainMenu_.unity +++ b/Assets/RPG Creation Kit/Demos/MainMenu/_MainMenu_.unity @@ -3848,6 +3848,7 @@ RectTransform: - {fileID: 472901779} - {fileID: 1532501787} - {fileID: 288936958} + - {fileID: 1276355425} m_Father: {fileID: 0} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -3873,7 +3874,8 @@ MonoBehaviour: mainMenuButtons: {fileID: 2032627136} defaultSelected: {fileID: 2061300633} previouslySelected: {fileID: 0} - ModManager: {fileID: 0} + LoginControls: {fileID: 288936957} + Loading: {fileID: 1276355422} --- !u!114 &537270063 MonoBehaviour: m_ObjectHideFlags: 0 @@ -4356,6 +4358,18 @@ MonoBehaviour: m_Calls: [] m_ActionId: ff69685d-be30-473e-a7fc-d1061f2d46f2 m_ActionName: LargeMapMenu/Screenshot[/Keyboard/printScreen] + - m_PersistentCalls: + m_Calls: [] + m_ActionId: f18e2cab-9341-4166-9742-4bdd5d7b2af9 + m_ActionName: LockpickingUI/Move[/Keyboard/a,/Keyboard/leftArrow,/Keyboard/d,/Keyboard/rightArrow] + - m_PersistentCalls: + m_Calls: [] + m_ActionId: 65e5be11-1a40-4c20-ab82-60ab7d1d91c2 + m_ActionName: LockpickingUI/Attempt[/Keyboard/space] + - m_PersistentCalls: + m_Calls: [] + m_ActionId: 599d6e67-d37e-4d16-9e3e-b302fe24bef7 + m_ActionName: LockpickingUI/Close[/Keyboard/escape,/Keyboard/tab] m_NeverAutoSwitchControlSchemes: 0 m_DefaultControlScheme: Keyboard&Mouse m_DefaultActionMap: MainMenu @@ -6010,6 +6024,95 @@ MonoBehaviour: m_OnClick: m_PersistentCalls: m_Calls: [] +--- !u!114 &757379707 stripped +MonoBehaviour: + m_CorrespondingSourceObject: {fileID: 8255021694223257419, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + m_PrefabInstance: {fileID: 9039333447060869054} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 67db9e8f0e2ae9c40bc1e2b64352a6b4, type: 3} + m_Name: + m_EditorClassIdentifier: +--- !u!1 &780251329 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 780251330} + - component: {fileID: 780251332} + - component: {fileID: 780251331} + m_Layer: 5 + m_Name: Container + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &780251330 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 780251329} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 2098146518} + m_Father: {fileID: 1276355425} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 0} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 200} + m_Pivot: {x: 0.5, y: 0} +--- !u!114 &780251331 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 780251329} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &780251332 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 780251329} + m_CullTransparentMesh: 1 --- !u!1 &821853614 GameObject: m_ObjectHideFlags: 0 @@ -6894,7 +6997,7 @@ MonoBehaviour: uiSounds: {fileID: 1035811739} generalSounds: {fileID: 0} Ambience: {fileID: 0} - Music: {fileID: 0} + Music: {fileID: 1187025069} CurrentMusic: {fileID: 0} --- !u!1 &1082344916 GameObject: @@ -7868,9 +7971,6 @@ MonoBehaviour: Month: 0 Day: 0 TimeOfDay: 0 - Density: 0 - Exposure: 0 - Stars: 0 QuestData: currentActiveQuestID: allActiveQuests: @@ -8615,6 +8715,83 @@ CanvasRenderer: m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1268572136} m_CullTransparentMesh: 1 +--- !u!1 &1276355422 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1276355425} + - component: {fileID: 1276355424} + - component: {fileID: 1276355423} + m_Layer: 5 + m_Name: Loading + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 0 +--- !u!114 &1276355423 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1276355422} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0.78431374} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!222 &1276355424 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1276355422} + m_CullTransparentMesh: 1 +--- !u!224 &1276355425 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1276355422} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 780251330} + m_Father: {fileID: 537270061} + m_RootOrder: 11 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &1288873725 GameObject: m_ObjectHideFlags: 0 @@ -10901,11 +11078,13 @@ MonoBehaviour: iniPath: ScreenshotRes: {fileID: 1632177565} MusicVolume: {fileID: 226331288} + UIVolume: {fileID: 757379707} ScreenshotExtension: - {fileID: 2058102694} - {fileID: 1773205450} - {fileID: 1439513068} - {fileID: 223574325} + InitializeSettings: 0 --- !u!1 &1593506317 GameObject: m_ObjectHideFlags: 0 @@ -12992,7 +13171,7 @@ RectTransform: m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 0} m_AnchorMax: {x: 0, y: 0} - m_AnchoredPosition: {x: 0, y: 0} + m_AnchoredPosition: {x: 110, y: 0} m_SizeDelta: {x: 0, y: 80} m_Pivot: {x: 0, y: 0.5} --- !u!114 &1797451317 @@ -15983,6 +16162,142 @@ MonoBehaviour: m_OnClick: m_PersistentCalls: m_Calls: [] +--- !u!1 &2098146517 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 2098146518} + - component: {fileID: 2098146520} + - component: {fileID: 2098146519} + m_Layer: 5 + m_Name: Text (TMP) + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &2098146518 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2098146517} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 780251330} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0.5, y: 0.5} + m_AnchorMax: {x: 0.5, y: 0.5} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 500, y: 100} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &2098146519 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2098146517} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: Loading... + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 7aa4b39d27218ba49b38d452c35937e0, type: 2} + m_sharedMaterial: {fileID: 8857727315402904801, guid: 7aa4b39d27218ba49b38d452c35937e0, + type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 72 + m_fontSizeBase: 36 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 2 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 0 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!222 &2098146520 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 2098146517} + m_CullTransparentMesh: 1 --- !u!1 &2101378386 GameObject: m_ObjectHideFlags: 0 @@ -18051,7 +18366,7 @@ PrefabInstance: - target: {fileID: 231110799147351618, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_SizeDelta.x - value: 0 + value: 272.5 objectReference: {fileID: 0} - target: {fileID: 231110799147351618, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} @@ -18061,13 +18376,43 @@ PrefabInstance: - target: {fileID: 231110799147351618, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchoredPosition.x - value: 0 + value: 701.25 objectReference: {fileID: 0} - target: {fileID: 231110799147351618, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 492901287204442290, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 492901287204442290, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 492901287204442290, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 196.875 + objectReference: {fileID: 0} + - target: {fileID: 492901287204442290, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 492901287204442290, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 512.1875 + objectReference: {fileID: 0} + - target: {fileID: 492901287204442290, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 594131303220670012, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchorMax.y @@ -18081,7 +18426,7 @@ PrefabInstance: - target: {fileID: 594131303220670012, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_SizeDelta.x - value: 0 + value: 272.5 objectReference: {fileID: 0} - target: {fileID: 594131303220670012, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} @@ -18091,13 +18436,103 @@ PrefabInstance: - target: {fileID: 594131303220670012, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchoredPosition.x - value: 0 + value: 423.75 objectReference: {fileID: 0} - target: {fileID: 594131303220670012, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 788307606160144851, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 788307606160144851, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 788307606160144851, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 825 + objectReference: {fileID: 0} + - target: {fileID: 788307606160144851, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 788307606160144851, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 412.5 + objectReference: {fileID: 0} + - target: {fileID: 788307606160144851, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 798811495405622838, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 798811495405622838, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 798811495405622838, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 692.725 + objectReference: {fileID: 0} + - target: {fileID: 798811495405622838, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 798811495405622838, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 822769645110797677, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 822769645110797677, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 893460554823030713, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 893460554823030713, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 893460554823030713, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 1650 + objectReference: {fileID: 0} + - target: {fileID: 893460554823030713, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 835 + objectReference: {fileID: 0} + - target: {fileID: 893460554823030713, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -172.5 + objectReference: {fileID: 0} - target: {fileID: 893460554970765889, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchoredPosition.y @@ -18116,7 +18551,7 @@ PrefabInstance: - target: {fileID: 893460555035252336, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_SizeDelta.x - value: 0 + value: 785 objectReference: {fileID: 0} - target: {fileID: 893460555035252336, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} @@ -18126,7 +18561,7 @@ PrefabInstance: - target: {fileID: 893460555035252336, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchoredPosition.x - value: 0 + value: 1257.5 objectReference: {fileID: 0} - target: {fileID: 893460555035252336, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} @@ -18146,12 +18581,12 @@ PrefabInstance: - target: {fileID: 893460555066902794, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_SizeDelta.x - value: 0 + value: 1650 objectReference: {fileID: 0} - target: {fileID: 893460555066902794, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchoredPosition.x - value: 0 + value: 835 objectReference: {fileID: 0} - target: {fileID: 893460555066902794, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} @@ -18163,6 +18598,16 @@ PrefabInstance: propertyPath: m_IsActive value: 0 objectReference: {fileID: 0} + - target: {fileID: 893460555414770638, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_IsActive + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 893460555414770639, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 195 + objectReference: {fileID: 0} - target: {fileID: 893460555441221522, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchorMax.y @@ -18176,18 +18621,43 @@ PrefabInstance: - target: {fileID: 893460555441221522, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_SizeDelta.x - value: 0 + value: 1650 objectReference: {fileID: 0} - target: {fileID: 893460555441221522, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchoredPosition.x - value: 0 + value: 835 objectReference: {fileID: 0} - target: {fileID: 893460555441221522, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 893460556015095396, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 893460556015095396, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 893460556015095396, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 1650 + objectReference: {fileID: 0} + - target: {fileID: 893460556015095396, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 835 + objectReference: {fileID: 0} + - target: {fileID: 893460556015095396, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 893460556039438379, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchoredPosition.x @@ -18206,12 +18676,12 @@ PrefabInstance: - target: {fileID: 893460556120581669, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_SizeDelta.x - value: 0 + value: 1650 objectReference: {fileID: 0} - target: {fileID: 893460556120581669, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchoredPosition.x - value: 0 + value: 835 objectReference: {fileID: 0} - target: {fileID: 893460556120581669, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} @@ -18221,7 +18691,7 @@ PrefabInstance: - target: {fileID: 893460556169464598, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_SizeDelta.x - value: 0 + value: -1452 objectReference: {fileID: 0} - target: {fileID: 893460556297113690, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} @@ -18276,7 +18746,7 @@ PrefabInstance: - target: {fileID: 893460556297113767, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_SizeDelta.x - value: 0 + value: 785 objectReference: {fileID: 0} - target: {fileID: 893460556297113767, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} @@ -18286,7 +18756,7 @@ PrefabInstance: - target: {fileID: 893460556297113767, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchoredPosition.x - value: 0 + value: 442.5 objectReference: {fileID: 0} - target: {fileID: 893460556297113767, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} @@ -18311,18 +18781,48 @@ PrefabInstance: - target: {fileID: 893460556559393345, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_SizeDelta.x - value: 0 + value: 1650 objectReference: {fileID: 0} - target: {fileID: 893460556559393345, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchoredPosition.x - value: 0 + value: 835 objectReference: {fileID: 0} - target: {fileID: 893460556559393345, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 893460556618951602, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 893460556618951602, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 893460556618951602, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 1650 + objectReference: {fileID: 0} + - target: {fileID: 893460556618951602, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 835 + objectReference: {fileID: 0} + - target: {fileID: 893460556618951602, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -82.5 + objectReference: {fileID: 0} + - target: {fileID: 893460556711011525, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_IsActive + value: 1 + objectReference: {fileID: 0} - target: {fileID: 893460556711011526, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_SizeDelta.y @@ -18341,7 +18841,7 @@ PrefabInstance: - target: {fileID: 1096586372106674380, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_SizeDelta.x - value: 0 + value: 815 objectReference: {fileID: 0} - target: {fileID: 1096586372106674380, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} @@ -18351,13 +18851,43 @@ PrefabInstance: - target: {fileID: 1096586372106674380, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchoredPosition.x - value: 0 + value: 1232.5 objectReference: {fileID: 0} - target: {fileID: 1096586372106674380, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 1228379503093881222, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1228379503093881222, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1228379503093881222, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 531.82 + objectReference: {fileID: 0} + - target: {fileID: 1228379503093881222, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1228379503093881222, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 285.91 + objectReference: {fileID: 0} + - target: {fileID: 1228379503093881222, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 1256689683898341970, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.size @@ -18406,7 +18936,7 @@ PrefabInstance: - target: {fileID: 1283891891955734333, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_SizeDelta.x - value: 0 + value: 815 objectReference: {fileID: 0} - target: {fileID: 1283891891955734333, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} @@ -18416,13 +18946,133 @@ PrefabInstance: - target: {fileID: 1283891891955734333, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchoredPosition.x - value: 0 + value: 1232.5 objectReference: {fileID: 0} - target: {fileID: 1283891891955734333, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 1351509983236052817, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1351509983236052817, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1351509983236052817, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 196.875 + objectReference: {fileID: 0} + - target: {fileID: 1351509983236052817, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1351509983236052817, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 98.4375 + objectReference: {fileID: 0} + - target: {fileID: 1351509983236052817, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1499625489794235083, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1499625489794235083, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1499625489794235083, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 328.49 + objectReference: {fileID: 0} + - target: {fileID: 1499625489794235083, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1499625489794235083, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 476.51 + objectReference: {fileID: 0} + - target: {fileID: 1499625489794235083, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1499625490068910844, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1499625490068910844, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1499625490068910844, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1499625490184285286, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1499625490184285286, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1499625490184285286, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 265.345 + objectReference: {fileID: 0} + - target: {fileID: 1499625490184285286, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1499625490184285286, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 539.655 + objectReference: {fileID: 0} + - target: {fileID: 1499625490184285286, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1499625490201408629, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1499625490201408629, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1499625490201408629, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} - target: {fileID: 1499625490286256113, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchorMax.y @@ -18498,6 +19148,56 @@ PrefabInstance: propertyPath: m_OnValueChanged.m_PersistentCalls.m_Calls.Array.data[1].m_Arguments.m_ObjectArgumentAssemblyTypeName value: UnityEngine.Object, UnityEngine objectReference: {fileID: 0} + - target: {fileID: 1499625490435654784, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1499625490435654784, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1499625490641033944, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1499625490641033944, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1499625490794246557, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1499625490794246557, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1499625490794246557, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 456.51 + objectReference: {fileID: 0} + - target: {fileID: 1499625490794246557, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1499625490794246557, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 248.255 + objectReference: {fileID: 0} + - target: {fileID: 1499625490794246557, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 1499625491165227824, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchorMax.y @@ -18528,6 +19228,61 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 1499625491786876382, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1499625491786876382, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1499625491786876382, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 519.655 + objectReference: {fileID: 0} + - target: {fileID: 1499625491786876382, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 1499625491786876382, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 279.8275 + objectReference: {fileID: 0} + - target: {fileID: 1499625491786876382, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2580849950583203742, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2580849950583203742, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2580849950583203742, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 1650 + objectReference: {fileID: 0} + - target: {fileID: 2580849950583203742, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 835 + objectReference: {fileID: 0} + - target: {fileID: 2580849950583203742, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 2657895489928440584, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchorMax.y @@ -18553,6 +19308,66 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 2694840876099639780, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2694840876099639780, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2694840876099639780, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 272.5 + objectReference: {fileID: 0} + - target: {fileID: 2694840876099639780, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 2694840876099639780, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 1256.25 + objectReference: {fileID: 0} + - target: {fileID: 2694840876099639780, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3091319614845978273, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3091319614845978273, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3091319614845978273, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 825 + objectReference: {fileID: 0} + - target: {fileID: 3091319614845978273, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3091319614845978273, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 1237.5 + objectReference: {fileID: 0} + - target: {fileID: 3091319614845978273, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 3401929714214431710, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchorMax.y @@ -18566,7 +19381,7 @@ PrefabInstance: - target: {fileID: 3401929714214431710, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_SizeDelta.x - value: 0 + value: 815 objectReference: {fileID: 0} - target: {fileID: 3401929714214431710, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} @@ -18576,7 +19391,7 @@ PrefabInstance: - target: {fileID: 3401929714214431710, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchoredPosition.x - value: 0 + value: 417.5 objectReference: {fileID: 0} - target: {fileID: 3401929714214431710, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} @@ -18693,6 +19508,56 @@ PrefabInstance: propertyPath: m_Name value: SettingsPanel objectReference: {fileID: 0} + - target: {fileID: 3773597865546073448, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3773597865546073448, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 3773597865546073448, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4070539739190555734, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4070539739190555734, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4070539739190555734, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 102.274994 + objectReference: {fileID: 0} + - target: {fileID: 4070539739190555734, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4070539739190555734, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 692.725 + objectReference: {fileID: 0} + - target: {fileID: 4070539739190555734, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4206268928150259460, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 4238249641202695363, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchorMax.y @@ -18718,6 +19583,41 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 4295184075200415360, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4295184075200415360, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4295184075200415360, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 825 + objectReference: {fileID: 0} + - target: {fileID: 4295184075200415360, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4295184075200415360, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 412.5 + objectReference: {fileID: 0} + - target: {fileID: 4295184075200415360, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4494341681756416145, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 4531457271609395327, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchorMax.y @@ -18731,7 +19631,7 @@ PrefabInstance: - target: {fileID: 4531457271609395327, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_SizeDelta.x - value: 0 + value: 815 objectReference: {fileID: 0} - target: {fileID: 4531457271609395327, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} @@ -18741,13 +19641,133 @@ PrefabInstance: - target: {fileID: 4531457271609395327, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchoredPosition.x - value: 0 + value: 417.5 objectReference: {fileID: 0} - target: {fileID: 4531457271609395327, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 4581383394273820893, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4581383394273820893, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4581383394273820893, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 272.5 + objectReference: {fileID: 0} + - target: {fileID: 4581383394273820893, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4581383394273820893, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 1533.75 + objectReference: {fileID: 0} + - target: {fileID: 4581383394273820893, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4583625056488503922, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4583625056488503922, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4583625056488503922, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 825 + objectReference: {fileID: 0} + - target: {fileID: 4583625056488503922, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4583625056488503922, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 412.5 + objectReference: {fileID: 0} + - target: {fileID: 4583625056488503922, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4915033024819294017, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4915033024819294017, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4915033024819294017, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 825 + objectReference: {fileID: 0} + - target: {fileID: 4915033024819294017, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 4915033024819294017, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 1237.5 + objectReference: {fileID: 0} + - target: {fileID: 4915033024819294017, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5023055808816882314, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5023055808816882314, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5023055808816882314, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 196.875 + objectReference: {fileID: 0} + - target: {fileID: 5023055808816882314, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5023055808816882314, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 305.3125 + objectReference: {fileID: 0} + - target: {fileID: 5023055808816882314, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 5166612773319505006, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchorMax.x @@ -18758,6 +19778,66 @@ PrefabInstance: propertyPath: m_AnchorMax.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 5406175748048415685, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5406175748048415685, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5406175748048415685, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 253.18002 + objectReference: {fileID: 0} + - target: {fileID: 5406175748048415685, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5406175748048415685, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 551.82 + objectReference: {fileID: 0} + - target: {fileID: 5406175748048415685, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5512744561855562426, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5512744561855562426, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5512744561855562426, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 815 + objectReference: {fileID: 0} + - target: {fileID: 5512744561855562426, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5512744561855562426, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 417.5 + objectReference: {fileID: 0} + - target: {fileID: 5512744561855562426, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 5583463906949148997, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchorMax.y @@ -18771,7 +19851,7 @@ PrefabInstance: - target: {fileID: 5583463906949148997, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_SizeDelta.x - value: 0 + value: 815 objectReference: {fileID: 0} - target: {fileID: 5583463906949148997, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} @@ -18781,7 +19861,7 @@ PrefabInstance: - target: {fileID: 5583463906949148997, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchoredPosition.x - value: 0 + value: 417.5 objectReference: {fileID: 0} - target: {fileID: 5583463906949148997, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} @@ -18793,6 +19873,36 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: -52.149902 objectReference: {fileID: 0} + - target: {fileID: 5951967385713337641, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5951967385713337641, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5951967385713337641, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 825 + objectReference: {fileID: 0} + - target: {fileID: 5951967385713337641, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 5951967385713337641, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 1237.5 + objectReference: {fileID: 0} + - target: {fileID: 5951967385713337641, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 6170651086616461368, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.size @@ -18833,6 +19943,36 @@ PrefabInstance: propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgumentAssemblyTypeName value: UnityEngine.Object, UnityEngine objectReference: {fileID: 0} + - target: {fileID: 6255179989437894654, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6255179989437894654, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6255179989437894654, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 817.5 + objectReference: {fileID: 0} + - target: {fileID: 6255179989437894654, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6255179989437894654, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 418.75 + objectReference: {fileID: 0} + - target: {fileID: 6255179989437894654, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 6343123945442205262, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchorMax.y @@ -18846,7 +19986,7 @@ PrefabInstance: - target: {fileID: 6343123945442205262, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_SizeDelta.x - value: 0 + value: 815 objectReference: {fileID: 0} - target: {fileID: 6343123945442205262, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} @@ -18856,13 +19996,38 @@ PrefabInstance: - target: {fileID: 6343123945442205262, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchoredPosition.x - value: 0 + value: 417.5 objectReference: {fileID: 0} - target: {fileID: 6343123945442205262, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 6379527071503878108, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6379527071503878108, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 6379527071503878108, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 1650 + objectReference: {fileID: 0} + - target: {fileID: 6379527071503878108, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 835 + objectReference: {fileID: 0} + - target: {fileID: 6379527071503878108, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -52.5 + objectReference: {fileID: 0} - target: {fileID: 6544620607685902389, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchorMax.y @@ -18946,7 +20111,7 @@ PrefabInstance: - target: {fileID: 6783940665110437184, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_SizeDelta.x - value: 0 + value: 815 objectReference: {fileID: 0} - target: {fileID: 6783940665110437184, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} @@ -18956,13 +20121,103 @@ PrefabInstance: - target: {fileID: 6783940665110437184, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchoredPosition.x - value: 0 + value: 1232.5 objectReference: {fileID: 0} - target: {fileID: 6783940665110437184, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 7001505156179407072, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7001505156179407072, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7001505156179407072, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 825 + objectReference: {fileID: 0} + - target: {fileID: 7001505156179407072, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7001505156179407072, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 412.5 + objectReference: {fileID: 0} + - target: {fileID: 7001505156179407072, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7092671741008635789, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7092671741008635789, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7092671741008635789, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 825 + objectReference: {fileID: 0} + - target: {fileID: 7092671741008635789, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7092671741008635789, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 1237.5 + objectReference: {fileID: 0} + - target: {fileID: 7092671741008635789, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7357408248281403981, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7357408248281403981, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7357408248281403981, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 825 + objectReference: {fileID: 0} + - target: {fileID: 7357408248281403981, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7357408248281403981, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 1237.5 + objectReference: {fileID: 0} + - target: {fileID: 7357408248281403981, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 7444468951759407333, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchorMax.y @@ -18976,7 +20231,7 @@ PrefabInstance: - target: {fileID: 7444468951759407333, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_SizeDelta.x - value: 0 + value: 272.5 objectReference: {fileID: 0} - target: {fileID: 7444468951759407333, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} @@ -18986,13 +20241,63 @@ PrefabInstance: - target: {fileID: 7444468951759407333, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchoredPosition.x - value: 0 + value: 978.75 objectReference: {fileID: 0} - target: {fileID: 7444468951759407333, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 7619409493676772028, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7619409493676772028, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7619409493676772028, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 1650 + objectReference: {fileID: 0} + - target: {fileID: 7619409493676772028, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 835 + objectReference: {fileID: 0} + - target: {fileID: 7619409493676772028, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -112.5 + objectReference: {fileID: 0} + - target: {fileID: 7619409494911962040, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7619409494911962040, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7619409494911962040, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 1650 + objectReference: {fileID: 0} + - target: {fileID: 7619409494911962040, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 835 + objectReference: {fileID: 0} + - target: {fileID: 7619409494911962040, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: -142.5 + objectReference: {fileID: 0} - target: {fileID: 7619409494924594764, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchorMax.y @@ -19018,6 +20323,96 @@ PrefabInstance: propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 7632503804762737605, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7632503804762737605, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7632503804762737605, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 825 + objectReference: {fileID: 0} + - target: {fileID: 7632503804762737605, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7632503804762737605, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 1237.5 + objectReference: {fileID: 0} + - target: {fileID: 7632503804762737605, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7663521907690313610, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7663521907690313610, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7663521907690313610, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 817.5 + objectReference: {fileID: 0} + - target: {fileID: 7663521907690313610, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7663521907690313610, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 1236.25 + objectReference: {fileID: 0} + - target: {fileID: 7663521907690313610, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7676348636234389451, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7676348636234389451, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7676348636234389451, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 825 + objectReference: {fileID: 0} + - target: {fileID: 7676348636234389451, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 7676348636234389451, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 412.5 + objectReference: {fileID: 0} + - target: {fileID: 7676348636234389451, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 8086902399819607915, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchorMax.y @@ -19031,7 +20426,7 @@ PrefabInstance: - target: {fileID: 8086902399819607915, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_SizeDelta.x - value: 0 + value: 815 objectReference: {fileID: 0} - target: {fileID: 8086902399819607915, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} @@ -19041,13 +20436,418 @@ PrefabInstance: - target: {fileID: 8086902399819607915, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchoredPosition.x - value: 0 + value: 1232.5 objectReference: {fileID: 0} - target: {fileID: 8086902399819607915, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchoredPosition.y value: 0 objectReference: {fileID: 0} + - target: {fileID: 8148168706429512791, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168706429512791, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168706429512791, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 307.39502 + objectReference: {fileID: 0} + - target: {fileID: 8148168706429512791, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168706429512791, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 497.60498 + objectReference: {fileID: 0} + - target: {fileID: 8148168706429512791, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168706450765851, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168706450765851, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168706450765851, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 650.61 + objectReference: {fileID: 0} + - target: {fileID: 8148168706450765851, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168706450765851, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 345.305 + objectReference: {fileID: 0} + - target: {fileID: 8148168706450765851, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168706532941418, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168706532941418, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168706532941418, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168706612792638, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168706612792638, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168707256549528, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168707256549528, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168707256549528, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 134.38998 + objectReference: {fileID: 0} + - target: {fileID: 8148168707256549528, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168707256549528, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 670.61 + objectReference: {fileID: 0} + - target: {fileID: 8148168707256549528, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168707401572965, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168707401572965, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168707773559547, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168707773559547, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168707773559547, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 312.68 + objectReference: {fileID: 0} + - target: {fileID: 8148168707773559547, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168707773559547, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 492.32 + objectReference: {fileID: 0} + - target: {fileID: 8148168707773559547, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168707860461734, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168707860461734, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168707860461734, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 477.60498 + objectReference: {fileID: 0} + - target: {fileID: 8148168707860461734, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168707860461734, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 258.8025 + objectReference: {fileID: 0} + - target: {fileID: 8148168707860461734, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168708150771802, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168708150771802, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168708150771802, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 472.32 + objectReference: {fileID: 0} + - target: {fileID: 8148168708150771802, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168708150771802, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 256.16 + objectReference: {fileID: 0} + - target: {fileID: 8148168708150771802, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168708167243018, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168708167243018, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168708167243018, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168708362908214, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168708362908214, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168708388899111, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168708388899111, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8148168708388899111, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8184900186618131361, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8184900186618131361, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8184900186618131361, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 1650 + objectReference: {fileID: 0} + - target: {fileID: 8184900186618131361, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 835 + objectReference: {fileID: 0} + - target: {fileID: 8184900186618131361, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8255021694223257419, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_OnValueChanged.m_PersistentCalls.m_Calls.Array.size + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 8255021694223257419, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_OnValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_Mode + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8255021694223257419, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_OnValueChanged.m_PersistentCalls.m_Calls.Array.data[1].m_Mode + value: 1 + objectReference: {fileID: 0} + - target: {fileID: 8255021694223257419, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_OnValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_Target + value: + objectReference: {fileID: 1035811739} + - target: {fileID: 8255021694223257419, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_OnValueChanged.m_PersistentCalls.m_Calls.Array.data[1].m_Target + value: + objectReference: {fileID: 1532501788} + - target: {fileID: 8255021694223257419, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_OnValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_CallState + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 8255021694223257419, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_OnValueChanged.m_PersistentCalls.m_Calls.Array.data[1].m_CallState + value: 2 + objectReference: {fileID: 0} + - target: {fileID: 8255021694223257419, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_OnValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_MethodName + value: set_volume + objectReference: {fileID: 0} + - target: {fileID: 8255021694223257419, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_OnValueChanged.m_PersistentCalls.m_Calls.Array.data[1].m_MethodName + value: SetUIVolume + objectReference: {fileID: 0} + - target: {fileID: 8255021694223257419, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_OnValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_TargetAssemblyTypeName + value: UnityEngine.AudioSource, UnityEngine + objectReference: {fileID: 0} + - target: {fileID: 8255021694223257419, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_OnValueChanged.m_PersistentCalls.m_Calls.Array.data[1].m_TargetAssemblyTypeName + value: INIReader, Assembly-CSharp + objectReference: {fileID: 0} + - target: {fileID: 8255021694223257419, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_OnValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgumentAssemblyTypeName + value: UnityEngine.Object, UnityEngine + objectReference: {fileID: 0} + - target: {fileID: 8255021694223257419, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_OnValueChanged.m_PersistentCalls.m_Calls.Array.data[1].m_Arguments.m_ObjectArgumentAssemblyTypeName + value: UnityEngine.Object, UnityEngine + objectReference: {fileID: 0} + - target: {fileID: 8335809788815435457, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8335809788815435457, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8335809788815435457, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 815 + objectReference: {fileID: 0} + - target: {fileID: 8335809788815435457, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8335809788815435457, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 1232.5 + objectReference: {fileID: 0} + - target: {fileID: 8335809788815435457, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8395801205755841650, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8395801205755841650, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8395801205755841650, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 196.875 + objectReference: {fileID: 0} + - target: {fileID: 8395801205755841650, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8395801205755841650, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 719.0625 + objectReference: {fileID: 0} + - target: {fileID: 8395801205755841650, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 8682145561338542227, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchorMax.y @@ -19118,6 +20918,36 @@ PrefabInstance: propertyPath: onValueChanged.m_PersistentCalls.m_Calls.Array.data[0].m_Arguments.m_ObjectArgumentAssemblyTypeName value: UnityEngine.Object, UnityEngine objectReference: {fileID: 0} + - target: {fileID: 8868716176771699198, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMax.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8868716176771699198, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchorMin.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8868716176771699198, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.x + value: 825 + objectReference: {fileID: 0} + - target: {fileID: 8868716176771699198, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_SizeDelta.y + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8868716176771699198, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.x + value: 412.5 + objectReference: {fileID: 0} + - target: {fileID: 8868716176771699198, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, + type: 3} + propertyPath: m_AnchoredPosition.y + value: 0 + objectReference: {fileID: 0} - target: {fileID: 9066243764173284215, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchorMax.y @@ -19131,7 +20961,7 @@ PrefabInstance: - target: {fileID: 9066243764173284215, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_SizeDelta.x - value: 0 + value: 272.5 objectReference: {fileID: 0} - target: {fileID: 9066243764173284215, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} @@ -19141,7 +20971,7 @@ PrefabInstance: - target: {fileID: 9066243764173284215, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} propertyPath: m_AnchoredPosition.x - value: 0 + value: 146.25 objectReference: {fileID: 0} - target: {fileID: 9066243764173284215, guid: f9f5ed738ed15c94f9b28c3ec221dc8d, type: 3} diff --git a/Assets/RPG Creation Kit/GeneralIcons/EditorIconsPath.cs b/Assets/RPG Creation Kit/GeneralIcons/EditorIconsPath.cs index 9369eba7ca..9c735be550 100644 --- a/Assets/RPG Creation Kit/GeneralIcons/EditorIconsPath.cs +++ b/Assets/RPG Creation Kit/GeneralIcons/EditorIconsPath.cs @@ -33,6 +33,7 @@ namespace RPGCreationKit public static readonly string FactionEditorIcon = "Assets/RPG Creation Kit/GeneralIcons/Icons/FactionEditorIcon.png"; public static readonly string MainMenuIcon = "Assets/RPG Creation Kit/GeneralIcons/Icons/MainMenuEditorIcon.png"; + public static readonly string ActorLoaderIcon = "Assets/RPG Creation Kit/GeneralIcons/Icons/ActorEditorIcon.png"; public static Sprite NO_ITEM_ICON; } diff --git a/Assets/RPG Creation Kit/GeneralIcons/Icons/ActorEditorIcon.png b/Assets/RPG Creation Kit/GeneralIcons/Icons/ActorEditorIcon.png new file mode 100644 index 0000000000..db92596371 Binary files /dev/null and b/Assets/RPG Creation Kit/GeneralIcons/Icons/ActorEditorIcon.png differ diff --git a/Assets/RPG Creation Kit/GeneralIcons/Icons/ActorEditorIcon.png.meta b/Assets/RPG Creation Kit/GeneralIcons/Icons/ActorEditorIcon.png.meta new file mode 100644 index 0000000000..9939591d55 --- /dev/null +++ b/Assets/RPG Creation Kit/GeneralIcons/Icons/ActorEditorIcon.png.meta @@ -0,0 +1,123 @@ +fileFormatVersion: 2 +guid: 2863b5a3ed47fdb40a95a399df23e174 +TextureImporter: + internalIDToNameTable: [] + externalObjects: {} + serializedVersion: 12 + mipmaps: + mipMapMode: 0 + enableMipMap: 1 + sRGBTexture: 1 + linearTexture: 0 + fadeOut: 0 + borderMipMap: 0 + mipMapsPreserveCoverage: 0 + alphaTestReferenceValue: 0.5 + mipMapFadeDistanceStart: 1 + mipMapFadeDistanceEnd: 3 + bumpmap: + convertToNormalMap: 0 + externalNormalMap: 0 + heightScale: 0.25 + normalMapFilter: 0 + isReadable: 0 + streamingMipmaps: 0 + streamingMipmapsPriority: 0 + vTOnly: 0 + ignoreMasterTextureLimit: 0 + grayScaleToAlpha: 0 + generateCubemap: 6 + cubemapConvolution: 0 + seamlessCubemap: 0 + textureFormat: 1 + maxTextureSize: 2048 + textureSettings: + serializedVersion: 2 + filterMode: 1 + aniso: 1 + mipBias: 0 + wrapU: 1 + wrapV: 1 + wrapW: 1 + nPOTScale: 0 + lightmap: 0 + compressionQuality: 50 + spriteMode: 1 + spriteExtrude: 1 + spriteMeshType: 1 + alignment: 0 + spritePivot: {x: 0.5, y: 0.5} + spritePixelsToUnits: 100 + spriteBorder: {x: 0, y: 0, z: 0, w: 0} + spriteGenerateFallbackPhysicsShape: 1 + alphaUsage: 1 + alphaIsTransparency: 1 + spriteTessellationDetail: -1 + textureType: 8 + textureShape: 1 + singleChannelComponent: 0 + flipbookRows: 1 + flipbookColumns: 1 + maxTextureSizeSet: 0 + compressionQualitySet: 0 + textureFormatSet: 0 + ignorePngGamma: 0 + applyGammaDecoding: 0 + cookieLightType: 0 + platformSettings: + - serializedVersion: 3 + buildTarget: DefaultTexturePlatform + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Standalone + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + - serializedVersion: 3 + buildTarget: Server + maxTextureSize: 2048 + resizeAlgorithm: 0 + textureFormat: -1 + textureCompression: 1 + compressionQuality: 50 + crunchedCompression: 0 + allowsAlphaSplitting: 0 + overridden: 0 + androidETC2FallbackOverride: 0 + forceMaximumCompressionQuality_BC6H_BC7: 0 + spriteSheet: + serializedVersion: 2 + sprites: [] + outline: [] + physicsShape: [] + bones: [] + spriteID: 5e97eb03825dee720800000000000000 + internalID: 0 + vertices: [] + indices: + edges: [] + weights: [] + secondaryTextures: [] + nameFileIdTable: {} + spritePackingTag: + pSDRemoveMatte: 0 + pSDShowRemoveMatteOption: 0 + userData: + assetBundleName: + assetBundleVariant: diff --git a/Assets/RPG Creation Kit/Prefab Library/UI/Menus/SettingsPanel.prefab b/Assets/RPG Creation Kit/Prefab Library/UI/Menus/SettingsPanel.prefab index 1206ef0208..12fd6e5975 100644 --- a/Assets/RPG Creation Kit/Prefab Library/UI/Menus/SettingsPanel.prefab +++ b/Assets/RPG Creation Kit/Prefab Library/UI/Menus/SettingsPanel.prefab @@ -2817,7 +2817,7 @@ RectTransform: - {fileID: 4583625056488503922} - {fileID: 3091319614845978273} m_Father: {fileID: 893460555414770639} - m_RootOrder: 5 + m_RootOrder: 6 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} @@ -4475,6 +4475,7 @@ RectTransform: m_Children: - {fileID: 2961423580761238914} - {fileID: 893460556015095396} + - {fileID: 6379527071503878108} - {fileID: 893460556618951602} - {fileID: 7619409493676772028} - {fileID: 7619409494911962040} @@ -7262,7 +7263,7 @@ RectTransform: - {fileID: 8868716176771699198} - {fileID: 7357408248281403981} m_Father: {fileID: 893460555414770639} - m_RootOrder: 2 + m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} @@ -10445,6 +10446,111 @@ MonoBehaviour: m_FlexibleWidth: -1 m_FlexibleHeight: -1 m_LayoutPriority: 1 +--- !u!1 &1459287447906035897 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6504306556634668710} + - component: {fileID: 996098355651399374} + - component: {fileID: 898229027889514636} + - component: {fileID: 3266288245147042048} + m_Layer: 5 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6504306556634668710 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1459287447906035897} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1228379503093881222} + - {fileID: 5406175748048415685} + m_Father: {fileID: 4295184075200415360} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &996098355651399374 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1459287447906035897} + m_CullTransparentMesh: 1 +--- !u!114 &898229027889514636 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1459287447906035897} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &3266288245147042048 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1459287447906035897} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 20 + m_Right: 20 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!1 &1482107817570264517 GameObject: m_ObjectHideFlags: 0 @@ -22753,6 +22859,43 @@ MonoBehaviour: m_FlexibleWidth: -1 m_FlexibleHeight: -1 m_LayoutPriority: 1 +--- !u!1 &3187733746459103131 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1211266026750061676} + m_Layer: 5 + m_Name: Handle Slide Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1211266026750061676 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3187733746459103131} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3773597865546073448} + m_Father: {fileID: 7970078961411418715} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: -20, y: 0} + m_Pivot: {x: 0.5, y: 0.5} --- !u!1 &3220835406744077129 GameObject: m_ObjectHideFlags: 0 @@ -25406,6 +25549,124 @@ MonoBehaviour: source: {fileID: 0} onEnter: {fileID: 8300000, guid: fabbca3853732004e90cc51e0bd1a073, type: 3} onClick: {fileID: 8300000, guid: 0f0aa5bf462928d4e8132b6c0538e94d, type: 3} +--- !u!1 &3858468480977409396 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6501765042658305605} + - component: {fileID: 1274421252355655828} + - component: {fileID: 8444050722079742666} + - component: {fileID: 5046771923424089774} + - component: {fileID: 4746935169533965662} + m_Layer: 5 + m_Name: Background_03 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6501765042658305605 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3858468480977409396} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6379527071503878108} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &1274421252355655828 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3858468480977409396} + m_CullTransparentMesh: 1 +--- !u!114 &8444050722079742666 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3858468480977409396} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0.09803922} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: ba3ce9cf217f3794a9f6026c350ad6f2, type: 3} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 +--- !u!114 &5046771923424089774 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3858468480977409396} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 +--- !u!114 &4746935169533965662 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3858468480977409396} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 306cc8c2b49d7114eaa3623786fc2126, type: 3} + m_Name: + m_EditorClassIdentifier: + m_IgnoreLayout: 1 + m_MinWidth: -1 + m_MinHeight: -1 + m_PreferredWidth: -1 + m_PreferredHeight: -1 + m_FlexibleWidth: -1 + m_FlexibleHeight: -1 + m_LayoutPriority: 1 --- !u!1 &3883837412455933839 GameObject: m_ObjectHideFlags: 0 @@ -26446,6 +26707,120 @@ MonoBehaviour: slider: {fileID: 3169375240088110864} _text: {fileID: 5330370100748781412} IsAudio: 1 +--- !u!1 &3990793321534435491 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7942170720061668647} + m_Layer: 5 + m_Name: Fill Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &7942170720061668647 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 3990793321534435491} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 822769645110797677} + m_Father: {fileID: 7970078961411418715} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.25} + m_AnchorMax: {x: 1, y: 0.75} + m_AnchoredPosition: {x: -4.9999695, y: 0} + m_SizeDelta: {x: -20, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &4018557088741937710 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5951967385713337641} + - component: {fileID: 9021043260667565222} + - component: {fileID: 5770738750033031511} + m_Layer: 5 + m_Name: Image_01 + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &5951967385713337641 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4018557088741937710} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 7970078961411418715} + m_Father: {fileID: 6379527071503878108} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 757.5, y: -12.5} + m_SizeDelta: {x: 505, y: 25} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &9021043260667565222 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4018557088741937710} + m_CullTransparentMesh: 1 +--- !u!114 &5770738750033031511 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4018557088741937710} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 --- !u!1 &4051760696829422080 GameObject: m_ObjectHideFlags: 0 @@ -29694,6 +30069,82 @@ MonoBehaviour: m_FillOrigin: 0 m_UseSpriteMesh: 0 m_PixelsPerUnitMultiplier: 1 +--- !u!1 &4915685794988344257 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3055060419164814099} + - component: {fileID: 5738101836139376585} + - component: {fileID: 6372878042073353966} + m_Layer: 5 + m_Name: Background + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &3055060419164814099 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4915685794988344257} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7970078961411418715} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0.25} + m_AnchorMax: {x: 1, y: 0.75} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &5738101836139376585 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4915685794988344257} + m_CullTransparentMesh: 1 +--- !u!114 &6372878042073353966 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 4915685794988344257} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: dce8fc58955d7584c80f260fb867bc3e, type: 3} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 17.37 --- !u!1 &4932261036647455142 GameObject: m_ObjectHideFlags: 0 @@ -34194,6 +34645,142 @@ MonoBehaviour: m_FlexibleWidth: -1 m_FlexibleHeight: -1 m_LayoutPriority: 1 +--- !u!1 &5760169602536096294 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1228379503093881222} + - component: {fileID: 1525564173144764409} + - component: {fileID: 3423766715985297903} + m_Layer: 5 + m_Name: Label + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1228379503093881222 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5760169602536096294} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6504306556634668710} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 217.00055, y: -12.5} + m_SizeDelta: {x: 394.0011, y: 25} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &1525564173144764409 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5760169602536096294} + m_CullTransparentMesh: 1 +--- !u!114 &3423766715985297903 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 5760169602536096294} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: 'UI SOUNDS:' + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 5539dcd8aadf6ad4cae050b2b75b8d63, type: 2} + m_sharedMaterial: {fileID: 7074268001582046166, guid: 5539dcd8aadf6ad4cae050b2b75b8d63, + type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 18 + m_fontSizeBase: 29.9 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 1 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} --- !u!1 &5783192284272413197 GameObject: m_ObjectHideFlags: 0 @@ -40672,6 +41259,82 @@ MonoBehaviour: m_Name: m_EditorClassIdentifier: m_AllowSwitchOff: 0 +--- !u!1 &6936054153030082436 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 3773597865546073448} + - component: {fileID: 225406038480860486} + - component: {fileID: 5000660395010447203} + m_Layer: 5 + m_Name: Handle + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &3773597865546073448 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6936054153030082436} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 1211266026750061676} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 1, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 5.678528, y: 0} + m_SizeDelta: {x: 250, y: 30} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &225406038480860486 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6936054153030082436} + m_CullTransparentMesh: 1 +--- !u!114 &5000660395010447203 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 6936054153030082436} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 0 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: 67540dd363d34924ba5dc8df44d27cc1, type: 3} + m_Type: 0 + m_PreserveAspect: 1 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 --- !u!1 &6936912136430914595 GameObject: m_ObjectHideFlags: 0 @@ -42248,6 +42911,82 @@ RectTransform: m_AnchoredPosition: {x: -5, y: 0} m_SizeDelta: {x: -20, y: 0} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &7216949351186100157 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 822769645110797677} + - component: {fileID: 6249267401796011514} + - component: {fileID: 6144945737181436575} + m_Layer: 5 + m_Name: Fill + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &822769645110797677 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7216949351186100157} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 7942170720061668647} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 10, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &6249267401796011514 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7216949351186100157} + m_CullTransparentMesh: 1 +--- !u!114 &6144945737181436575 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7216949351186100157} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 10905, guid: 0000000000000000f000000000000000, type: 0} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 --- !u!1 &7235417815045932987 GameObject: m_ObjectHideFlags: 0 @@ -45075,7 +45814,7 @@ RectTransform: - {fileID: 7676348636234389451} - {fileID: 4915033024819294017} m_Father: {fileID: 893460555414770639} - m_RootOrder: 3 + m_RootOrder: 4 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} @@ -46508,7 +47247,7 @@ RectTransform: - {fileID: 7001505156179407072} - {fileID: 7092671741008635789} m_Father: {fileID: 893460555414770639} - m_RootOrder: 4 + m_RootOrder: 5 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} m_AnchorMin: {x: 0, y: 1} m_AnchorMax: {x: 0, y: 1} @@ -47793,6 +48532,83 @@ MonoBehaviour: m_hasFontAssetChanged: 0 m_baseMaterial: {fileID: 0} m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!1 &7818713866123993869 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 4295184075200415360} + - component: {fileID: 3957227821023026663} + - component: {fileID: 4637551941246165542} + m_Layer: 5 + m_Name: Image + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &4295184075200415360 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7818713866123993869} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6504306556634668710} + m_Father: {fileID: 6379527071503878108} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 252.5, y: -12.5} + m_SizeDelta: {x: 505, y: 25} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &3957227821023026663 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7818713866123993869} + m_CullTransparentMesh: 1 +--- !u!114 &4637551941246165542 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 7818713866123993869} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 0} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 0} + m_Type: 0 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 1 --- !u!1 &7833715459605805429 GameObject: m_ObjectHideFlags: 0 @@ -55192,6 +56008,126 @@ RectTransform: m_AnchoredPosition: {x: -4.9999695, y: 0} m_SizeDelta: {x: -20, y: 0} m_Pivot: {x: 0.5, y: 0.5} +--- !u!1 &8180972712181584482 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 6379527071503878108} + - component: {fileID: 8609944478618274349} + - component: {fileID: 6549774212946612374} + - component: {fileID: 6560575844450549782} + - component: {fileID: 7721423041552829003} + m_Layer: 5 + m_Name: UISounds + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &6379527071503878108 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8180972712181584482} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 6501765042658305605} + - {fileID: 4295184075200415360} + - {fileID: 5951967385713337641} + m_Father: {fileID: 893460555414770639} + m_RootOrder: 2 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 515, y: -22.5} + m_SizeDelta: {x: 1010, y: 25} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!222 &8609944478618274349 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8180972712181584482} + m_CullTransparentMesh: 1 +--- !u!114 &6549774212946612374 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8180972712181584482} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: fe87c0e1cc204ed48ad3b37840f39efc, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 0, g: 0, b: 0, a: 0.5882353} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_Sprite: {fileID: 21300000, guid: b8ea37140ea495e4ead127e6f1ca6c62, type: 3} + m_Type: 1 + m_PreserveAspect: 0 + m_FillCenter: 1 + m_FillMethod: 4 + m_FillAmount: 1 + m_FillClockwise: 1 + m_FillOrigin: 0 + m_UseSpriteMesh: 0 + m_PixelsPerUnitMultiplier: 9 +--- !u!114 &6560575844450549782 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8180972712181584482} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 31a19414c41e5ae4aae2af33fee712f6, type: 3} + m_Name: + m_EditorClassIdentifier: + m_ShowMaskGraphic: 1 +--- !u!114 &7721423041552829003 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8180972712181584482} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 30649d3a9faa99c48a7b1166b86bf2a0, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: + m_Left: 0 + m_Right: 0 + m_Top: 0 + m_Bottom: 0 + m_ChildAlignment: 0 + m_Spacing: 0 + m_ChildForceExpandWidth: 1 + m_ChildForceExpandHeight: 1 + m_ChildControlWidth: 1 + m_ChildControlHeight: 1 + m_ChildScaleWidth: 0 + m_ChildScaleHeight: 0 + m_ReverseArrangement: 0 --- !u!1 &8208134669884695896 GameObject: m_ObjectHideFlags: 0 @@ -55310,6 +56246,97 @@ MonoBehaviour: m_FlexibleWidth: -1 m_FlexibleHeight: -1 m_LayoutPriority: 1 +--- !u!1 &8318685060822891921 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 7970078961411418715} + - component: {fileID: 8255021694223257419} + m_Layer: 5 + m_Name: Slider + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &7970078961411418715 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8318685060822891921} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 3055060419164814099} + - {fileID: 7942170720061668647} + - {fileID: 1211266026750061676} + m_Father: {fileID: 5951967385713337641} + m_RootOrder: 0 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 0} + m_AnchorMax: {x: 1, y: 1} + m_AnchoredPosition: {x: 0, y: 0} + m_SizeDelta: {x: 0, y: 0} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &8255021694223257419 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 8318685060822891921} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 67db9e8f0e2ae9c40bc1e2b64352a6b4, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Navigation: + m_Mode: 3 + m_WrapAround: 0 + m_SelectOnUp: {fileID: 0} + m_SelectOnDown: {fileID: 0} + m_SelectOnLeft: {fileID: 0} + m_SelectOnRight: {fileID: 0} + m_Transition: 1 + m_Colors: + m_NormalColor: {r: 1, g: 1, b: 1, a: 1} + m_HighlightedColor: {r: 0.9607843, g: 0.9607843, b: 0.9607843, a: 1} + m_PressedColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 1} + m_SelectedColor: {r: 1, g: 0, b: 0, a: 1} + m_DisabledColor: {r: 0.78431374, g: 0.78431374, b: 0.78431374, a: 0.5019608} + m_ColorMultiplier: 1 + m_FadeDuration: 0.1 + m_SpriteState: + m_HighlightedSprite: {fileID: 0} + m_PressedSprite: {fileID: 0} + m_SelectedSprite: {fileID: 0} + m_DisabledSprite: {fileID: 0} + m_AnimationTriggers: + m_NormalTrigger: Normal + m_HighlightedTrigger: Highlighted + m_PressedTrigger: Pressed + m_SelectedTrigger: Selected + m_DisabledTrigger: Disabled + m_Interactable: 1 + m_TargetGraphic: {fileID: 5000660395010447203} + m_FillRect: {fileID: 822769645110797677} + m_HandleRect: {fileID: 3773597865546073448} + m_Direction: 0 + m_MinValue: 0 + m_MaxValue: 1 + m_WholeNumbers: 0 + m_Value: 1 + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] --- !u!1 &8327549682551339067 GameObject: m_ObjectHideFlags: 0 @@ -59102,6 +60129,158 @@ MonoBehaviour: m_FlexibleWidth: -1 m_FlexibleHeight: -1 m_LayoutPriority: 1 +--- !u!1 &9104497516777988245 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 5406175748048415685} + - component: {fileID: 3191222348852059141} + - component: {fileID: 8765566067174725847} + - component: {fileID: 1043311005253995882} + m_Layer: 5 + m_Name: Value + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &5406175748048415685 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9104497516777988245} + m_LocalRotation: {x: -0, y: -0, z: -0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 1, y: 1, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: [] + m_Father: {fileID: 6504306556634668710} + m_RootOrder: 1 + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_AnchorMin: {x: 0, y: 1} + m_AnchorMax: {x: 0, y: 1} + m_AnchoredPosition: {x: 414.0011, y: -12.5} + m_SizeDelta: {x: 70.99891, y: 25} + m_Pivot: {x: 0, y: 0.5} +--- !u!222 &3191222348852059141 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9104497516777988245} + m_CullTransparentMesh: 1 +--- !u!114 &8765566067174725847 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9104497516777988245} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: f4688fdb7df04437aeb418b961361dc5, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Material: {fileID: 0} + m_Color: {r: 1, g: 1, b: 1, a: 1} + m_RaycastTarget: 1 + m_RaycastPadding: {x: 0, y: 0, z: 0, w: 0} + m_Maskable: 1 + m_OnCullStateChanged: + m_PersistentCalls: + m_Calls: [] + m_text: 100 + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 5539dcd8aadf6ad4cae050b2b75b8d63, type: 2} + m_sharedMaterial: {fileID: 7074268001582046166, guid: 5539dcd8aadf6ad4cae050b2b75b8d63, + type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4294967295 + m_fontColor: {r: 1, g: 1, b: 1, a: 1} + m_enableVertexGradient: 0 + m_colorMode: 3 + m_fontColorGradient: + topLeft: {r: 1, g: 1, b: 1, a: 1} + topRight: {r: 1, g: 1, b: 1, a: 1} + bottomLeft: {r: 1, g: 1, b: 1, a: 1} + bottomRight: {r: 1, g: 1, b: 1, a: 1} + m_fontColorGradientPreset: {fileID: 0} + m_spriteAsset: {fileID: 0} + m_tintAllSprites: 0 + m_StyleSheet: {fileID: 0} + m_TextStyleHashCode: -1183493901 + m_overrideHtmlColors: 0 + m_faceColor: + serializedVersion: 2 + rgba: 4294967295 + m_fontSize: 18 + m_fontSizeBase: 29.9 + m_fontWeight: 400 + m_enableAutoSizing: 1 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 4 + m_VerticalAlignment: 512 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 1 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 0 + checkPaddingRequired: 0 + m_isRichText: 1 + m_parseCtrlCharacters: 1 + m_isOrthographic: 1 + m_isCullingEnabled: 0 + m_horizontalMapping: 0 + m_verticalMapping: 0 + m_uvLineOffset: 0 + m_geometrySortingOrder: 0 + m_IsTextObjectScaleStatic: 0 + m_VertexBufferAutoSizeReduction: 1 + m_useMaxVisibleDescender: 1 + m_pageToDisplay: 1 + m_margin: {x: 0, y: 0, z: 0, w: 0} + m_isUsingLegacyAnimationComponent: 0 + m_isVolumetricText: 0 + m_hasFontAssetChanged: 0 + m_baseMaterial: {fileID: 0} + m_maskOffset: {x: 0, y: 0, z: 0, w: 0} +--- !u!114 &1043311005253995882 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 9104497516777988245} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4bea4af92d8071d4ea1aaabee92a9076, type: 3} + m_Name: + m_EditorClassIdentifier: + slider: {fileID: 8255021694223257419} + _text: {fileID: 8765566067174725847} + IsAudio: 1 --- !u!1 &9113581715855366638 GameObject: m_ObjectHideFlags: 0 diff --git a/Assets/RPG Creation Kit/Scripts/Cells System/Demo/_WorldLoader_.unity b/Assets/RPG Creation Kit/Scripts/Cells System/Demo/_WorldLoader_.unity index d46907d142..ae32313d66 100644 --- a/Assets/RPG Creation Kit/Scripts/Cells System/Demo/_WorldLoader_.unity +++ b/Assets/RPG Creation Kit/Scripts/Cells System/Demo/_WorldLoader_.unity @@ -17,7 +17,7 @@ RenderSettings: m_Fog: 1 m_FogColor: {r: 0, g: 0, b: 0, a: 1} m_FogMode: 3 - m_FogDensity: 0.0025 + m_FogDensity: 1 m_LinearFogStart: 0 m_LinearFogEnd: 300 m_AmbientSkyColor: {r: 0, g: 0.0829449, b: 0.3584906, a: 1} @@ -21337,11 +21337,13 @@ MonoBehaviour: iniPath: ScreenshotRes: {fileID: 2031229347} MusicVolume: {fileID: 247426172} + UIVolume: {fileID: 0} ScreenshotExtension: - {fileID: 632306200} - {fileID: 632306199} - {fileID: 632306198} - {fileID: 632306197} + InitializeSettings: 0 --- !u!4 &442218738 Transform: m_ObjectHideFlags: 0 @@ -40956,7 +40958,7 @@ Transform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1043395086} - m_LocalRotation: {x: -0.42276502, y: -0.62776315, z: 0.00634557, w: 0.6535617} + m_LocalRotation: {x: 0, y: 0.7071068, z: 0, w: 0.7071068} m_LocalPosition: {x: 346.13, y: 217.391, z: -129.45} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 @@ -40965,7 +40967,7 @@ Transform: - {fileID: 270079901} m_Father: {fileID: 0} m_RootOrder: 5 - m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} + m_LocalEulerAnglesHint: {x: 0, y: 90, z: 0} --- !u!114 &1043395088 MonoBehaviour: m_ObjectHideFlags: 0 @@ -75512,14 +75514,14 @@ Transform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 1980799713} - m_LocalRotation: {x: -0.61237246, y: -0.35355338, z: -0.35355338, w: 0.61237246} + m_LocalRotation: {x: -0.061628457, y: 0.70441604, z: 0.70441604, w: 0.061628457} m_LocalPosition: {x: 0, y: 0, z: 0} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 1043395087} m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: -257, y: 90, z: 180} + m_LocalEulerAnglesHint: {x: -90, y: 0, z: 0} --- !u!1 &1981800435 GameObject: m_ObjectHideFlags: 0 diff --git a/Assets/RPG Creation Kit/Scripts/Cells System/Scripts/Editor/CellView.cs b/Assets/RPG Creation Kit/Scripts/Cells System/Scripts/Editor/CellView.cs index d0076550d2..92b5ebc50e 100644 --- a/Assets/RPG Creation Kit/Scripts/Cells System/Scripts/Editor/CellView.cs +++ b/Assets/RPG Creation Kit/Scripts/Cells System/Scripts/Editor/CellView.cs @@ -14,6 +14,7 @@ namespace RPGCreationKit.CellsSystem Texture refreshButtonIcon; Texture worldLoaderButtonIcon; Texture mainMenuLoaderButtonIcon; + Texture ActorLoaderButtonIcon; bool init = false; public List worldspaces; @@ -47,6 +48,7 @@ namespace RPGCreationKit.CellsSystem refreshButtonIcon = AssetDatabase.LoadAssetAtPath(EditorIconsPath.RefreshButton); worldLoaderButtonIcon = AssetDatabase.LoadAssetAtPath(EditorIconsPath.WorldLoaderIcon); mainMenuLoaderButtonIcon = AssetDatabase.LoadAssetAtPath(EditorIconsPath.MainMenuIcon); + ActorLoaderButtonIcon = AssetDatabase.LoadAssetAtPath(EditorIconsPath.ActorLoaderIcon); if(selectedWorldspace == null) selectedWorldspace = null; @@ -61,6 +63,16 @@ namespace RPGCreationKit.CellsSystem EditorGUILayout.LabelField("Worldspace:", EditorStyles.boldLabel); + if (GUILayout.Button(new GUIContent(ActorLoaderButtonIcon, "Loads the scene _CharacterCreation_."), GUILayout.MaxWidth(32))) + { + if (EditorSceneManager.SaveCurrentModifiedScenesIfUserWantsTo()) + { + // Open scene in single mode + string[] guidsWL = AssetDatabase.FindAssets("t:scene _CharacterCreation_"); + EditorSceneManager.OpenScene(AssetDatabase.GUIDToAssetPath(guidsWL[0]), OpenSceneMode.Single); + } + } + if (GUILayout.Button(new GUIContent(mainMenuLoaderButtonIcon, "Loads the scene _MainMenu_."), GUILayout.MaxWidth(32))) { if (EditorSceneManager.SaveCurrentModifiedScenesIfUserWantsTo()) diff --git a/Assets/RPG Creation Kit/Scripts/Cells System/Scripts/Loading System/WorldManager.cs b/Assets/RPG Creation Kit/Scripts/Cells System/Scripts/Loading System/WorldManager.cs index efb1046dc1..502975704f 100644 --- a/Assets/RPG Creation Kit/Scripts/Cells System/Scripts/Loading System/WorldManager.cs +++ b/Assets/RPG Creation Kit/Scripts/Cells System/Scripts/Loading System/WorldManager.cs @@ -513,9 +513,10 @@ namespace RPGCreationKit CellInformation CurCell = rootGameObjects[z].GetComponent(); CurCell.PlayMusic(); SunLightManager EnvMan = GameObject.Find("EnvironmentManager").GetComponent(); + if (currentWorldspace.worldSpaceType == Worldspace.WorldSpaceType.Interior) { EnvMan.IsInterior = true; - EnvMan.InteriorFog = (CurCell.FogDensity * 10000f); + // EnvMan.InteriorFog = (CurCell.FogDensity * 10000f); // <- now handled in Presets } else { EnvMan.IsInterior = false; } diff --git a/Assets/RPG Creation Kit/Scripts/Character Creation/CharacterCreationManager.cs b/Assets/RPG Creation Kit/Scripts/Character Creation/CharacterCreationManager.cs index 917997131d..fe5b500da3 100644 --- a/Assets/RPG Creation Kit/Scripts/Character Creation/CharacterCreationManager.cs +++ b/Assets/RPG Creation Kit/Scripts/Character Creation/CharacterCreationManager.cs @@ -35,6 +35,8 @@ public class CharacterCreationManager : MonoBehaviour [SerializeField] private GameObject PanelLipsMenu; [SerializeField] private GameObject ColorMenu; [SerializeField] private GameObject PlayerSexManu; + [SerializeField] private AudioSource MusicAudio; + [SerializeField] private AudioSource UIAudio; [SerializeField] private List SetStats; [SerializeField] private TMP_InputField characterNameField; @@ -92,6 +94,16 @@ public class CharacterCreationManager : MonoBehaviour Hair hair = (isCreatingMale) ? selectedRace.maleHairTypes[selectedHair] : selectedRace.femaleHairTypes[selectedHair]; hairTypeText.text = hair.hairName; // set the hairs name at initialization + string iniPath = System.Environment.GetFolderPath(System.Environment.SpecialFolder.MyDocuments)+@"\My Games\Firstborn\"; + INIParser ini = new INIParser(); + ini.Open(iniPath+@"\Settings.ini"); + string Music = ini.ReadValue("Sound Settings", "MusicVolume", "1"); + string UISound = ini.ReadValue("Sound Settings", "UIVolume", "1"); + MusicAudio.volume = float.Parse(Music); + UIAudio.volume = float.Parse(UISound); + + ini.Close(); + } @@ -256,7 +268,7 @@ public class CharacterCreationManager : MonoBehaviour { // Cam_BodyToFace(); - SkinnedMeshRenderer Face = currentCharacter.head; + SkinnedMeshRenderer Face = currentCharacter.head; faceBlendshapes.Clear(); diff --git a/Assets/RPG Creation Kit/Scripts/MainMenu/MainMenuUI.cs b/Assets/RPG Creation Kit/Scripts/MainMenu/MainMenuUI.cs index 2e824b444b..2a02b83916 100644 --- a/Assets/RPG Creation Kit/Scripts/MainMenu/MainMenuUI.cs +++ b/Assets/RPG Creation Kit/Scripts/MainMenu/MainMenuUI.cs @@ -20,7 +20,8 @@ namespace RPGCreationKit public GameObject mainMenuButtons; public GameObject defaultSelected; public GameObject previouslySelected; - public GameObject ModManager; + public GameObject LoginControls; + public GameObject Loading; private void Start() { @@ -50,18 +51,6 @@ namespace RPGCreationKit } - public void LoadModManager() - { - mainMenuButtons.SetActive(false); - ModManager.SetActive(true); - } - - public void MainMenu() - { - mainMenuButtons.SetActive(true); - ModManager.SetActive(false); - } - public void MainMenuButton_Load() { previouslySelected = EventSystem.current.currentSelectedGameObject; @@ -80,7 +69,14 @@ namespace RPGCreationKit public void MainMenuButton_NewGame() { - SceneManager.LoadScene("_CharacterCreation_"); + mainMenuButtons.SetActive(false); + LoginControls.SetActive(false); + //Loading.SetActive(true); + + LoadingScreenInfo.whatToLoad.Add("_CharacterCreation_"); + + SceneManager.LoadScene("_LoadingScreen_"); + //SceneManager.LoadScene("_CharacterCreation_"); } public void MainMenuButton_Exit() diff --git a/Assets/RPG Creation Kit/Scripts/Player/ThirdPersonPlayer.cs b/Assets/RPG Creation Kit/Scripts/Player/ThirdPersonPlayer.cs index c89bcfc3ae..29ecf10731 100644 --- a/Assets/RPG Creation Kit/Scripts/Player/ThirdPersonPlayer.cs +++ b/Assets/RPG Creation Kit/Scripts/Player/ThirdPersonPlayer.cs @@ -187,6 +187,7 @@ namespace RPGCreationKit.Player SkinnedMeshRenderer Hands = bodyData.hands; SkinnedMeshRenderer Feet = bodyData.feet; SkinnedMeshRenderer Lips = bodyData.Lips; + SkinnedMeshRenderer TempHair = bodyData.hair; Material[] MyTorsoMats = Torso.materials; Material[] MyLegsMats = Legs.materials; @@ -215,6 +216,7 @@ namespace RPGCreationKit.Player if (_hairType != -1) { // Spawn new hair + Destroy(TempHair); Hair hair = (!sex) ? _race.maleHairTypes[_hairType] : _race.femaleHairTypes[_hairType]; bodyData.hair = Instantiate(hair.mesh.gameObject, bodyData.transform).GetComponent(); diff --git a/Assets/RPG Creation Kit/Scripts/Save System/SaveElements/Environment.cs b/Assets/RPG Creation Kit/Scripts/Save System/SaveElements/Environment.cs index 792aa4e3f8..86d2326976 100644 --- a/Assets/RPG Creation Kit/Scripts/Save System/SaveElements/Environment.cs +++ b/Assets/RPG Creation Kit/Scripts/Save System/SaveElements/Environment.cs @@ -12,8 +12,5 @@ namespace RPGCreationKit.SaveSystem public int Month; public int Day; public float TimeOfDay; - public float Density; - public float Exposure; - public float Stars; } } diff --git a/Assets/RPG Creation Kit/Scripts/Save System/SaveSystemManager.cs b/Assets/RPG Creation Kit/Scripts/Save System/SaveSystemManager.cs index 5309696d77..2f0a15a482 100644 --- a/Assets/RPG Creation Kit/Scripts/Save System/SaveSystemManager.cs +++ b/Assets/RPG Creation Kit/Scripts/Save System/SaveSystemManager.cs @@ -85,9 +85,6 @@ namespace RPGCreationKit.SaveSystem } SunLightManager EnviroMan = EnvironmentManager.GetComponent(); saveFile.Environment.TimeOfDay = EnviroMan.TimeOfDay; - saveFile.Environment.Density = EnviroMan.Density; - saveFile.Environment.Exposure = EnviroMan.Exposure; - saveFile.Environment.Stars = EnviroMan.Stars; saveFile.Environment.Year = EnviroMan.Year; saveFile.Environment.Month = EnviroMan.Month; saveFile.Environment.Day = EnviroMan.Day; @@ -151,15 +148,9 @@ namespace RPGCreationKit.SaveSystem // Environment if (EnvironmentManager == null) { EnvironmentManager = GameObject.Find("EnvironmentManager"); - Debug.Log("EnvironmentManager property has been filled"); - } else { - Debug.Log("EnvironmentManager = -"+EnvironmentManager+"-"); } SunLightManager EnviroMan = EnvironmentManager.GetComponent(); saveFile.Environment.TimeOfDay = EnviroMan.TimeOfDay; - saveFile.Environment.Density = EnviroMan.Density; - saveFile.Environment.Exposure = EnviroMan.Exposure; - saveFile.Environment.Stars = EnviroMan.Stars; // Save all factions saveFile.PlayerData.playerFactions.Clear(); diff --git a/Assets/RPG Creation Kit/Skybox/Sky.mat b/Assets/RPG Creation Kit/Skybox/Sky.mat index 31f697275d..c054cce572 100644 --- a/Assets/RPG Creation Kit/Skybox/Sky.mat +++ b/Assets/RPG Creation Kit/Skybox/Sky.mat @@ -66,7 +66,7 @@ Material: - _Cutoff: 0.5 - _DetailNormalMapScale: 1 - _DstBlend: 0 - - _Exposure: 0 + - _Exposure: 1 - _GlossMapScale: 1 - _Glossiness: 0.5 - _GlossyReflections: 1 diff --git a/Assets/Scenes/Interior/Canyon Caves/[EnvPreset] Canyon Default.asset b/Assets/Scenes/Interior/Canyon Caves/[EnvPreset] Canyon Default.asset index b0779528c8..8fad377a8f 100644 --- a/Assets/Scenes/Interior/Canyon Caves/[EnvPreset] Canyon Default.asset +++ b/Assets/Scenes/Interior/Canyon Caves/[EnvPreset] Canyon Default.asset @@ -72,8 +72,8 @@ MonoBehaviour: m_NumAlphaKeys: 2 FogColor: serializedVersion: 2 - key0: {r: 0.5019608, g: 0.5019608, b: 0.5019608, a: 1} - key1: {r: 0.5019608, g: 0.5019608, b: 0.5019608, a: 1} + key0: {r: 0.5019608, g: 0.5019608, b: 0.5019608, a: 0.078431375} + key1: {r: 0.5019608, g: 0.5019608, b: 0.5019608, a: 0.078431375} key2: {r: 0, g: 0, b: 0, a: 0} key3: {r: 0, g: 0, b: 0, a: 0} key4: {r: 0, g: 0, b: 0, a: 0} @@ -99,3 +99,32 @@ MonoBehaviour: m_Mode: 0 m_NumColorKeys: 2 m_NumAlphaKeys: 2 + StarsVisability: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 0} + key1: {r: 1, g: 1, b: 1, a: 0} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 0} + key5: {r: 0, g: 0, b: 0, a: 0} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 65535 + atime2: 0 + atime3: 0 + atime4: 0 + atime5: 0 + atime6: 0 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 2 + m_NumAlphaKeys: 2 diff --git a/Assets/Scripts/CharacterCreationVolume.cs b/Assets/Scripts/CharacterCreationVolume.cs index 9ae265c2ab..91d51b02a9 100644 --- a/Assets/Scripts/CharacterCreationVolume.cs +++ b/Assets/Scripts/CharacterCreationVolume.cs @@ -7,6 +7,7 @@ public class CharacterCreationVolume : MonoBehaviour { [SerializeField] private string iniPath; [SerializeField] private Slider Volume; + [SerializeField] private Slider UIVolume; // Start is called before the first frame update void OnEnable() { @@ -14,16 +15,27 @@ public class CharacterCreationVolume : MonoBehaviour INIParser ini = new INIParser(); ini.Open(iniPath+@"\Settings.ini"); string Value = ini.ReadValue("Sound Settings", "MusicVolume", "1"); + string UIValue = ini.ReadValue("Sound Settings", "UIVolume", "1"); Volume.value = float.Parse(Value); + UIVolume.value = float.Parse(UIValue); ini.Close(); } public void SaveVolume() { + iniPath = System.Environment.GetFolderPath(System.Environment.SpecialFolder.MyDocuments)+@"\My Games\Firstborn\"; INIParser ini = new INIParser(); ini.Open(iniPath+@"\Settings.ini"); ini.WriteValue("Sound Settings", "MusicVolume", Volume.value.ToString()); ini.Close(); } + public void SaveUIVolume() { + iniPath = System.Environment.GetFolderPath(System.Environment.SpecialFolder.MyDocuments)+@"\My Games\Firstborn\"; + INIParser ini = new INIParser(); + ini.Open(iniPath+@"\Settings.ini"); + ini.WriteValue("Sound Settings", "UIVolume", UIVolume.value.ToString()); + ini.Close(); + } + } diff --git a/Assets/Sky/DefaultLightingPreset.asset b/Assets/Sky/DefaultLightingPreset.asset index fe507693dc..071d6491a8 100644 --- a/Assets/Sky/DefaultLightingPreset.asset +++ b/Assets/Sky/DefaultLightingPreset.asset @@ -14,21 +14,21 @@ MonoBehaviour: m_EditorClassIdentifier: AmbientColor: serializedVersion: 2 - key0: {r: 0, g: 0.0829449, b: 0.3584906, a: 1} - key1: {r: 0.59853244, g: 0.89105946, b: 1, a: 1} - key2: {r: 1, g: 1, b: 1, a: 0} + key0: {r: 0, g: 0.08627451, b: 0.36078432, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0.59853244, g: 0.89105946, b: 1, a: 0} key3: {r: 1, g: 1, b: 1, a: 0} - key4: {r: 1, g: 0.8832244, b: 0.4381551, a: 0} - key5: {r: 0, g: 0.08627451, b: 0.36078432, a: 0} - key6: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 1, g: 1, b: 1, a: 0} + key5: {r: 1, g: 0.8832244, b: 0.4381551, a: 0} + key6: {r: 0, g: 0.08627451, b: 0.36078432, a: 0} key7: {r: 0, g: 0, b: 0, a: 0} - ctime0: 14071 - ctime1: 18890 - ctime2: 27178 - ctime3: 39899 - ctime4: 47224 - ctime5: 53585 - ctime6: 0 + ctime0: 6361 + ctime1: 14071 + ctime2: 18890 + ctime3: 27178 + ctime4: 39899 + ctime5: 47224 + ctime6: 53585 ctime7: 0 atime0: 0 atime1: 65535 @@ -39,63 +39,92 @@ MonoBehaviour: atime6: 0 atime7: 0 m_Mode: 0 - m_NumColorKeys: 6 + m_NumColorKeys: 7 m_NumAlphaKeys: 2 DirectionalColor: serializedVersion: 2 - key0: {r: 0, g: 0, b: 0, a: 1} - key1: {r: 0.7374312, g: 0.80792964, b: 0.9716981, a: 1} - key2: {r: 0.990566, g: 0.90404856, b: 0.6489557, a: 0} - key3: {r: 0.80641794, g: 0.8584906, b: 0.53003246, a: 0} - key4: {r: 1, g: 0.4572897, b: 0.4192872, a: 0} - key5: {r: 0, g: 0, b: 0, a: 0} - key6: {r: 0, g: 0, b: 0, a: 0} + key0: {r: 0, g: 0, b: 0, a: 0} + key1: {r: 0.80641794, g: 0.8584906, b: 0.53003246, a: 0} + key2: {r: 0.7374312, g: 0.80792964, b: 0.9716981, a: 1} + key3: {r: 0.990566, g: 0.90404856, b: 0.6489557, a: 0.46666667} + key4: {r: 0.80641794, g: 0.8584906, b: 0.53003246, a: 0.5882353} + key5: {r: 1, g: 0.4572897, b: 0.4192872, a: 0.15686275} + key6: {r: 0, g: 0, b: 0, a: 1} key7: {r: 0, g: 0, b: 0, a: 0} - ctime0: 12336 - ctime1: 21203 - ctime2: 28527 - ctime3: 44333 - ctime4: 49344 - ctime5: 53392 - ctime6: 0 + ctime0: 4433 + ctime1: 12336 + ctime2: 21203 + ctime3: 28527 + ctime4: 44333 + ctime5: 49344 + ctime6: 53392 ctime7: 0 atime0: 0 - atime1: 65535 - atime2: 0 - atime3: 0 - atime4: 0 - atime5: 0 - atime6: 0 - atime7: 0 + atime1: 13493 + atime2: 18504 + atime3: 24672 + atime4: 33539 + atime5: 47224 + atime6: 50308 + atime7: 51464 m_Mode: 0 - m_NumColorKeys: 6 - m_NumAlphaKeys: 2 + m_NumColorKeys: 7 + m_NumAlphaKeys: 8 FogColor: serializedVersion: 2 - key0: {r: 0, g: 0, b: 0, a: 1} - key1: {r: 1, g: 0.8399371, b: 0.466457, a: 1} - key2: {r: 0.7872117, g: 0.901399, b: 1, a: 0} - key3: {r: 1, g: 1, b: 1, a: 0} - key4: {r: 1, g: 0.7724392, b: 0, a: 0} - key5: {r: 0, g: 0, b: 0, a: 0} - key6: {r: 0, g: 0, b: 0, a: 0} + key0: {r: 0, g: 0, b: 0, a: 0.007843138} + key1: {r: 0.9778707, g: 0.9811321, b: 0.80012655, a: 0.007843138} + key2: {r: 0.990566, g: 0.97752583, b: 0.8638898, a: 1} + key3: {r: 0.7872117, g: 0.901399, b: 1, a: 0.042470932} + key4: {r: 1, g: 1, b: 1, a: 0.007843138} + key5: {r: 0.9811321, g: 0.85377187, b: 0.5687275, a: 0.007843138} + key6: {r: 0, g: 0, b: 0, a: 1} key7: {r: 0, g: 0, b: 0, a: 0} - ctime0: 13685 - ctime1: 17926 - ctime2: 20432 - ctime3: 37008 - ctime4: 46646 - ctime5: 54548 + ctime0: 6361 + ctime1: 13685 + ctime2: 17926 + ctime3: 20432 + ctime4: 37008 + ctime5: 46646 ctime6: 54548 ctime7: 59174 atime0: 0 - atime1: 65535 - atime2: 0 - atime3: 0 - atime4: 0 - atime5: 0 + atime1: 6361 + atime2: 16384 + atime3: 22745 + atime4: 35081 + atime5: 65535 + atime6: 65535 + atime7: 0 + m_Mode: 0 + m_NumColorKeys: 7 + m_NumAlphaKeys: 6 + StarsVisability: + serializedVersion: 2 + key0: {r: 1, g: 1, b: 1, a: 1} + key1: {r: 1, g: 1, b: 1, a: 1} + key2: {r: 0, g: 0, b: 0, a: 0} + key3: {r: 0, g: 0, b: 0, a: 0} + key4: {r: 0, g: 0, b: 0, a: 1} + key5: {r: 0, g: 0, b: 0, a: 1} + key6: {r: 0, g: 0, b: 0, a: 0} + key7: {r: 0, g: 0, b: 0, a: 0} + ctime0: 0 + ctime1: 65535 + ctime2: 0 + ctime3: 0 + ctime4: 0 + ctime5: 0 + ctime6: 0 + ctime7: 0 + atime0: 0 + atime1: 14264 + atime2: 15806 + atime3: 48766 + atime4: 52814 + atime5: 65535 atime6: 0 atime7: 0 m_Mode: 0 - m_NumColorKeys: 6 - m_NumAlphaKeys: 2 + m_NumColorKeys: 2 + m_NumAlphaKeys: 6 diff --git a/Assets/Sky/SunLightManager.cs b/Assets/Sky/SunLightManager.cs index d58bd50253..d90ff35888 100644 --- a/Assets/Sky/SunLightManager.cs +++ b/Assets/Sky/SunLightManager.cs @@ -25,25 +25,6 @@ namespace RPGCreationKit [SerializeField] public int Day = 1; [SerializeField, Range(0, 24)] public float TimeOfDay; - [Header("Fog")] - [SerializeField] public float InteriorFog = 0f; - [SerializeField] private float MinDensity = 0.0001f; - [SerializeField] private float MaxDensity = 0.1f; - [SerializeField] private float DensitySpeed = 0.1f; - [SerializeField, Range(1000f, 0.1f)] public float Density = 1000f; - - [Header("Sky")] - [SerializeField] private float MinExposure = 1.0f; - [SerializeField] private float MaxExposure = 5.04f; - [SerializeField] private float ExposureSpeed = 0.01f; - [SerializeField, Range(5.05f, 1.0f)] public float Exposure = 1.0f; - - [Header("Stars")] - [SerializeField] private float MinStars = 0.0001f; - [SerializeField] private float MaxStars = 0.5f; - [SerializeField] private float StarsSpeed = 0.0001f; - [SerializeField, Range(0.0001f, 0.5f)] public float Stars = 0.5f; - void Start() { StarsMat = StarsSky.GetComponent().GetComponent().sharedMaterial; @@ -51,9 +32,6 @@ namespace RPGCreationKit Month = SaveSystemManager.instance.saveFile.Environment.Month; Day = SaveSystemManager.instance.saveFile.Environment.Day; TimeOfDay = SaveSystemManager.instance.saveFile.Environment.TimeOfDay; - Density = SaveSystemManager.instance.saveFile.Environment.Density; - Exposure = SaveSystemManager.instance.saveFile.Environment.Exposure; - Stars = SaveSystemManager.instance.saveFile.Environment.Stars; Loaded = true; } @@ -87,86 +65,45 @@ namespace RPGCreationKit if (Application.isPlaying) { TimeOfDay += (Time.deltaTime / 180f); TimeOfDay %= 24; - UpdateLighting(TimeOfDay / 24f); if (IsInterior == false) { - - // Setting the Fog - if (((TimeOfDay > 6.5f) && (TimeOfDay < 12f)) && ((Density / 10000f) > MinDensity)) { - Density -= (DensitySpeed); - RenderSettings.fogDensity = (Density / 10000f); - } else if (((TimeOfDay > 3f) && (TimeOfDay < 6.4f)) && ((Density / 10000f) < MaxDensity)) { - Density += (DensitySpeed); - RenderSettings.fogDensity = (Density / 10000f); - } else { // In case we are in a dead zone, catch fog up to where we went it. - if (RenderSettings.fogDensity != (Density / 10000f)) { - RenderSettings.fogDensity = (Density / 10000f); - } - } // Setting the Sun if (DirectionalLight.gameObject.activeSelf == true) { if (RenderSettings.sun != DirectionalLight) { RenderSettings.sun = DirectionalLight; - } - if (((TimeOfDay > 6.5f) && (TimeOfDay < 15f)) && (Exposure < MaxExposure)) { - Exposure += (ExposureSpeed); - RenderSettings.skybox.SetFloat("_Exposure", Exposure); - } else if (((TimeOfDay > 15f) && (TimeOfDay < 20f)) && (Exposure > MinExposure)) { - Exposure -= (ExposureSpeed); - RenderSettings.skybox.SetFloat("_Exposure", Exposure); - } else { // In case we are in a dead zone, lets catch up - if (RenderSettings.skybox.GetFloat("_Exposure") != Exposure) { - RenderSettings.skybox.SetFloat("_Exposure", Exposure); - } + } } - // Setting the stars - Color color = StarsMat.color; - StarsSky.position = Player.position; - if (((TimeOfDay > 5f) && (TimeOfDay < 9f)) && (Stars > MinStars)) { - Stars -= (StarsSpeed); - color.a = Stars; - StarsMat.color = color; - } else if (((TimeOfDay > 18f) && (TimeOfDay < 21f)) && (Stars < MaxStars)) { - Stars += (StarsSpeed); - color.a = Stars; - StarsMat.color = color; - } else { // In case we are in a dead zone, lets catch up - if (StarsMat.color != color) { - color.a = Stars; - StarsMat.color = color; - } - } - - } else { - // Remove the stars instantly - if (StarsMat.color.a != 0) { - Color color = StarsMat.color; - Stars = MinStars; - color.a = Stars; - StarsMat.color = color; - } - - if (Density != InteriorFog) { - Density = InteriorFog; - RenderSettings.fogDensity = (Density / 10000f); - } + // Setting the Sun + Color DirectionalTempColor = Preset.DirectionalColor.Evaluate(TimeOfDay / 24f); + DirectionalLight.color = DirectionalTempColor; + RenderSettings.skybox.SetFloat("_Exposure", (DirectionalTempColor.a * 5)); } - - } else { - UpdateLighting(TimeOfDay / 24f); } + + UpdateLighting(TimeOfDay / 24f); } private void UpdateLighting(float TimePercent) { RenderSettings.ambientLight = Preset.AmbientColor.Evaluate(TimePercent); - RenderSettings.fogColor = Preset.FogColor.Evaluate(TimePercent); + // Fog + Color FogTempColor = Preset.FogColor.Evaluate(TimePercent); + RenderSettings.fogColor = FogTempColor; + RenderSettings.fogDensity = ((FogTempColor.a / 10) * 2); + + // Setting the stars + StarsSky.position = Player.position; + Color StarsColor = Preset.StarsVisability.Evaluate(TimePercent); + Color color = StarsMat.color; + color.a = StarsColor.a; + StarsMat.color = color; + if (DirectionalLight != null) { - DirectionalLight.color = Preset.DirectionalColor.Evaluate(TimePercent); - DirectionalLight.transform.localRotation = Quaternion.Euler(new Vector3((TimePercent * 360f) -90f, -100, 40)); + + DirectionalLight.transform.localRotation = Quaternion.Euler(new Vector3((TimePercent * 360f) -90f, 170f, 0f)); StarsSky.localRotation = Quaternion.Euler(new Vector3((TimePercent * 360f) -90f, -100, 40)); } } diff --git a/Assets/Sky/SunLightPreset.cs b/Assets/Sky/SunLightPreset.cs index 851c3fe34f..56804fbeea 100644 --- a/Assets/Sky/SunLightPreset.cs +++ b/Assets/Sky/SunLightPreset.cs @@ -10,6 +10,7 @@ public class SunLightPreset : ScriptableObject public Gradient AmbientColor; public Gradient DirectionalColor; public Gradient FogColor; + public Gradient StarsVisability; // Start is called before the first frame update void Start() { diff --git a/Library/ArtifactDB b/Library/ArtifactDB index 3826f66669..c452b5b5e5 100644 Binary files a/Library/ArtifactDB and b/Library/ArtifactDB differ diff --git a/Library/Artifacts/56/560f297725ba8d328cb4570d9c8c8231 b/Library/Artifacts/00/00b27ca2a3b214253d354e02b708e0a2 similarity index 96% rename from Library/Artifacts/56/560f297725ba8d328cb4570d9c8c8231 rename to Library/Artifacts/00/00b27ca2a3b214253d354e02b708e0a2 index f9d6ab5b46..47be9c36ea 100644 Binary files a/Library/Artifacts/56/560f297725ba8d328cb4570d9c8c8231 and b/Library/Artifacts/00/00b27ca2a3b214253d354e02b708e0a2 differ diff --git a/Library/Artifacts/00/00c75ee9f78ef67d31472b9998429f59 b/Library/Artifacts/00/00c75ee9f78ef67d31472b9998429f59 deleted file mode 100644 index 5be8464dc5..0000000000 Binary files a/Library/Artifacts/00/00c75ee9f78ef67d31472b9998429f59 and /dev/null differ diff --git a/Library/Artifacts/02/02b1271d15aeb36bb4fa308103471352 b/Library/Artifacts/02/02b1271d15aeb36bb4fa308103471352 deleted file mode 100644 index bc1cfb1822..0000000000 Binary files a/Library/Artifacts/02/02b1271d15aeb36bb4fa308103471352 and /dev/null differ diff --git a/Library/Artifacts/03/03a08267a9a4116b0548deb4c0e5258f b/Library/Artifacts/03/03a08267a9a4116b0548deb4c0e5258f new file mode 100644 index 0000000000..2e6e85929d Binary files /dev/null and b/Library/Artifacts/03/03a08267a9a4116b0548deb4c0e5258f differ diff --git a/Library/Artifacts/03/03c42abb63386da15b34eaf54812c8a8 b/Library/Artifacts/03/03c42abb63386da15b34eaf54812c8a8 deleted file mode 100644 index a395b918c0..0000000000 Binary files a/Library/Artifacts/03/03c42abb63386da15b34eaf54812c8a8 and /dev/null differ diff --git a/Library/Artifacts/03/03f6a6cc26322b0fb1adc5431d97b4e7 b/Library/Artifacts/03/03f6a6cc26322b0fb1adc5431d97b4e7 deleted file mode 100644 index baa374a7f4..0000000000 Binary files a/Library/Artifacts/03/03f6a6cc26322b0fb1adc5431d97b4e7 and /dev/null differ diff --git a/Library/Artifacts/04/04739ab328b6f69f8940f034a9445c72 b/Library/Artifacts/04/04739ab328b6f69f8940f034a9445c72 new file mode 100644 index 0000000000..b37b2c6c4c Binary files /dev/null and b/Library/Artifacts/04/04739ab328b6f69f8940f034a9445c72 differ diff --git a/Library/Artifacts/04/04f31ae6f4911a308e6710731d5c1aa2 b/Library/Artifacts/04/04f31ae6f4911a308e6710731d5c1aa2 new file mode 100644 index 0000000000..4dde2a85c5 Binary files /dev/null and b/Library/Artifacts/04/04f31ae6f4911a308e6710731d5c1aa2 differ diff --git a/Library/Artifacts/04/04f7a67e73dd834d014b5e8139af2f94 b/Library/Artifacts/04/04f7a67e73dd834d014b5e8139af2f94 deleted file mode 100644 index b4476191e2..0000000000 Binary files a/Library/Artifacts/04/04f7a67e73dd834d014b5e8139af2f94 and /dev/null differ diff --git a/Library/Artifacts/06/06cf2462e1650a9d305ece0c6c7a2fd0 b/Library/Artifacts/06/06cf2462e1650a9d305ece0c6c7a2fd0 new file mode 100644 index 0000000000..8d9f85364b Binary files /dev/null and b/Library/Artifacts/06/06cf2462e1650a9d305ece0c6c7a2fd0 differ diff --git a/Library/Artifacts/06/06f4f3562f75d24dbb0863aa591a2de8 b/Library/Artifacts/06/06f4f3562f75d24dbb0863aa591a2de8 new file mode 100644 index 0000000000..72d3b0e490 Binary files /dev/null and b/Library/Artifacts/06/06f4f3562f75d24dbb0863aa591a2de8 differ diff --git a/Library/Artifacts/07/070578c2f314da2da0fcb7cb2175df86 b/Library/Artifacts/07/070578c2f314da2da0fcb7cb2175df86 new file mode 100644 index 0000000000..7a0f21cd19 Binary files /dev/null and b/Library/Artifacts/07/070578c2f314da2da0fcb7cb2175df86 differ diff --git a/Library/Artifacts/07/07fb3e3b2d1dabe908f62cfaf656e6a7 b/Library/Artifacts/07/07fb3e3b2d1dabe908f62cfaf656e6a7 new file mode 100644 index 0000000000..ecf963cc09 Binary files /dev/null and b/Library/Artifacts/07/07fb3e3b2d1dabe908f62cfaf656e6a7 differ diff --git a/Library/Artifacts/08/085891f296d875f79a8fe8b06be07028 b/Library/Artifacts/08/085891f296d875f79a8fe8b06be07028 new file mode 100644 index 0000000000..512a6e3341 Binary files /dev/null and b/Library/Artifacts/08/085891f296d875f79a8fe8b06be07028 differ diff --git a/Library/Artifacts/08/089a2f09dbd2d23f173c0d1a9b9b843d b/Library/Artifacts/08/089a2f09dbd2d23f173c0d1a9b9b843d new file mode 100644 index 0000000000..125277a897 Binary files /dev/null and b/Library/Artifacts/08/089a2f09dbd2d23f173c0d1a9b9b843d differ diff --git a/Library/Artifacts/08/08d203ecb93e824560d00fa7d1582d23 b/Library/Artifacts/08/08d203ecb93e824560d00fa7d1582d23 new file mode 100644 index 0000000000..f755da8aea Binary files /dev/null and b/Library/Artifacts/08/08d203ecb93e824560d00fa7d1582d23 differ diff --git a/Library/Artifacts/08/08f086b066b1cf7da673b6a97c348adf b/Library/Artifacts/08/08f086b066b1cf7da673b6a97c348adf deleted file mode 100644 index 5deb62f630..0000000000 Binary files a/Library/Artifacts/08/08f086b066b1cf7da673b6a97c348adf and /dev/null differ diff --git a/Library/Artifacts/09/093fbf20da3ed2b3ce2b4504d96c086d b/Library/Artifacts/09/093fbf20da3ed2b3ce2b4504d96c086d new file mode 100644 index 0000000000..8e34185651 Binary files /dev/null and b/Library/Artifacts/09/093fbf20da3ed2b3ce2b4504d96c086d differ diff --git a/Library/Artifacts/0a/0a57d474804de037b5215b0bc8080d8a b/Library/Artifacts/0a/0a57d474804de037b5215b0bc8080d8a new file mode 100644 index 0000000000..a9799f7310 Binary files /dev/null and b/Library/Artifacts/0a/0a57d474804de037b5215b0bc8080d8a differ diff --git a/Library/Artifacts/0a/0a9d9e0068309d1cc08a51a9e0dd0f43 b/Library/Artifacts/0a/0a9d9e0068309d1cc08a51a9e0dd0f43 deleted file mode 100644 index f7fbc76bbf..0000000000 Binary files a/Library/Artifacts/0a/0a9d9e0068309d1cc08a51a9e0dd0f43 and /dev/null differ diff --git a/Library/Artifacts/0a/0aab142c7e267cff74f33e89dad5721f b/Library/Artifacts/0a/0aab142c7e267cff74f33e89dad5721f new file mode 100644 index 0000000000..45036ec335 Binary files /dev/null and b/Library/Artifacts/0a/0aab142c7e267cff74f33e89dad5721f differ diff --git a/Library/Artifacts/0a/0af84bf1ed82498d7c1202f1997a8182 b/Library/Artifacts/0a/0af84bf1ed82498d7c1202f1997a8182 new file mode 100644 index 0000000000..bf744d53d9 Binary files /dev/null and b/Library/Artifacts/0a/0af84bf1ed82498d7c1202f1997a8182 differ diff --git a/Library/Artifacts/0b/0bb014af0ccaeace4d0179dfcfbffa68 b/Library/Artifacts/0b/0bb014af0ccaeace4d0179dfcfbffa68 new file mode 100644 index 0000000000..89e4f9719a Binary files /dev/null and b/Library/Artifacts/0b/0bb014af0ccaeace4d0179dfcfbffa68 differ diff --git a/Library/Artifacts/0c/0c31e50c62dabd88eb71967066d50f7b b/Library/Artifacts/0c/0c31e50c62dabd88eb71967066d50f7b new file mode 100644 index 0000000000..fc1d001728 Binary files /dev/null and b/Library/Artifacts/0c/0c31e50c62dabd88eb71967066d50f7b differ diff --git a/Library/Artifacts/a0/a00b05ab04cf29e66ed59a9e473ccf90 b/Library/Artifacts/0c/0c6680383e1eb989d927c4519a8ac35d similarity index 98% rename from Library/Artifacts/a0/a00b05ab04cf29e66ed59a9e473ccf90 rename to Library/Artifacts/0c/0c6680383e1eb989d927c4519a8ac35d index 45e1eee33b..a3fe4bd765 100644 Binary files a/Library/Artifacts/a0/a00b05ab04cf29e66ed59a9e473ccf90 and b/Library/Artifacts/0c/0c6680383e1eb989d927c4519a8ac35d differ diff --git a/Library/Artifacts/0c/0c6987d741f6eef266406dd2bf9154fb b/Library/Artifacts/0c/0c6987d741f6eef266406dd2bf9154fb new file mode 100644 index 0000000000..56e8c7fefc Binary files /dev/null and b/Library/Artifacts/0c/0c6987d741f6eef266406dd2bf9154fb differ diff --git a/Library/Artifacts/0c/0c95fcdd4080351e99b6ba38b0a6fd9b b/Library/Artifacts/0c/0c95fcdd4080351e99b6ba38b0a6fd9b new file mode 100644 index 0000000000..4d4caaaa45 Binary files /dev/null and b/Library/Artifacts/0c/0c95fcdd4080351e99b6ba38b0a6fd9b differ diff --git a/Library/Artifacts/0c/0ccbde840e85b4fd51aa342ac484e8b6 b/Library/Artifacts/0c/0ccbde840e85b4fd51aa342ac484e8b6 new file mode 100644 index 0000000000..a50d72c3af Binary files /dev/null and b/Library/Artifacts/0c/0ccbde840e85b4fd51aa342ac484e8b6 differ diff --git a/Library/Artifacts/0d/0d19790e70b80258557b45f989976858 b/Library/Artifacts/0d/0d19790e70b80258557b45f989976858 new file mode 100644 index 0000000000..a3a5636ae2 Binary files /dev/null and b/Library/Artifacts/0d/0d19790e70b80258557b45f989976858 differ diff --git a/Library/Artifacts/0d/0d9ccad6e097ca9ba35bdd34c615ecfd b/Library/Artifacts/0d/0d9ccad6e097ca9ba35bdd34c615ecfd new file mode 100644 index 0000000000..012967eac5 Binary files /dev/null and b/Library/Artifacts/0d/0d9ccad6e097ca9ba35bdd34c615ecfd differ diff --git a/Library/Artifacts/0d/0ddaed8678b2a97685d8b5b06af3ecb3 b/Library/Artifacts/0d/0ddaed8678b2a97685d8b5b06af3ecb3 deleted file mode 100644 index f7235e3d0a..0000000000 Binary files a/Library/Artifacts/0d/0ddaed8678b2a97685d8b5b06af3ecb3 and /dev/null differ diff --git a/Library/Artifacts/0e/0eca784f5068e6a84dbd12215de367f3 b/Library/Artifacts/0e/0eca784f5068e6a84dbd12215de367f3 new file mode 100644 index 0000000000..bab1b2b58d Binary files /dev/null and b/Library/Artifacts/0e/0eca784f5068e6a84dbd12215de367f3 differ diff --git a/Library/Artifacts/0f/0f4b480f65270c37255524f072e3e3bc b/Library/Artifacts/0f/0f4b480f65270c37255524f072e3e3bc new file mode 100644 index 0000000000..da74e11b83 Binary files /dev/null and b/Library/Artifacts/0f/0f4b480f65270c37255524f072e3e3bc differ diff --git a/Library/Artifacts/0f/0faf00688a3474aebe83ed34d6bfe70b b/Library/Artifacts/0f/0faf00688a3474aebe83ed34d6bfe70b new file mode 100644 index 0000000000..3429f01902 Binary files /dev/null and b/Library/Artifacts/0f/0faf00688a3474aebe83ed34d6bfe70b differ diff --git a/Library/Artifacts/10/1064a65ec64a9d087d21e781aab62e77 b/Library/Artifacts/10/1064a65ec64a9d087d21e781aab62e77 new file mode 100644 index 0000000000..99bcc5e73d Binary files /dev/null and b/Library/Artifacts/10/1064a65ec64a9d087d21e781aab62e77 differ diff --git a/Library/Artifacts/10/10cf14cead72cd0b22651229cd119997 b/Library/Artifacts/10/10cf14cead72cd0b22651229cd119997 new file mode 100644 index 0000000000..0decac1233 Binary files /dev/null and b/Library/Artifacts/10/10cf14cead72cd0b22651229cd119997 differ diff --git a/Library/Artifacts/11/111d0fd14fffee0d9caa2374ae8e59aa b/Library/Artifacts/11/111d0fd14fffee0d9caa2374ae8e59aa new file mode 100644 index 0000000000..d2f7993dbe Binary files /dev/null and b/Library/Artifacts/11/111d0fd14fffee0d9caa2374ae8e59aa differ diff --git a/Library/Artifacts/11/116e084f2115769d295fe898a94f1c9a b/Library/Artifacts/11/116e084f2115769d295fe898a94f1c9a new file mode 100644 index 0000000000..f24c35608a Binary files /dev/null and b/Library/Artifacts/11/116e084f2115769d295fe898a94f1c9a differ diff --git a/Library/Artifacts/11/11844bf739a777635a4c22d8ae433eb8 b/Library/Artifacts/11/11844bf739a777635a4c22d8ae433eb8 new file mode 100644 index 0000000000..f347d7e6a5 Binary files /dev/null and b/Library/Artifacts/11/11844bf739a777635a4c22d8ae433eb8 differ diff --git a/Library/Artifacts/11/11a92a21e8d5fa3e41d84bb962d74e7a b/Library/Artifacts/11/11a92a21e8d5fa3e41d84bb962d74e7a new file mode 100644 index 0000000000..3d6107ae9b Binary files /dev/null and b/Library/Artifacts/11/11a92a21e8d5fa3e41d84bb962d74e7a differ diff --git a/Library/Artifacts/11/11ad3c4b3a1859fa28bee20bfffe5dd8 b/Library/Artifacts/11/11ad3c4b3a1859fa28bee20bfffe5dd8 new file mode 100644 index 0000000000..2a295382be Binary files /dev/null and b/Library/Artifacts/11/11ad3c4b3a1859fa28bee20bfffe5dd8 differ diff --git a/Library/Artifacts/13/134c6dbc891d0f792fbb24f1504d2310 b/Library/Artifacts/13/134c6dbc891d0f792fbb24f1504d2310 new file mode 100644 index 0000000000..58b6d6f73e Binary files /dev/null and b/Library/Artifacts/13/134c6dbc891d0f792fbb24f1504d2310 differ diff --git a/Library/Artifacts/14/140d454e0c035e9838489299f58d7a50 b/Library/Artifacts/14/140d454e0c035e9838489299f58d7a50 new file mode 100644 index 0000000000..990ce1c15e Binary files /dev/null and b/Library/Artifacts/14/140d454e0c035e9838489299f58d7a50 differ diff --git a/Library/Artifacts/14/14e137e0f0174de7b00c391f29a8df04 b/Library/Artifacts/14/14e137e0f0174de7b00c391f29a8df04 new file mode 100644 index 0000000000..423e86d247 Binary files /dev/null and b/Library/Artifacts/14/14e137e0f0174de7b00c391f29a8df04 differ diff --git a/Library/Artifacts/15/15fb4ccafdaf2385b1626db1127d672e b/Library/Artifacts/15/15fb4ccafdaf2385b1626db1127d672e new file mode 100644 index 0000000000..23fefc9087 Binary files /dev/null and b/Library/Artifacts/15/15fb4ccafdaf2385b1626db1127d672e differ diff --git a/Library/Artifacts/16/160f2cffdb86d5b17742b1b3494636db b/Library/Artifacts/16/160f2cffdb86d5b17742b1b3494636db deleted file mode 100644 index 4649d13d14..0000000000 Binary files a/Library/Artifacts/16/160f2cffdb86d5b17742b1b3494636db and /dev/null differ diff --git a/Library/Artifacts/51/51cce0f006fd696b8adb99dcc8ee4132 b/Library/Artifacts/16/16a7460509b7df046b54290651789832 similarity index 94% rename from Library/Artifacts/51/51cce0f006fd696b8adb99dcc8ee4132 rename to Library/Artifacts/16/16a7460509b7df046b54290651789832 index b6dca005ba..6d7ea5b4c4 100644 Binary files a/Library/Artifacts/51/51cce0f006fd696b8adb99dcc8ee4132 and b/Library/Artifacts/16/16a7460509b7df046b54290651789832 differ diff --git a/Library/Artifacts/16/16a9f349b96e3aca1d7d391facbb2b69 b/Library/Artifacts/16/16a9f349b96e3aca1d7d391facbb2b69 deleted file mode 100644 index 9e6d0c4659..0000000000 Binary files a/Library/Artifacts/16/16a9f349b96e3aca1d7d391facbb2b69 and /dev/null differ diff --git a/Library/Artifacts/18/186aa1624da7eced74171005344b1dfe b/Library/Artifacts/18/186aa1624da7eced74171005344b1dfe new file mode 100644 index 0000000000..37a3b4a268 Binary files /dev/null and b/Library/Artifacts/18/186aa1624da7eced74171005344b1dfe differ diff --git a/Library/Artifacts/18/189eec62c8110da90e24eb317e28ff30 b/Library/Artifacts/18/189eec62c8110da90e24eb317e28ff30 new file mode 100644 index 0000000000..44477db078 Binary files /dev/null and b/Library/Artifacts/18/189eec62c8110da90e24eb317e28ff30 differ diff --git a/Library/Artifacts/19/1922d01c2d0499ac81bd06fa3714de7a b/Library/Artifacts/19/1922d01c2d0499ac81bd06fa3714de7a new file mode 100644 index 0000000000..d7a9978d1f Binary files /dev/null and b/Library/Artifacts/19/1922d01c2d0499ac81bd06fa3714de7a differ diff --git a/Library/Artifacts/a9/a93772a1dd1237caa0ad0f8f66aa7c00 b/Library/Artifacts/19/19471b3dbdaedc6e77fe5468042ba501 similarity index 74% rename from Library/Artifacts/a9/a93772a1dd1237caa0ad0f8f66aa7c00 rename to Library/Artifacts/19/19471b3dbdaedc6e77fe5468042ba501 index dd65f75ebd..39918eee37 100644 Binary files a/Library/Artifacts/a9/a93772a1dd1237caa0ad0f8f66aa7c00 and b/Library/Artifacts/19/19471b3dbdaedc6e77fe5468042ba501 differ diff --git a/Library/Artifacts/19/1973899dda5782c726c4f69f6bf4dabd b/Library/Artifacts/19/1973899dda5782c726c4f69f6bf4dabd deleted file mode 100644 index bbf88ef0e5..0000000000 Binary files a/Library/Artifacts/19/1973899dda5782c726c4f69f6bf4dabd and /dev/null differ diff --git a/Library/Artifacts/19/198285aad7841347fe54fc4f086dc484 b/Library/Artifacts/19/198285aad7841347fe54fc4f086dc484 new file mode 100644 index 0000000000..5b3e760633 Binary files /dev/null and b/Library/Artifacts/19/198285aad7841347fe54fc4f086dc484 differ diff --git a/Library/Artifacts/1f/1f973b9ad1a6ff21a1a47cbb3fb548c3 b/Library/Artifacts/19/198beb0618b932f261a05d51db30ee72 similarity index 96% rename from Library/Artifacts/1f/1f973b9ad1a6ff21a1a47cbb3fb548c3 rename to Library/Artifacts/19/198beb0618b932f261a05d51db30ee72 index e3e98efcc6..d4cf84fe6c 100644 Binary files a/Library/Artifacts/1f/1f973b9ad1a6ff21a1a47cbb3fb548c3 and b/Library/Artifacts/19/198beb0618b932f261a05d51db30ee72 differ diff --git a/Library/Artifacts/1c/1c98a392ad0f3bd4994837ab4c1c73c9 b/Library/Artifacts/1c/1c98a392ad0f3bd4994837ab4c1c73c9 new file mode 100644 index 0000000000..015eb38018 Binary files /dev/null and b/Library/Artifacts/1c/1c98a392ad0f3bd4994837ab4c1c73c9 differ diff --git a/Library/Artifacts/1c/1cd68ef667be33574c2142ac58d63b6b b/Library/Artifacts/1c/1cd68ef667be33574c2142ac58d63b6b new file mode 100644 index 0000000000..cde3261fbb Binary files /dev/null and b/Library/Artifacts/1c/1cd68ef667be33574c2142ac58d63b6b differ diff --git a/Library/Artifacts/1e/1ee654886c7758e98f0207f7482f6cfe b/Library/Artifacts/1e/1ee654886c7758e98f0207f7482f6cfe deleted file mode 100644 index 90a59e934f..0000000000 Binary files a/Library/Artifacts/1e/1ee654886c7758e98f0207f7482f6cfe and /dev/null differ diff --git a/Library/Artifacts/1f/1fa5b8afdbfb57ae350cde6402b5ba06 b/Library/Artifacts/1f/1fa5b8afdbfb57ae350cde6402b5ba06 new file mode 100644 index 0000000000..e9f9584b5f Binary files /dev/null and b/Library/Artifacts/1f/1fa5b8afdbfb57ae350cde6402b5ba06 differ diff --git a/Library/Artifacts/1f/1fb21da56bfff2ecc59203b01c2a54a8 b/Library/Artifacts/1f/1fb21da56bfff2ecc59203b01c2a54a8 new file mode 100644 index 0000000000..5dee4c338c Binary files /dev/null and b/Library/Artifacts/1f/1fb21da56bfff2ecc59203b01c2a54a8 differ diff --git a/Library/Artifacts/21/21668ace5bfc004de2c0fd9c7f0eae11 b/Library/Artifacts/21/21668ace5bfc004de2c0fd9c7f0eae11 new file mode 100644 index 0000000000..cbb7990fd8 Binary files /dev/null and b/Library/Artifacts/21/21668ace5bfc004de2c0fd9c7f0eae11 differ diff --git a/Library/Artifacts/22/222334250c546dc40ab994d61ea13b7e b/Library/Artifacts/22/222334250c546dc40ab994d61ea13b7e new file mode 100644 index 0000000000..a9534a82cb Binary files /dev/null and b/Library/Artifacts/22/222334250c546dc40ab994d61ea13b7e differ diff --git a/Library/Artifacts/22/2224d8cb820b0f2e385e58892abeb4e5 b/Library/Artifacts/22/2224d8cb820b0f2e385e58892abeb4e5 new file mode 100644 index 0000000000..76f942a0cd Binary files /dev/null and b/Library/Artifacts/22/2224d8cb820b0f2e385e58892abeb4e5 differ diff --git a/Library/Artifacts/23/23fe637bf7c85c22abffe1c2c7257b89 b/Library/Artifacts/23/23fe637bf7c85c22abffe1c2c7257b89 new file mode 100644 index 0000000000..a6722c93e7 Binary files /dev/null and b/Library/Artifacts/23/23fe637bf7c85c22abffe1c2c7257b89 differ diff --git a/Library/Artifacts/25/25695a27d13c4e6344e4246c03c7f715 b/Library/Artifacts/25/25695a27d13c4e6344e4246c03c7f715 new file mode 100644 index 0000000000..50edc25c6a Binary files /dev/null and b/Library/Artifacts/25/25695a27d13c4e6344e4246c03c7f715 differ diff --git a/Library/Artifacts/25/258873b56906252252c731e9843bb6a0 b/Library/Artifacts/25/258873b56906252252c731e9843bb6a0 new file mode 100644 index 0000000000..3d8915779b Binary files /dev/null and b/Library/Artifacts/25/258873b56906252252c731e9843bb6a0 differ diff --git a/Library/Artifacts/25/25aabaa83646e5acfa5185edcdf7a367 b/Library/Artifacts/25/25aabaa83646e5acfa5185edcdf7a367 new file mode 100644 index 0000000000..eae71be666 Binary files /dev/null and b/Library/Artifacts/25/25aabaa83646e5acfa5185edcdf7a367 differ diff --git a/Library/Artifacts/26/264d4df013af607b217f9604130a0773 b/Library/Artifacts/26/264d4df013af607b217f9604130a0773 new file mode 100644 index 0000000000..034d0dd3af Binary files /dev/null and b/Library/Artifacts/26/264d4df013af607b217f9604130a0773 differ diff --git a/Library/Artifacts/26/26570b89486aaa0d492e3701e8997b74 b/Library/Artifacts/26/26570b89486aaa0d492e3701e8997b74 new file mode 100644 index 0000000000..7df5d022e7 Binary files /dev/null and b/Library/Artifacts/26/26570b89486aaa0d492e3701e8997b74 differ diff --git a/Library/Artifacts/26/26b6aa0355354710e36657cef21a633e b/Library/Artifacts/26/26b6aa0355354710e36657cef21a633e deleted file mode 100644 index da98a62283..0000000000 Binary files a/Library/Artifacts/26/26b6aa0355354710e36657cef21a633e and /dev/null differ diff --git a/Library/Artifacts/27/275f9780c6351912c523db78711e7c1c b/Library/Artifacts/27/275f9780c6351912c523db78711e7c1c new file mode 100644 index 0000000000..9f0ad5bbd9 Binary files /dev/null and b/Library/Artifacts/27/275f9780c6351912c523db78711e7c1c differ diff --git a/Library/Artifacts/27/27beeece29a82ddfbea8058f6d38c4df b/Library/Artifacts/27/27beeece29a82ddfbea8058f6d38c4df new file mode 100644 index 0000000000..f82a4b357b Binary files /dev/null and b/Library/Artifacts/27/27beeece29a82ddfbea8058f6d38c4df differ diff --git a/Library/Artifacts/29/294264de8f6cf0e0d9bc25e3040f012d b/Library/Artifacts/29/294264de8f6cf0e0d9bc25e3040f012d new file mode 100644 index 0000000000..77e5041a4d Binary files /dev/null and b/Library/Artifacts/29/294264de8f6cf0e0d9bc25e3040f012d differ diff --git a/Library/Artifacts/29/29648cdd5321b4009a360a73fde62250 b/Library/Artifacts/29/29648cdd5321b4009a360a73fde62250 new file mode 100644 index 0000000000..64fb0b6e73 Binary files /dev/null and b/Library/Artifacts/29/29648cdd5321b4009a360a73fde62250 differ diff --git a/Library/Artifacts/29/29999c2ebe501d06ee01c5d9fae647f8 b/Library/Artifacts/29/29999c2ebe501d06ee01c5d9fae647f8 new file mode 100644 index 0000000000..e1d28f20bd Binary files /dev/null and b/Library/Artifacts/29/29999c2ebe501d06ee01c5d9fae647f8 differ diff --git a/Library/Artifacts/29/29f06f6a4a72661aaf2713117b299f0d b/Library/Artifacts/29/29f06f6a4a72661aaf2713117b299f0d new file mode 100644 index 0000000000..90e5ab74b6 Binary files /dev/null and b/Library/Artifacts/29/29f06f6a4a72661aaf2713117b299f0d differ diff --git a/Library/Artifacts/2a/2a25ea9d6c4db3864e199d9b604617b2 b/Library/Artifacts/2a/2a25ea9d6c4db3864e199d9b604617b2 new file mode 100644 index 0000000000..60016b8ef0 Binary files /dev/null and b/Library/Artifacts/2a/2a25ea9d6c4db3864e199d9b604617b2 differ diff --git a/Library/Artifacts/2a/2a77e1b301fae7ef2da687f13859c623 b/Library/Artifacts/2a/2a77e1b301fae7ef2da687f13859c623 new file mode 100644 index 0000000000..309306a5c5 Binary files /dev/null and b/Library/Artifacts/2a/2a77e1b301fae7ef2da687f13859c623 differ diff --git a/Library/Artifacts/2a/2aa29d5108b8ca7de6eef64312ded9b6 b/Library/Artifacts/2a/2aa29d5108b8ca7de6eef64312ded9b6 deleted file mode 100644 index 86567fdce6..0000000000 Binary files a/Library/Artifacts/2a/2aa29d5108b8ca7de6eef64312ded9b6 and /dev/null differ diff --git a/Library/Artifacts/2b/2b18068bc59e1f89d5b2294d51844882 b/Library/Artifacts/2b/2b18068bc59e1f89d5b2294d51844882 new file mode 100644 index 0000000000..22b5ad2408 Binary files /dev/null and b/Library/Artifacts/2b/2b18068bc59e1f89d5b2294d51844882 differ diff --git a/Library/Artifacts/2b/2bdc0f02357f4be4dad5d2d7df4da23b b/Library/Artifacts/2b/2bdc0f02357f4be4dad5d2d7df4da23b new file mode 100644 index 0000000000..2c4d042ee5 Binary files /dev/null and b/Library/Artifacts/2b/2bdc0f02357f4be4dad5d2d7df4da23b differ diff --git a/Library/Artifacts/2d/2df84b82ae14d3906c74e358eeb4e83c b/Library/Artifacts/2d/2df84b82ae14d3906c74e358eeb4e83c new file mode 100644 index 0000000000..366cde312a Binary files /dev/null and b/Library/Artifacts/2d/2df84b82ae14d3906c74e358eeb4e83c differ diff --git a/Library/Artifacts/2e/2ea7ca00bc1bc0f09ee6e6d3f990c916 b/Library/Artifacts/2e/2ea7ca00bc1bc0f09ee6e6d3f990c916 new file mode 100644 index 0000000000..1fd3726978 Binary files /dev/null and b/Library/Artifacts/2e/2ea7ca00bc1bc0f09ee6e6d3f990c916 differ diff --git a/Library/Artifacts/2f/2fcc022abcb2c0aec4c78af7f9ababbd b/Library/Artifacts/2f/2fcc022abcb2c0aec4c78af7f9ababbd new file mode 100644 index 0000000000..a2153dd045 Binary files /dev/null and b/Library/Artifacts/2f/2fcc022abcb2c0aec4c78af7f9ababbd differ diff --git a/Library/Artifacts/31/31505ae5546bb26bb089db98ec4e7b40 b/Library/Artifacts/31/31505ae5546bb26bb089db98ec4e7b40 new file mode 100644 index 0000000000..39c56e7d10 Binary files /dev/null and b/Library/Artifacts/31/31505ae5546bb26bb089db98ec4e7b40 differ diff --git a/Library/Artifacts/31/315e689cff0355708580dc26a20fd187 b/Library/Artifacts/31/315e689cff0355708580dc26a20fd187 new file mode 100644 index 0000000000..ffbf4be76e Binary files /dev/null and b/Library/Artifacts/31/315e689cff0355708580dc26a20fd187 differ diff --git a/Library/Artifacts/31/3179c7c1e3f571c6f77ee78966e318c9 b/Library/Artifacts/31/3179c7c1e3f571c6f77ee78966e318c9 new file mode 100644 index 0000000000..1f25ea480d Binary files /dev/null and b/Library/Artifacts/31/3179c7c1e3f571c6f77ee78966e318c9 differ diff --git a/Library/Artifacts/32/320e9b0f30fd9dbe994fc753cfbc243c b/Library/Artifacts/32/320e9b0f30fd9dbe994fc753cfbc243c new file mode 100644 index 0000000000..0239938676 Binary files /dev/null and b/Library/Artifacts/32/320e9b0f30fd9dbe994fc753cfbc243c differ diff --git a/Library/Artifacts/32/321a03227a6efb4afcc73cdacb06a7fd b/Library/Artifacts/32/321a03227a6efb4afcc73cdacb06a7fd deleted file mode 100644 index 954c82cebe..0000000000 Binary files a/Library/Artifacts/32/321a03227a6efb4afcc73cdacb06a7fd and /dev/null differ diff --git a/Library/Artifacts/32/3230008a4d9f261f94da931a2e05a311 b/Library/Artifacts/32/3230008a4d9f261f94da931a2e05a311 new file mode 100644 index 0000000000..cc4c49178d Binary files /dev/null and b/Library/Artifacts/32/3230008a4d9f261f94da931a2e05a311 differ diff --git a/Library/Artifacts/32/326cca2934abf9d2e85a5adc76514289 b/Library/Artifacts/32/326cca2934abf9d2e85a5adc76514289 new file mode 100644 index 0000000000..32b69b8afb Binary files /dev/null and b/Library/Artifacts/32/326cca2934abf9d2e85a5adc76514289 differ diff --git a/Library/Artifacts/33/33634b22f2bd7f046ef02e398389a688 b/Library/Artifacts/33/33634b22f2bd7f046ef02e398389a688 new file mode 100644 index 0000000000..85407312ac Binary files /dev/null and b/Library/Artifacts/33/33634b22f2bd7f046ef02e398389a688 differ diff --git a/Library/Artifacts/33/336684c6055863cb1aa180f32407d715 b/Library/Artifacts/33/336684c6055863cb1aa180f32407d715 new file mode 100644 index 0000000000..79ae834b9f Binary files /dev/null and b/Library/Artifacts/33/336684c6055863cb1aa180f32407d715 differ diff --git a/Library/Artifacts/33/33790c1c084e77acb5b4612d9903628b b/Library/Artifacts/33/33790c1c084e77acb5b4612d9903628b new file mode 100644 index 0000000000..4592913a65 Binary files /dev/null and b/Library/Artifacts/33/33790c1c084e77acb5b4612d9903628b differ diff --git a/Library/Artifacts/33/33f7d6d66b99503bb136849de07d194e b/Library/Artifacts/33/33f7d6d66b99503bb136849de07d194e new file mode 100644 index 0000000000..69b2a5682d Binary files /dev/null and b/Library/Artifacts/33/33f7d6d66b99503bb136849de07d194e differ diff --git a/Library/Artifacts/34/3421dc0897074fb36c017284fe85fa53 b/Library/Artifacts/34/3421dc0897074fb36c017284fe85fa53 new file mode 100644 index 0000000000..8aaddabe0d Binary files /dev/null and b/Library/Artifacts/34/3421dc0897074fb36c017284fe85fa53 differ diff --git a/Library/Artifacts/34/34523d10749a442482bfaeeffa58b6a7 b/Library/Artifacts/34/34523d10749a442482bfaeeffa58b6a7 deleted file mode 100644 index 31fa353b97..0000000000 Binary files a/Library/Artifacts/34/34523d10749a442482bfaeeffa58b6a7 and /dev/null differ diff --git a/Library/Artifacts/34/34806d6402de1e59ef257ec95e5f5e46 b/Library/Artifacts/34/34806d6402de1e59ef257ec95e5f5e46 new file mode 100644 index 0000000000..ee6597dece Binary files /dev/null and b/Library/Artifacts/34/34806d6402de1e59ef257ec95e5f5e46 differ diff --git a/Library/Artifacts/35/35166158e06698bffe6a16771a5ac506 b/Library/Artifacts/35/35166158e06698bffe6a16771a5ac506 deleted file mode 100644 index 1f8253050b..0000000000 Binary files a/Library/Artifacts/35/35166158e06698bffe6a16771a5ac506 and /dev/null differ diff --git a/Library/Artifacts/35/355ec30d6529a4535927c8f32f885363 b/Library/Artifacts/35/355ec30d6529a4535927c8f32f885363 new file mode 100644 index 0000000000..f9d32db14e Binary files /dev/null and b/Library/Artifacts/35/355ec30d6529a4535927c8f32f885363 differ diff --git a/Library/Artifacts/36/3655719f0893e0fea3ddbf3fd574417b b/Library/Artifacts/36/3655719f0893e0fea3ddbf3fd574417b deleted file mode 100644 index 5eef4df417..0000000000 Binary files a/Library/Artifacts/36/3655719f0893e0fea3ddbf3fd574417b and /dev/null differ diff --git a/Library/Artifacts/37/3753ee9957dee867c7f45baa7fba7ad2 b/Library/Artifacts/37/3753ee9957dee867c7f45baa7fba7ad2 deleted file mode 100644 index 61c7cd3103..0000000000 Binary files a/Library/Artifacts/37/3753ee9957dee867c7f45baa7fba7ad2 and /dev/null differ diff --git a/Library/Artifacts/37/379581bd45794160ec5a0e1f391fc4c9 b/Library/Artifacts/37/379581bd45794160ec5a0e1f391fc4c9 new file mode 100644 index 0000000000..1d9abcd386 Binary files /dev/null and b/Library/Artifacts/37/379581bd45794160ec5a0e1f391fc4c9 differ diff --git a/Library/Artifacts/37/37ba51dd0ddb57a5e79125d587c9dba9 b/Library/Artifacts/37/37ba51dd0ddb57a5e79125d587c9dba9 deleted file mode 100644 index 77a742291f..0000000000 Binary files a/Library/Artifacts/37/37ba51dd0ddb57a5e79125d587c9dba9 and /dev/null differ diff --git a/Library/Artifacts/37/37e3bc4cb4430a430f4c8a1f7bd4ac46 b/Library/Artifacts/37/37e3bc4cb4430a430f4c8a1f7bd4ac46 new file mode 100644 index 0000000000..8fff36ba69 Binary files /dev/null and b/Library/Artifacts/37/37e3bc4cb4430a430f4c8a1f7bd4ac46 differ diff --git a/Library/Artifacts/38/380fe38cf33416b107b494389057b027 b/Library/Artifacts/38/380fe38cf33416b107b494389057b027 deleted file mode 100644 index 822b6948b9..0000000000 Binary files a/Library/Artifacts/38/380fe38cf33416b107b494389057b027 and /dev/null differ diff --git a/Library/Artifacts/38/386bbb72f13df9c08c025a4f8973cdd0 b/Library/Artifacts/38/386bbb72f13df9c08c025a4f8973cdd0 new file mode 100644 index 0000000000..66d158a2d2 Binary files /dev/null and b/Library/Artifacts/38/386bbb72f13df9c08c025a4f8973cdd0 differ diff --git a/Library/Artifacts/38/388f316ab9853f9aee4d78c9dfc72b5a b/Library/Artifacts/38/388f316ab9853f9aee4d78c9dfc72b5a new file mode 100644 index 0000000000..a9cefe8719 Binary files /dev/null and b/Library/Artifacts/38/388f316ab9853f9aee4d78c9dfc72b5a differ diff --git a/Library/Artifacts/38/38fc1b05fb5cc934bab296b51dfbdb60 b/Library/Artifacts/38/38fc1b05fb5cc934bab296b51dfbdb60 deleted file mode 100644 index 049321034e..0000000000 Binary files a/Library/Artifacts/38/38fc1b05fb5cc934bab296b51dfbdb60 and /dev/null differ diff --git a/Library/Artifacts/39/391e5c046410387e30d8b5ce5cbc6b4f b/Library/Artifacts/39/391e5c046410387e30d8b5ce5cbc6b4f new file mode 100644 index 0000000000..305b49244d Binary files /dev/null and b/Library/Artifacts/39/391e5c046410387e30d8b5ce5cbc6b4f differ diff --git a/Library/Artifacts/39/39e093f1602829d1699e3b576a6a5c02 b/Library/Artifacts/39/39e093f1602829d1699e3b576a6a5c02 deleted file mode 100644 index 80377346d6..0000000000 Binary files a/Library/Artifacts/39/39e093f1602829d1699e3b576a6a5c02 and /dev/null differ diff --git a/Library/Artifacts/39/39f0450ad73340606b0448a9fe552396 b/Library/Artifacts/39/39f0450ad73340606b0448a9fe552396 deleted file mode 100644 index 38c7862c8b..0000000000 Binary files a/Library/Artifacts/39/39f0450ad73340606b0448a9fe552396 and /dev/null differ diff --git a/Library/Artifacts/3a/3a5dda5ef981da040311fc4deefc6a71 b/Library/Artifacts/3a/3a5dda5ef981da040311fc4deefc6a71 new file mode 100644 index 0000000000..8cb0070523 Binary files /dev/null and b/Library/Artifacts/3a/3a5dda5ef981da040311fc4deefc6a71 differ diff --git a/Library/Artifacts/3a/3a750cb19973ac6ace488d032b5f2277 b/Library/Artifacts/3a/3a750cb19973ac6ace488d032b5f2277 deleted file mode 100644 index 6031ae92c7..0000000000 Binary files a/Library/Artifacts/3a/3a750cb19973ac6ace488d032b5f2277 and /dev/null differ diff --git a/Library/Artifacts/3a/3a8655eb5be6441031eadc3a8d3a8cea b/Library/Artifacts/3a/3a8655eb5be6441031eadc3a8d3a8cea deleted file mode 100644 index feb7c289a6..0000000000 Binary files a/Library/Artifacts/3a/3a8655eb5be6441031eadc3a8d3a8cea and /dev/null differ diff --git a/Library/Artifacts/3a/3ad336a1e32280f48545074aa027b47c b/Library/Artifacts/3a/3ad336a1e32280f48545074aa027b47c deleted file mode 100644 index 48199f3a7f..0000000000 Binary files a/Library/Artifacts/3a/3ad336a1e32280f48545074aa027b47c and /dev/null differ diff --git a/Library/Artifacts/3a/3aedf766c99feabed496c47d8a03aed9 b/Library/Artifacts/3a/3aedf766c99feabed496c47d8a03aed9 new file mode 100644 index 0000000000..559aaf905a Binary files /dev/null and b/Library/Artifacts/3a/3aedf766c99feabed496c47d8a03aed9 differ diff --git a/Library/Artifacts/3b/3b463b4d0f9a09f9dc4c0d1afd322a99 b/Library/Artifacts/3b/3b463b4d0f9a09f9dc4c0d1afd322a99 new file mode 100644 index 0000000000..f539526240 Binary files /dev/null and b/Library/Artifacts/3b/3b463b4d0f9a09f9dc4c0d1afd322a99 differ diff --git a/Library/Artifacts/3b/3b65aba07f10e3a8611d714f949f182b b/Library/Artifacts/3b/3b65aba07f10e3a8611d714f949f182b new file mode 100644 index 0000000000..bc7324dc6b Binary files /dev/null and b/Library/Artifacts/3b/3b65aba07f10e3a8611d714f949f182b differ diff --git a/Library/Artifacts/3c/3c2ecaa8ca4a24fcbe5b46903eb23342 b/Library/Artifacts/3c/3c2ecaa8ca4a24fcbe5b46903eb23342 new file mode 100644 index 0000000000..2e8013ff58 Binary files /dev/null and b/Library/Artifacts/3c/3c2ecaa8ca4a24fcbe5b46903eb23342 differ diff --git a/Library/Artifacts/3d/3da5f7e6294ede5ab924fa691f833148 b/Library/Artifacts/3d/3da5f7e6294ede5ab924fa691f833148 deleted file mode 100644 index c230c2a01f..0000000000 Binary files a/Library/Artifacts/3d/3da5f7e6294ede5ab924fa691f833148 and /dev/null differ diff --git a/Library/Artifacts/3e/3e2d52d5fc42d4ebbeabbe1fbc4076c4 b/Library/Artifacts/3e/3e2d52d5fc42d4ebbeabbe1fbc4076c4 deleted file mode 100644 index 98a41e0f7d..0000000000 Binary files a/Library/Artifacts/3e/3e2d52d5fc42d4ebbeabbe1fbc4076c4 and /dev/null differ diff --git a/Library/Artifacts/3e/3ecf6549b6102c9fa27a6b6168b831d1 b/Library/Artifacts/3e/3ecf6549b6102c9fa27a6b6168b831d1 new file mode 100644 index 0000000000..0cb30c8ca1 Binary files /dev/null and b/Library/Artifacts/3e/3ecf6549b6102c9fa27a6b6168b831d1 differ diff --git a/Library/Artifacts/99/99d8d1b0d99e54a872247e0e57e8349e b/Library/Artifacts/3f/3ff1cadb62dd4f38d2160320be76bb18 similarity index 61% rename from Library/Artifacts/99/99d8d1b0d99e54a872247e0e57e8349e rename to Library/Artifacts/3f/3ff1cadb62dd4f38d2160320be76bb18 index 00bbc80076..389ca550e6 100644 Binary files a/Library/Artifacts/99/99d8d1b0d99e54a872247e0e57e8349e and b/Library/Artifacts/3f/3ff1cadb62dd4f38d2160320be76bb18 differ diff --git a/Library/Artifacts/40/409c9ddd15a5c5727f1ce79c82626c3f b/Library/Artifacts/40/409c9ddd15a5c5727f1ce79c82626c3f new file mode 100644 index 0000000000..d4c77db984 Binary files /dev/null and b/Library/Artifacts/40/409c9ddd15a5c5727f1ce79c82626c3f differ diff --git a/Library/Artifacts/41/41137c3fc68153412bf0ec008f5462f1 b/Library/Artifacts/41/41137c3fc68153412bf0ec008f5462f1 new file mode 100644 index 0000000000..b14b870f82 Binary files /dev/null and b/Library/Artifacts/41/41137c3fc68153412bf0ec008f5462f1 differ diff --git a/Library/Artifacts/41/41952aeb25a0263acabd7c4bad6ca550 b/Library/Artifacts/41/41952aeb25a0263acabd7c4bad6ca550 new file mode 100644 index 0000000000..9f251a58e5 Binary files /dev/null and b/Library/Artifacts/41/41952aeb25a0263acabd7c4bad6ca550 differ diff --git a/Library/Artifacts/42/4231270db89033e98f6407913deccc87 b/Library/Artifacts/42/4231270db89033e98f6407913deccc87 new file mode 100644 index 0000000000..8f726bddf4 Binary files /dev/null and b/Library/Artifacts/42/4231270db89033e98f6407913deccc87 differ diff --git a/Library/Artifacts/42/423d2d8e97ab3239eb460f49d08512f8 b/Library/Artifacts/42/423d2d8e97ab3239eb460f49d08512f8 new file mode 100644 index 0000000000..bdd2997c8e Binary files /dev/null and b/Library/Artifacts/42/423d2d8e97ab3239eb460f49d08512f8 differ diff --git a/Library/Artifacts/42/424abe179ea9cc56b98f04e24d4f2c0e b/Library/Artifacts/42/424abe179ea9cc56b98f04e24d4f2c0e new file mode 100644 index 0000000000..c99c48891e Binary files /dev/null and b/Library/Artifacts/42/424abe179ea9cc56b98f04e24d4f2c0e differ diff --git a/Library/Artifacts/42/425dd86e7ac8102b5955d951c8d89754 b/Library/Artifacts/42/425dd86e7ac8102b5955d951c8d89754 deleted file mode 100644 index e7b66dd578..0000000000 Binary files a/Library/Artifacts/42/425dd86e7ac8102b5955d951c8d89754 and /dev/null differ diff --git a/Library/Artifacts/44/441866bdd602bed4af0328587acaabac b/Library/Artifacts/44/441866bdd602bed4af0328587acaabac new file mode 100644 index 0000000000..a5a62b02d5 Binary files /dev/null and b/Library/Artifacts/44/441866bdd602bed4af0328587acaabac differ diff --git a/Library/Artifacts/44/44927e4ec9b327cbd7f553560461491a b/Library/Artifacts/44/44927e4ec9b327cbd7f553560461491a new file mode 100644 index 0000000000..54199a87ea Binary files /dev/null and b/Library/Artifacts/44/44927e4ec9b327cbd7f553560461491a differ diff --git a/Library/Artifacts/44/44ef98773d548918b30d4d3d3ddae12a b/Library/Artifacts/44/44ef98773d548918b30d4d3d3ddae12a new file mode 100644 index 0000000000..ffd1b60f85 Binary files /dev/null and b/Library/Artifacts/44/44ef98773d548918b30d4d3d3ddae12a differ diff --git a/Library/Artifacts/46/460026fb22267ba80b5dcd2c9cd4bfd2 b/Library/Artifacts/46/460026fb22267ba80b5dcd2c9cd4bfd2 new file mode 100644 index 0000000000..2a4ace7b54 Binary files /dev/null and b/Library/Artifacts/46/460026fb22267ba80b5dcd2c9cd4bfd2 differ diff --git a/Library/Artifacts/47/471764dd200e907e120a316fbbc20325 b/Library/Artifacts/47/471764dd200e907e120a316fbbc20325 deleted file mode 100644 index 2bca9e3cb6..0000000000 Binary files a/Library/Artifacts/47/471764dd200e907e120a316fbbc20325 and /dev/null differ diff --git a/Library/Artifacts/47/47b8b5a5f06baab5edffa7361f1530ef b/Library/Artifacts/47/47b8b5a5f06baab5edffa7361f1530ef new file mode 100644 index 0000000000..918b887175 Binary files /dev/null and b/Library/Artifacts/47/47b8b5a5f06baab5edffa7361f1530ef differ diff --git a/Library/Artifacts/48/487d15857cac8afd6d3b181d08f7fbeb b/Library/Artifacts/48/487d15857cac8afd6d3b181d08f7fbeb new file mode 100644 index 0000000000..51192e24ba Binary files /dev/null and b/Library/Artifacts/48/487d15857cac8afd6d3b181d08f7fbeb differ diff --git a/Library/Artifacts/49/49bc865493a1621e7887f2f8da46e52e b/Library/Artifacts/49/49bc865493a1621e7887f2f8da46e52e new file mode 100644 index 0000000000..c9c1705ee2 Binary files /dev/null and b/Library/Artifacts/49/49bc865493a1621e7887f2f8da46e52e differ diff --git a/Library/Artifacts/4a/4ae5ba4d209ce581b140aff04ab7b21b b/Library/Artifacts/4a/4ae5ba4d209ce581b140aff04ab7b21b new file mode 100644 index 0000000000..14392d14c2 Binary files /dev/null and b/Library/Artifacts/4a/4ae5ba4d209ce581b140aff04ab7b21b differ diff --git a/Library/Artifacts/4b/4b792ad496e1f7284b85a8bc66e61607 b/Library/Artifacts/4b/4b792ad496e1f7284b85a8bc66e61607 deleted file mode 100644 index 5791c8a95e..0000000000 Binary files a/Library/Artifacts/4b/4b792ad496e1f7284b85a8bc66e61607 and /dev/null differ diff --git a/Library/Artifacts/ba/babd4d386574062a45fb6638944d4536 b/Library/Artifacts/4b/4bbf13d648a6a60decb413f501040b84 similarity index 95% rename from Library/Artifacts/ba/babd4d386574062a45fb6638944d4536 rename to Library/Artifacts/4b/4bbf13d648a6a60decb413f501040b84 index 92c2416db8..c945b2b0be 100644 Binary files a/Library/Artifacts/ba/babd4d386574062a45fb6638944d4536 and b/Library/Artifacts/4b/4bbf13d648a6a60decb413f501040b84 differ diff --git a/Library/Artifacts/97/977f971afbe0551fbf629c9e579c5aa0 b/Library/Artifacts/4b/4bdd437fd65f6f21b6a3e4d76689d3f8 similarity index 89% rename from Library/Artifacts/97/977f971afbe0551fbf629c9e579c5aa0 rename to Library/Artifacts/4b/4bdd437fd65f6f21b6a3e4d76689d3f8 index 1a9588688f..3c77263753 100644 Binary files a/Library/Artifacts/97/977f971afbe0551fbf629c9e579c5aa0 and b/Library/Artifacts/4b/4bdd437fd65f6f21b6a3e4d76689d3f8 differ diff --git a/Library/Artifacts/4c/4c090d06f91813a4e78238750836c9ec b/Library/Artifacts/4c/4c090d06f91813a4e78238750836c9ec new file mode 100644 index 0000000000..4a09ea4e22 Binary files /dev/null and b/Library/Artifacts/4c/4c090d06f91813a4e78238750836c9ec differ diff --git a/Library/Artifacts/4c/4c170d208da16beb56afb6e3e674e700 b/Library/Artifacts/4c/4c170d208da16beb56afb6e3e674e700 new file mode 100644 index 0000000000..a734ced424 Binary files /dev/null and b/Library/Artifacts/4c/4c170d208da16beb56afb6e3e674e700 differ diff --git a/Library/Artifacts/4c/4ca7115546297f097a6243ea7ee5a5b7 b/Library/Artifacts/4c/4ca7115546297f097a6243ea7ee5a5b7 new file mode 100644 index 0000000000..bff1c28ffb Binary files /dev/null and b/Library/Artifacts/4c/4ca7115546297f097a6243ea7ee5a5b7 differ diff --git a/Library/Artifacts/4c/4cf0090badb3d69112b407e83e8564e5 b/Library/Artifacts/4c/4cf0090badb3d69112b407e83e8564e5 deleted file mode 100644 index 567de8d154..0000000000 Binary files a/Library/Artifacts/4c/4cf0090badb3d69112b407e83e8564e5 and /dev/null differ diff --git a/Library/Artifacts/4d/4dac572a4a460178e7e4634f94764d3b b/Library/Artifacts/4d/4dac572a4a460178e7e4634f94764d3b new file mode 100644 index 0000000000..cf47caa121 Binary files /dev/null and b/Library/Artifacts/4d/4dac572a4a460178e7e4634f94764d3b differ diff --git a/Library/Artifacts/4d/4dc494e6962e94d21a9855a07003ecf0 b/Library/Artifacts/4d/4dc494e6962e94d21a9855a07003ecf0 deleted file mode 100644 index 21446da4a8..0000000000 Binary files a/Library/Artifacts/4d/4dc494e6962e94d21a9855a07003ecf0 and /dev/null differ diff --git a/Library/Artifacts/4d/4df59fd5f9e3fad3f2491b7ac8486165 b/Library/Artifacts/4d/4df59fd5f9e3fad3f2491b7ac8486165 new file mode 100644 index 0000000000..7acbc27b03 Binary files /dev/null and b/Library/Artifacts/4d/4df59fd5f9e3fad3f2491b7ac8486165 differ diff --git a/Library/Artifacts/4e/4e2ee869c03cc5f3369c50266172d1b1 b/Library/Artifacts/4e/4e2ee869c03cc5f3369c50266172d1b1 deleted file mode 100644 index 7a219dbce7..0000000000 Binary files a/Library/Artifacts/4e/4e2ee869c03cc5f3369c50266172d1b1 and /dev/null differ diff --git a/Library/Artifacts/4e/4edd2b781cc70fefb68203230aee1b26 b/Library/Artifacts/4e/4edd2b781cc70fefb68203230aee1b26 new file mode 100644 index 0000000000..ae5310ae20 Binary files /dev/null and b/Library/Artifacts/4e/4edd2b781cc70fefb68203230aee1b26 differ diff --git a/Library/Artifacts/4f/4f631ca91122cfd9fd6144066ae80003 b/Library/Artifacts/4f/4f631ca91122cfd9fd6144066ae80003 deleted file mode 100644 index 49faf19c18..0000000000 Binary files a/Library/Artifacts/4f/4f631ca91122cfd9fd6144066ae80003 and /dev/null differ diff --git a/Library/Artifacts/4f/4fc1f6cf4e7a8b9b216d264145f3846b b/Library/Artifacts/4f/4fc1f6cf4e7a8b9b216d264145f3846b new file mode 100644 index 0000000000..fe84e131c2 Binary files /dev/null and b/Library/Artifacts/4f/4fc1f6cf4e7a8b9b216d264145f3846b differ diff --git a/Library/Artifacts/50/5034cdc727fce9b14ca6e02d7b7d1440 b/Library/Artifacts/50/5034cdc727fce9b14ca6e02d7b7d1440 new file mode 100644 index 0000000000..a72d5fcc82 Binary files /dev/null and b/Library/Artifacts/50/5034cdc727fce9b14ca6e02d7b7d1440 differ diff --git a/Library/Artifacts/50/5083536290d6d4a01ad2c68116a11302 b/Library/Artifacts/50/5083536290d6d4a01ad2c68116a11302 new file mode 100644 index 0000000000..204e583f3f Binary files /dev/null and b/Library/Artifacts/50/5083536290d6d4a01ad2c68116a11302 differ diff --git a/Library/Artifacts/51/5155fa91a870a9481cc7853af17f5a1b b/Library/Artifacts/51/5155fa91a870a9481cc7853af17f5a1b new file mode 100644 index 0000000000..caf14069d7 Binary files /dev/null and b/Library/Artifacts/51/5155fa91a870a9481cc7853af17f5a1b differ diff --git a/Library/Artifacts/51/51a506449e6b3c22b4b29313f926ccec b/Library/Artifacts/51/51a506449e6b3c22b4b29313f926ccec new file mode 100644 index 0000000000..11411c45c0 Binary files /dev/null and b/Library/Artifacts/51/51a506449e6b3c22b4b29313f926ccec differ diff --git a/Library/Artifacts/52/523877dbcf907177d80019012b49f5a7 b/Library/Artifacts/52/523877dbcf907177d80019012b49f5a7 deleted file mode 100644 index 4f2ff9a5ef..0000000000 Binary files a/Library/Artifacts/52/523877dbcf907177d80019012b49f5a7 and /dev/null differ diff --git a/Library/Artifacts/52/524092fdbcd6515994ff30fd50f72a69 b/Library/Artifacts/52/524092fdbcd6515994ff30fd50f72a69 deleted file mode 100644 index 39f43fdc85..0000000000 Binary files a/Library/Artifacts/52/524092fdbcd6515994ff30fd50f72a69 and /dev/null differ diff --git a/Library/Artifacts/53/531574d28ca45dac6cf682119d52bafd b/Library/Artifacts/53/531574d28ca45dac6cf682119d52bafd deleted file mode 100644 index fb34207d33..0000000000 Binary files a/Library/Artifacts/53/531574d28ca45dac6cf682119d52bafd and /dev/null differ diff --git a/Library/Artifacts/53/53bdb59abde4c7319de739fb3ba035b7 b/Library/Artifacts/53/53bdb59abde4c7319de739fb3ba035b7 new file mode 100644 index 0000000000..8ab6c65f41 Binary files /dev/null and b/Library/Artifacts/53/53bdb59abde4c7319de739fb3ba035b7 differ diff --git a/Library/Artifacts/53/53d538c8247332987d6143f9b02aa5b5 b/Library/Artifacts/53/53d538c8247332987d6143f9b02aa5b5 deleted file mode 100644 index 551629bb33..0000000000 Binary files a/Library/Artifacts/53/53d538c8247332987d6143f9b02aa5b5 and /dev/null differ diff --git a/Library/Artifacts/54/541d3e0c3ce2e910792ba62eb1e02661 b/Library/Artifacts/54/541d3e0c3ce2e910792ba62eb1e02661 deleted file mode 100644 index 4aa361b6d0..0000000000 Binary files a/Library/Artifacts/54/541d3e0c3ce2e910792ba62eb1e02661 and /dev/null differ diff --git a/Library/Artifacts/55/5597094c515a07f2770c10c347352197 b/Library/Artifacts/55/5597094c515a07f2770c10c347352197 new file mode 100644 index 0000000000..d77f16bb34 Binary files /dev/null and b/Library/Artifacts/55/5597094c515a07f2770c10c347352197 differ diff --git a/Library/Artifacts/55/559f835d30ec91eb4ed30129d6334ab5 b/Library/Artifacts/55/559f835d30ec91eb4ed30129d6334ab5 new file mode 100644 index 0000000000..9823dc574a Binary files /dev/null and b/Library/Artifacts/55/559f835d30ec91eb4ed30129d6334ab5 differ diff --git a/Library/Artifacts/56/5630b2e69b260304189f0a4526a0ceef b/Library/Artifacts/56/5630b2e69b260304189f0a4526a0ceef new file mode 100644 index 0000000000..1a6c37c18a Binary files /dev/null and b/Library/Artifacts/56/5630b2e69b260304189f0a4526a0ceef differ diff --git a/Library/Artifacts/56/566d095548e2c784442d5f95e7757636 b/Library/Artifacts/56/566d095548e2c784442d5f95e7757636 deleted file mode 100644 index 1688cecf73..0000000000 Binary files a/Library/Artifacts/56/566d095548e2c784442d5f95e7757636 and /dev/null differ diff --git a/Library/Artifacts/56/5682221a99051db792dde1bc72319016 b/Library/Artifacts/56/5682221a99051db792dde1bc72319016 new file mode 100644 index 0000000000..9d200a6847 Binary files /dev/null and b/Library/Artifacts/56/5682221a99051db792dde1bc72319016 differ diff --git a/Library/Artifacts/56/56f5efae13a5265808ae972fac6a693c b/Library/Artifacts/56/56f5efae13a5265808ae972fac6a693c new file mode 100644 index 0000000000..17c519a669 Binary files /dev/null and b/Library/Artifacts/56/56f5efae13a5265808ae972fac6a693c differ diff --git a/Library/Artifacts/57/5720aa8b82319bd8dbd3536b58b4786d b/Library/Artifacts/57/5720aa8b82319bd8dbd3536b58b4786d new file mode 100644 index 0000000000..b34dc9dd41 Binary files /dev/null and b/Library/Artifacts/57/5720aa8b82319bd8dbd3536b58b4786d differ diff --git a/Library/Artifacts/57/57c03f1af1d46b42799aed4fd52d5d99 b/Library/Artifacts/57/57c03f1af1d46b42799aed4fd52d5d99 new file mode 100644 index 0000000000..01bbfd71b8 Binary files /dev/null and b/Library/Artifacts/57/57c03f1af1d46b42799aed4fd52d5d99 differ diff --git a/Library/Artifacts/57/57fdce7cb2bc075049b7b47ebadad639 b/Library/Artifacts/57/57fdce7cb2bc075049b7b47ebadad639 new file mode 100644 index 0000000000..07aad6d326 Binary files /dev/null and b/Library/Artifacts/57/57fdce7cb2bc075049b7b47ebadad639 differ diff --git a/Library/Artifacts/58/5800350c5eda92d138a02094b8d5682d b/Library/Artifacts/58/5800350c5eda92d138a02094b8d5682d new file mode 100644 index 0000000000..00ea5cc24b Binary files /dev/null and b/Library/Artifacts/58/5800350c5eda92d138a02094b8d5682d differ diff --git a/Library/Artifacts/58/5847ea76ab2690f583b5194880545243 b/Library/Artifacts/58/5847ea76ab2690f583b5194880545243 deleted file mode 100644 index b7e736464f..0000000000 Binary files a/Library/Artifacts/58/5847ea76ab2690f583b5194880545243 and /dev/null differ diff --git a/Library/Artifacts/58/5899300429a933a5957dd8e2e51c2460 b/Library/Artifacts/58/5899300429a933a5957dd8e2e51c2460 new file mode 100644 index 0000000000..889a9559ba Binary files /dev/null and b/Library/Artifacts/58/5899300429a933a5957dd8e2e51c2460 differ diff --git a/Library/Artifacts/58/58bf569182f1cb7b4fb8d7a917b21c8d b/Library/Artifacts/58/58bf569182f1cb7b4fb8d7a917b21c8d deleted file mode 100644 index edfe37283a..0000000000 Binary files a/Library/Artifacts/58/58bf569182f1cb7b4fb8d7a917b21c8d and /dev/null differ diff --git a/Library/Artifacts/59/59105234e7afadc6ee54571b15eb3e5b b/Library/Artifacts/59/59105234e7afadc6ee54571b15eb3e5b deleted file mode 100644 index 86d17b856a..0000000000 Binary files a/Library/Artifacts/59/59105234e7afadc6ee54571b15eb3e5b and /dev/null differ diff --git a/Library/Artifacts/59/597fe6bc9c288c87dd218bb312da58da b/Library/Artifacts/59/597fe6bc9c288c87dd218bb312da58da new file mode 100644 index 0000000000..1a671a862d Binary files /dev/null and b/Library/Artifacts/59/597fe6bc9c288c87dd218bb312da58da differ diff --git a/Library/Artifacts/59/59aac1986b3bd197a9041db9215b232f b/Library/Artifacts/59/59aac1986b3bd197a9041db9215b232f new file mode 100644 index 0000000000..d5fb926adb Binary files /dev/null and b/Library/Artifacts/59/59aac1986b3bd197a9041db9215b232f differ diff --git a/Library/Artifacts/5a/5a2c7ec8cbdc0a68c630ac6cc31cffc1 b/Library/Artifacts/5a/5a2c7ec8cbdc0a68c630ac6cc31cffc1 deleted file mode 100644 index d7e284256d..0000000000 Binary files a/Library/Artifacts/5a/5a2c7ec8cbdc0a68c630ac6cc31cffc1 and /dev/null differ diff --git a/Library/Artifacts/5a/5aeed8b7799163140e8a24c93ffa9d5b b/Library/Artifacts/5a/5aeed8b7799163140e8a24c93ffa9d5b new file mode 100644 index 0000000000..35b4bc46e8 Binary files /dev/null and b/Library/Artifacts/5a/5aeed8b7799163140e8a24c93ffa9d5b differ diff --git a/Library/Artifacts/5b/5b7b8cb28c6b5aed320d84bae4604b58 b/Library/Artifacts/5b/5b7b8cb28c6b5aed320d84bae4604b58 new file mode 100644 index 0000000000..c5ea8b410a Binary files /dev/null and b/Library/Artifacts/5b/5b7b8cb28c6b5aed320d84bae4604b58 differ diff --git a/Library/Artifacts/5b/5bfcad21ab9a1d9e5c2e1f2a8d280978 b/Library/Artifacts/5b/5bfcad21ab9a1d9e5c2e1f2a8d280978 new file mode 100644 index 0000000000..86e496b16e Binary files /dev/null and b/Library/Artifacts/5b/5bfcad21ab9a1d9e5c2e1f2a8d280978 differ diff --git a/Library/Artifacts/5c/5c76fb322a75605a45be09f34690e492 b/Library/Artifacts/5c/5c76fb322a75605a45be09f34690e492 new file mode 100644 index 0000000000..9acae488f4 Binary files /dev/null and b/Library/Artifacts/5c/5c76fb322a75605a45be09f34690e492 differ diff --git a/Library/Artifacts/5d/5d3d00125172884b37ee25af8843b8a1 b/Library/Artifacts/5d/5d3d00125172884b37ee25af8843b8a1 new file mode 100644 index 0000000000..99935f7993 Binary files /dev/null and b/Library/Artifacts/5d/5d3d00125172884b37ee25af8843b8a1 differ diff --git a/Library/Artifacts/5d/5dcd7b337e267fbee8e17126cdff4123 b/Library/Artifacts/5d/5dcd7b337e267fbee8e17126cdff4123 new file mode 100644 index 0000000000..d150bca544 Binary files /dev/null and b/Library/Artifacts/5d/5dcd7b337e267fbee8e17126cdff4123 differ diff --git a/Library/Artifacts/5d/5dfb05abd8a27c784abe35b29d529016 b/Library/Artifacts/5d/5dfb05abd8a27c784abe35b29d529016 new file mode 100644 index 0000000000..c9bee38d9a Binary files /dev/null and b/Library/Artifacts/5d/5dfb05abd8a27c784abe35b29d529016 differ diff --git a/Library/Artifacts/5f/5fd432a88080a34d79d2667854fa7864 b/Library/Artifacts/5f/5fd432a88080a34d79d2667854fa7864 new file mode 100644 index 0000000000..be2409a541 Binary files /dev/null and b/Library/Artifacts/5f/5fd432a88080a34d79d2667854fa7864 differ diff --git a/Library/Artifacts/5f/5ff09d0f6d886adbffb97f1da9493071 b/Library/Artifacts/5f/5ff09d0f6d886adbffb97f1da9493071 new file mode 100644 index 0000000000..c43b77882d Binary files /dev/null and b/Library/Artifacts/5f/5ff09d0f6d886adbffb97f1da9493071 differ diff --git a/Library/Artifacts/60/601ba89affa718e898a668d0a18162bd b/Library/Artifacts/60/601ba89affa718e898a668d0a18162bd new file mode 100644 index 0000000000..7d3d7c1941 Binary files /dev/null and b/Library/Artifacts/60/601ba89affa718e898a668d0a18162bd differ diff --git a/Library/Artifacts/60/60538cf6d781ffba47bb32ff8b477650 b/Library/Artifacts/60/60538cf6d781ffba47bb32ff8b477650 deleted file mode 100644 index 3dcbac6a3d..0000000000 Binary files a/Library/Artifacts/60/60538cf6d781ffba47bb32ff8b477650 and /dev/null differ diff --git a/Library/Artifacts/60/60a36f09d50ba79d861461383aebe4bc b/Library/Artifacts/60/60a36f09d50ba79d861461383aebe4bc deleted file mode 100644 index aedb6b1b83..0000000000 Binary files a/Library/Artifacts/60/60a36f09d50ba79d861461383aebe4bc and /dev/null differ diff --git a/Library/Artifacts/60/60b5ef5db54640faa74b46181cf1f152 b/Library/Artifacts/60/60b5ef5db54640faa74b46181cf1f152 new file mode 100644 index 0000000000..b520df2622 Binary files /dev/null and b/Library/Artifacts/60/60b5ef5db54640faa74b46181cf1f152 differ diff --git a/Library/Artifacts/61/612adae1c8b10907a6e60454719f5d10 b/Library/Artifacts/61/612adae1c8b10907a6e60454719f5d10 new file mode 100644 index 0000000000..b9e3fc4973 Binary files /dev/null and b/Library/Artifacts/61/612adae1c8b10907a6e60454719f5d10 differ diff --git a/Library/Artifacts/61/61fd0a399df498c072e8e1fe800dbc1d b/Library/Artifacts/61/61fd0a399df498c072e8e1fe800dbc1d deleted file mode 100644 index 26d4077053..0000000000 Binary files a/Library/Artifacts/61/61fd0a399df498c072e8e1fe800dbc1d and /dev/null differ diff --git a/Library/Artifacts/62/62c7a2c1881e004e46dfb89fe3bfac67 b/Library/Artifacts/62/62c7a2c1881e004e46dfb89fe3bfac67 new file mode 100644 index 0000000000..998c2fef00 Binary files /dev/null and b/Library/Artifacts/62/62c7a2c1881e004e46dfb89fe3bfac67 differ diff --git a/Library/Artifacts/62/62d89c9f9583d3550b02aa2b22e0e1b4 b/Library/Artifacts/62/62d89c9f9583d3550b02aa2b22e0e1b4 new file mode 100644 index 0000000000..1fd4738261 Binary files /dev/null and b/Library/Artifacts/62/62d89c9f9583d3550b02aa2b22e0e1b4 differ diff --git a/Library/Artifacts/63/63097a055325c1bf0a4fa932bef128f9 b/Library/Artifacts/63/63097a055325c1bf0a4fa932bef128f9 new file mode 100644 index 0000000000..02cf9dbae5 Binary files /dev/null and b/Library/Artifacts/63/63097a055325c1bf0a4fa932bef128f9 differ diff --git a/Library/Artifacts/63/637782fe874244b9f2a3a35b539dd367 b/Library/Artifacts/63/637782fe874244b9f2a3a35b539dd367 new file mode 100644 index 0000000000..ad10c6f299 Binary files /dev/null and b/Library/Artifacts/63/637782fe874244b9f2a3a35b539dd367 differ diff --git a/Library/Artifacts/64/6477dc6a40184ea58dcb5c673bf515df b/Library/Artifacts/64/6477dc6a40184ea58dcb5c673bf515df new file mode 100644 index 0000000000..41e92a12b6 Binary files /dev/null and b/Library/Artifacts/64/6477dc6a40184ea58dcb5c673bf515df differ diff --git a/Library/Artifacts/64/64a0da0dc9a30433829870ed324ebebf b/Library/Artifacts/64/64a0da0dc9a30433829870ed324ebebf new file mode 100644 index 0000000000..f2dca1fd04 Binary files /dev/null and b/Library/Artifacts/64/64a0da0dc9a30433829870ed324ebebf differ diff --git a/Library/Artifacts/65/6502732cd00b3753c74711da933d0760 b/Library/Artifacts/65/6502732cd00b3753c74711da933d0760 deleted file mode 100644 index 296b022bcb..0000000000 Binary files a/Library/Artifacts/65/6502732cd00b3753c74711da933d0760 and /dev/null differ diff --git a/Library/Artifacts/65/6513261add9c30b754e08af1faad3292 b/Library/Artifacts/65/6513261add9c30b754e08af1faad3292 new file mode 100644 index 0000000000..13ff9da536 Binary files /dev/null and b/Library/Artifacts/65/6513261add9c30b754e08af1faad3292 differ diff --git a/Library/Artifacts/65/65136b69365e75333707c956ebc175db b/Library/Artifacts/65/65136b69365e75333707c956ebc175db deleted file mode 100644 index 3f97d20239..0000000000 Binary files a/Library/Artifacts/65/65136b69365e75333707c956ebc175db and /dev/null differ diff --git a/Library/Artifacts/65/6557502a43029fe8f97625b88da00a54 b/Library/Artifacts/65/6557502a43029fe8f97625b88da00a54 new file mode 100644 index 0000000000..ea81f67a32 Binary files /dev/null and b/Library/Artifacts/65/6557502a43029fe8f97625b88da00a54 differ diff --git a/Library/Artifacts/66/6618f8caa8926bc6ba2f9e7fe633309c b/Library/Artifacts/66/6618f8caa8926bc6ba2f9e7fe633309c new file mode 100644 index 0000000000..6ddae3fa76 Binary files /dev/null and b/Library/Artifacts/66/6618f8caa8926bc6ba2f9e7fe633309c differ diff --git a/Library/Artifacts/66/6622bc39c7aea751834199724bab322f b/Library/Artifacts/66/6622bc39c7aea751834199724bab322f new file mode 100644 index 0000000000..6b26866b89 Binary files /dev/null and b/Library/Artifacts/66/6622bc39c7aea751834199724bab322f differ diff --git a/Library/Artifacts/68/683f5319e1a544de118c390d24463b5d b/Library/Artifacts/68/683f5319e1a544de118c390d24463b5d new file mode 100644 index 0000000000..60fe0e1e25 Binary files /dev/null and b/Library/Artifacts/68/683f5319e1a544de118c390d24463b5d differ diff --git a/Library/Artifacts/69/693bfef768e31d917dbe2a98ca7b5ddb b/Library/Artifacts/69/693bfef768e31d917dbe2a98ca7b5ddb deleted file mode 100644 index 22e8d493f7..0000000000 Binary files a/Library/Artifacts/69/693bfef768e31d917dbe2a98ca7b5ddb and /dev/null differ diff --git a/Library/Artifacts/6a/6a23d007b21d66817b1a5931e2757aeb b/Library/Artifacts/6a/6a23d007b21d66817b1a5931e2757aeb new file mode 100644 index 0000000000..47ffdd26dd Binary files /dev/null and b/Library/Artifacts/6a/6a23d007b21d66817b1a5931e2757aeb differ diff --git a/Library/Artifacts/6a/6a401bc4946a82f160489ad013ab4531 b/Library/Artifacts/6a/6a401bc4946a82f160489ad013ab4531 new file mode 100644 index 0000000000..24cd58c8c6 Binary files /dev/null and b/Library/Artifacts/6a/6a401bc4946a82f160489ad013ab4531 differ diff --git a/Library/Artifacts/6a/6a8fd96c4b3c0144c40ca39982ef7f80 b/Library/Artifacts/6a/6a8fd96c4b3c0144c40ca39982ef7f80 new file mode 100644 index 0000000000..3f6999178d Binary files /dev/null and b/Library/Artifacts/6a/6a8fd96c4b3c0144c40ca39982ef7f80 differ diff --git a/Library/Artifacts/6a/6a90c3d8f72ef0b1b97dcf6f1f7ac6ad b/Library/Artifacts/6a/6a90c3d8f72ef0b1b97dcf6f1f7ac6ad new file mode 100644 index 0000000000..a1f8657532 Binary files /dev/null and b/Library/Artifacts/6a/6a90c3d8f72ef0b1b97dcf6f1f7ac6ad differ diff --git a/Library/Artifacts/6a/6aa25b2fbf4fd3b5e8f9684706551740 b/Library/Artifacts/6a/6aa25b2fbf4fd3b5e8f9684706551740 new file mode 100644 index 0000000000..06f9b99d37 Binary files /dev/null and b/Library/Artifacts/6a/6aa25b2fbf4fd3b5e8f9684706551740 differ diff --git a/Library/Artifacts/6a/6ad3e39d301d538e61e61037766e4581 b/Library/Artifacts/6a/6ad3e39d301d538e61e61037766e4581 new file mode 100644 index 0000000000..d71123338d Binary files /dev/null and b/Library/Artifacts/6a/6ad3e39d301d538e61e61037766e4581 differ diff --git a/Library/Artifacts/6a/6ae64fcbf58bf7d08271f9197124afd1 b/Library/Artifacts/6a/6ae64fcbf58bf7d08271f9197124afd1 new file mode 100644 index 0000000000..b968503b36 Binary files /dev/null and b/Library/Artifacts/6a/6ae64fcbf58bf7d08271f9197124afd1 differ diff --git a/Library/Artifacts/6a/6ae6b76a221224e6c0b5d459b1cb8b05 b/Library/Artifacts/6a/6ae6b76a221224e6c0b5d459b1cb8b05 new file mode 100644 index 0000000000..0484b78dac Binary files /dev/null and b/Library/Artifacts/6a/6ae6b76a221224e6c0b5d459b1cb8b05 differ diff --git a/Library/Artifacts/6b/6b748ff07e095fe9ff1cc9fac9fb7a27 b/Library/Artifacts/6b/6b748ff07e095fe9ff1cc9fac9fb7a27 deleted file mode 100644 index a31f44cc56..0000000000 Binary files a/Library/Artifacts/6b/6b748ff07e095fe9ff1cc9fac9fb7a27 and /dev/null differ diff --git a/Library/Artifacts/6b/6ba224cecf1d2e164f181438fc69ebb3 b/Library/Artifacts/6b/6ba224cecf1d2e164f181438fc69ebb3 new file mode 100644 index 0000000000..170a8a38e4 Binary files /dev/null and b/Library/Artifacts/6b/6ba224cecf1d2e164f181438fc69ebb3 differ diff --git a/Library/Artifacts/6b/6be5fbc23930b9b3d511e4f477ff352f b/Library/Artifacts/6b/6be5fbc23930b9b3d511e4f477ff352f new file mode 100644 index 0000000000..43c2104718 Binary files /dev/null and b/Library/Artifacts/6b/6be5fbc23930b9b3d511e4f477ff352f differ diff --git a/Library/Artifacts/6c/6c4e29d99d9fec5ad803e979edfced82 b/Library/Artifacts/6c/6c4e29d99d9fec5ad803e979edfced82 deleted file mode 100644 index 48dd274cde..0000000000 Binary files a/Library/Artifacts/6c/6c4e29d99d9fec5ad803e979edfced82 and /dev/null differ diff --git a/Library/Artifacts/6c/6c6939bed95b8f95ae945910b4c336cb b/Library/Artifacts/6c/6c6939bed95b8f95ae945910b4c336cb new file mode 100644 index 0000000000..f74d8dde28 Binary files /dev/null and b/Library/Artifacts/6c/6c6939bed95b8f95ae945910b4c336cb differ diff --git a/Library/Artifacts/6c/6c8e75d48d7fafa566adc9d682880a86 b/Library/Artifacts/6c/6c8e75d48d7fafa566adc9d682880a86 deleted file mode 100644 index 6eb94d8bbc..0000000000 Binary files a/Library/Artifacts/6c/6c8e75d48d7fafa566adc9d682880a86 and /dev/null differ diff --git a/Library/Artifacts/6c/6cf97f2797ee6dba7a2c957d7e3a1184 b/Library/Artifacts/6c/6cf97f2797ee6dba7a2c957d7e3a1184 new file mode 100644 index 0000000000..9ccf7c22db Binary files /dev/null and b/Library/Artifacts/6c/6cf97f2797ee6dba7a2c957d7e3a1184 differ diff --git a/Library/Artifacts/6d/6d1a489fa553be29ab90360a4d13a715 b/Library/Artifacts/6d/6d1a489fa553be29ab90360a4d13a715 new file mode 100644 index 0000000000..ae40be8cbd Binary files /dev/null and b/Library/Artifacts/6d/6d1a489fa553be29ab90360a4d13a715 differ diff --git a/Library/Artifacts/6d/6d52ead8679fa821fe5335c091550f83 b/Library/Artifacts/6d/6d52ead8679fa821fe5335c091550f83 deleted file mode 100644 index 28cea08e0c..0000000000 Binary files a/Library/Artifacts/6d/6d52ead8679fa821fe5335c091550f83 and /dev/null differ diff --git a/Library/Artifacts/6d/6dc30e0f208da0895620689a4c60231a b/Library/Artifacts/6d/6dc30e0f208da0895620689a4c60231a new file mode 100644 index 0000000000..3f71d50248 Binary files /dev/null and b/Library/Artifacts/6d/6dc30e0f208da0895620689a4c60231a differ diff --git a/Library/Artifacts/6e/6e071ed9ab29147d306176712d9a2519 b/Library/Artifacts/6e/6e071ed9ab29147d306176712d9a2519 new file mode 100644 index 0000000000..79250d2669 Binary files /dev/null and b/Library/Artifacts/6e/6e071ed9ab29147d306176712d9a2519 differ diff --git a/Library/Artifacts/6e/6e1f0129aed8ea65bb4314cbb4652f76 b/Library/Artifacts/6e/6e1f0129aed8ea65bb4314cbb4652f76 new file mode 100644 index 0000000000..43d7f90e1f Binary files /dev/null and b/Library/Artifacts/6e/6e1f0129aed8ea65bb4314cbb4652f76 differ diff --git a/Library/Artifacts/6e/6e4b144d9f269089cf7c458a713c01d2 b/Library/Artifacts/6e/6e4b144d9f269089cf7c458a713c01d2 deleted file mode 100644 index 8db95aa327..0000000000 Binary files a/Library/Artifacts/6e/6e4b144d9f269089cf7c458a713c01d2 and /dev/null differ diff --git a/Library/Artifacts/6f/6f1454b6a037f23f5b5ff725ce3fa748 b/Library/Artifacts/6f/6f1454b6a037f23f5b5ff725ce3fa748 new file mode 100644 index 0000000000..c906831435 Binary files /dev/null and b/Library/Artifacts/6f/6f1454b6a037f23f5b5ff725ce3fa748 differ diff --git a/Library/Artifacts/6f/6f31ebb6f076f17bf6076649a8279374 b/Library/Artifacts/6f/6f31ebb6f076f17bf6076649a8279374 deleted file mode 100644 index a24b68e368..0000000000 Binary files a/Library/Artifacts/6f/6f31ebb6f076f17bf6076649a8279374 and /dev/null differ diff --git a/Library/Artifacts/6f/6ffc7b6422efdb30db795e207c50b493 b/Library/Artifacts/6f/6ffc7b6422efdb30db795e207c50b493 new file mode 100644 index 0000000000..4032035ae7 Binary files /dev/null and b/Library/Artifacts/6f/6ffc7b6422efdb30db795e207c50b493 differ diff --git a/Library/Artifacts/70/7032dc4d670bf9d5f5d7f1cf31e32eaa b/Library/Artifacts/70/7032dc4d670bf9d5f5d7f1cf31e32eaa new file mode 100644 index 0000000000..c4b2633a6e Binary files /dev/null and b/Library/Artifacts/70/7032dc4d670bf9d5f5d7f1cf31e32eaa differ diff --git a/Library/Artifacts/71/71465d5c1483dfa79ad03b217f0b8f3f b/Library/Artifacts/71/71465d5c1483dfa79ad03b217f0b8f3f new file mode 100644 index 0000000000..6e1eff31d7 Binary files /dev/null and b/Library/Artifacts/71/71465d5c1483dfa79ad03b217f0b8f3f differ diff --git a/Library/Artifacts/71/714aca9c1eba05ddbee86dfe3fdec9c5 b/Library/Artifacts/71/714aca9c1eba05ddbee86dfe3fdec9c5 new file mode 100644 index 0000000000..8d636c7a24 Binary files /dev/null and b/Library/Artifacts/71/714aca9c1eba05ddbee86dfe3fdec9c5 differ diff --git a/Library/Artifacts/71/71711b0708611872a436e7caea6198a1 b/Library/Artifacts/71/71711b0708611872a436e7caea6198a1 new file mode 100644 index 0000000000..ed5dc98cb2 Binary files /dev/null and b/Library/Artifacts/71/71711b0708611872a436e7caea6198a1 differ diff --git a/Library/Artifacts/72/72e7c7765d17677e93eb1461486ff5ba b/Library/Artifacts/72/72e7c7765d17677e93eb1461486ff5ba new file mode 100644 index 0000000000..cb5230b02c Binary files /dev/null and b/Library/Artifacts/72/72e7c7765d17677e93eb1461486ff5ba differ diff --git a/Library/Artifacts/73/73b71da8c275aa58075259d945f3b53b b/Library/Artifacts/73/73b71da8c275aa58075259d945f3b53b deleted file mode 100644 index 3db9098c39..0000000000 Binary files a/Library/Artifacts/73/73b71da8c275aa58075259d945f3b53b and /dev/null differ diff --git a/Library/Artifacts/76/761fd5b2e087022041931a36795c7b0e b/Library/Artifacts/76/761fd5b2e087022041931a36795c7b0e new file mode 100644 index 0000000000..43944fc112 Binary files /dev/null and b/Library/Artifacts/76/761fd5b2e087022041931a36795c7b0e differ diff --git a/Library/Artifacts/76/7662eff97881c3fcc4930d92ce2cd504 b/Library/Artifacts/76/7662eff97881c3fcc4930d92ce2cd504 new file mode 100644 index 0000000000..11cd392b73 Binary files /dev/null and b/Library/Artifacts/76/7662eff97881c3fcc4930d92ce2cd504 differ diff --git a/Library/Artifacts/76/76c2dabcf6f5c08fa027773b3478f463 b/Library/Artifacts/76/76c2dabcf6f5c08fa027773b3478f463 new file mode 100644 index 0000000000..8b92d5f000 Binary files /dev/null and b/Library/Artifacts/76/76c2dabcf6f5c08fa027773b3478f463 differ diff --git a/Library/Artifacts/76/76cb2bd3c944b797da7d4a44bec12321 b/Library/Artifacts/76/76cb2bd3c944b797da7d4a44bec12321 new file mode 100644 index 0000000000..848275b57b Binary files /dev/null and b/Library/Artifacts/76/76cb2bd3c944b797da7d4a44bec12321 differ diff --git a/Library/Artifacts/76/76d7f41c24bae7d5544499e3269f946b b/Library/Artifacts/76/76d7f41c24bae7d5544499e3269f946b new file mode 100644 index 0000000000..105990d6ec Binary files /dev/null and b/Library/Artifacts/76/76d7f41c24bae7d5544499e3269f946b differ diff --git a/Library/Artifacts/78/788b81092b017b1721b59d5544c83101 b/Library/Artifacts/78/788b81092b017b1721b59d5544c83101 new file mode 100644 index 0000000000..8c7157cdc7 Binary files /dev/null and b/Library/Artifacts/78/788b81092b017b1721b59d5544c83101 differ diff --git a/Library/Artifacts/79/79a6ccafa689c15437c60786a3150baf b/Library/Artifacts/79/79a6ccafa689c15437c60786a3150baf deleted file mode 100644 index 9e41e218ad..0000000000 Binary files a/Library/Artifacts/79/79a6ccafa689c15437c60786a3150baf and /dev/null differ diff --git a/Library/Artifacts/79/79cfe49fb96db83d6994033f9c33eac8 b/Library/Artifacts/79/79cfe49fb96db83d6994033f9c33eac8 new file mode 100644 index 0000000000..537a1452be Binary files /dev/null and b/Library/Artifacts/79/79cfe49fb96db83d6994033f9c33eac8 differ diff --git a/Library/Artifacts/79/79f51a4c55e8016b71856b65004e8eec b/Library/Artifacts/79/79f51a4c55e8016b71856b65004e8eec new file mode 100644 index 0000000000..4bdaf80ef2 Binary files /dev/null and b/Library/Artifacts/79/79f51a4c55e8016b71856b65004e8eec differ diff --git a/Library/Artifacts/7a/7a34e75131dc5cf0ada0e916872c2faa b/Library/Artifacts/7a/7a34e75131dc5cf0ada0e916872c2faa new file mode 100644 index 0000000000..90eba98460 Binary files /dev/null and b/Library/Artifacts/7a/7a34e75131dc5cf0ada0e916872c2faa differ diff --git a/Library/Artifacts/7a/7ab1d98480424f9e5553473f770c0fbc b/Library/Artifacts/7a/7ab1d98480424f9e5553473f770c0fbc new file mode 100644 index 0000000000..c004c89b4b Binary files /dev/null and b/Library/Artifacts/7a/7ab1d98480424f9e5553473f770c0fbc differ diff --git a/Library/Artifacts/7a/7ae7e0b54bf60b153fef8c0e47f0e761 b/Library/Artifacts/7a/7ae7e0b54bf60b153fef8c0e47f0e761 new file mode 100644 index 0000000000..6cdf16d9ef Binary files /dev/null and b/Library/Artifacts/7a/7ae7e0b54bf60b153fef8c0e47f0e761 differ diff --git a/Library/Artifacts/7b/7b41e62f5378ae1acb0bf39c050873ff b/Library/Artifacts/7b/7b41e62f5378ae1acb0bf39c050873ff deleted file mode 100644 index 1c51834b61..0000000000 Binary files a/Library/Artifacts/7b/7b41e62f5378ae1acb0bf39c050873ff and /dev/null differ diff --git a/Library/Artifacts/7b/7b69b84a5da3af743ffb1b449affc6ea b/Library/Artifacts/7b/7b69b84a5da3af743ffb1b449affc6ea new file mode 100644 index 0000000000..091450b6e7 Binary files /dev/null and b/Library/Artifacts/7b/7b69b84a5da3af743ffb1b449affc6ea differ diff --git a/Library/Artifacts/7b/7b6cb50dc0c0cad05cd75a35112231ec b/Library/Artifacts/7b/7b6cb50dc0c0cad05cd75a35112231ec new file mode 100644 index 0000000000..5311cc01c9 Binary files /dev/null and b/Library/Artifacts/7b/7b6cb50dc0c0cad05cd75a35112231ec differ diff --git a/Library/Artifacts/7c/7c3c7427d7eba8d8c2fe70c45dbf7743 b/Library/Artifacts/7c/7c3c7427d7eba8d8c2fe70c45dbf7743 new file mode 100644 index 0000000000..dd2a8ef4e0 Binary files /dev/null and b/Library/Artifacts/7c/7c3c7427d7eba8d8c2fe70c45dbf7743 differ diff --git a/Library/Artifacts/7c/7cb1243e897c620512546c86a08fefb3 b/Library/Artifacts/7c/7cb1243e897c620512546c86a08fefb3 deleted file mode 100644 index 7afce27c99..0000000000 Binary files a/Library/Artifacts/7c/7cb1243e897c620512546c86a08fefb3 and /dev/null differ diff --git a/Library/Artifacts/7d/7d7f9adb5272406ec2cb28fa8c9d09b8 b/Library/Artifacts/7d/7d7f9adb5272406ec2cb28fa8c9d09b8 new file mode 100644 index 0000000000..cf4364c85e Binary files /dev/null and b/Library/Artifacts/7d/7d7f9adb5272406ec2cb28fa8c9d09b8 differ diff --git a/Library/Artifacts/7e/7e747ac040b9b3d9af732ddf10e76082 b/Library/Artifacts/7e/7e747ac040b9b3d9af732ddf10e76082 new file mode 100644 index 0000000000..25e3e8455f Binary files /dev/null and b/Library/Artifacts/7e/7e747ac040b9b3d9af732ddf10e76082 differ diff --git a/Library/Artifacts/7e/7e8535856b3dbcdebac6f499364b1599 b/Library/Artifacts/7e/7e8535856b3dbcdebac6f499364b1599 new file mode 100644 index 0000000000..275dc4ee74 Binary files /dev/null and b/Library/Artifacts/7e/7e8535856b3dbcdebac6f499364b1599 differ diff --git a/Library/Artifacts/7f/7f299525dae12dbadb7d4806874ecc8c b/Library/Artifacts/7f/7f299525dae12dbadb7d4806874ecc8c deleted file mode 100644 index 98ef41cb2a..0000000000 Binary files a/Library/Artifacts/7f/7f299525dae12dbadb7d4806874ecc8c and /dev/null differ diff --git a/Library/Artifacts/7f/7f3ad290f0a741dd301f2ff5016300bb b/Library/Artifacts/7f/7f3ad290f0a741dd301f2ff5016300bb deleted file mode 100644 index 9dde514b62..0000000000 Binary files a/Library/Artifacts/7f/7f3ad290f0a741dd301f2ff5016300bb and /dev/null differ diff --git a/Library/Artifacts/7f/7f77c916cf1a87531d48c195b1900f3f b/Library/Artifacts/7f/7f77c916cf1a87531d48c195b1900f3f new file mode 100644 index 0000000000..53043dcaa2 Binary files /dev/null and b/Library/Artifacts/7f/7f77c916cf1a87531d48c195b1900f3f differ diff --git a/Library/Artifacts/7f/7f8329b226f7475727bd92e8163b63b6 b/Library/Artifacts/7f/7f8329b226f7475727bd92e8163b63b6 deleted file mode 100644 index 2477304061..0000000000 Binary files a/Library/Artifacts/7f/7f8329b226f7475727bd92e8163b63b6 and /dev/null differ diff --git a/Library/Artifacts/7f/7fdfa6e4b218254e1fafc7e99df25292 b/Library/Artifacts/7f/7fdfa6e4b218254e1fafc7e99df25292 new file mode 100644 index 0000000000..b52551a9be Binary files /dev/null and b/Library/Artifacts/7f/7fdfa6e4b218254e1fafc7e99df25292 differ diff --git a/Library/Artifacts/7f/7ffbfffbda905f3fb0eb369156280551 b/Library/Artifacts/7f/7ffbfffbda905f3fb0eb369156280551 new file mode 100644 index 0000000000..9bdf8ae0b2 Binary files /dev/null and b/Library/Artifacts/7f/7ffbfffbda905f3fb0eb369156280551 differ diff --git a/Library/Artifacts/7f/7ffd628ecb34f8c818f8f0820b67e884 b/Library/Artifacts/7f/7ffd628ecb34f8c818f8f0820b67e884 new file mode 100644 index 0000000000..9d68325ef9 Binary files /dev/null and b/Library/Artifacts/7f/7ffd628ecb34f8c818f8f0820b67e884 differ diff --git a/Library/Artifacts/80/80a223cc439cbb952da03af1bb054a33 b/Library/Artifacts/80/80a223cc439cbb952da03af1bb054a33 new file mode 100644 index 0000000000..9924897bfe Binary files /dev/null and b/Library/Artifacts/80/80a223cc439cbb952da03af1bb054a33 differ diff --git a/Library/Artifacts/80/80da9b9f5a107a1f3a11e1023c553b39 b/Library/Artifacts/80/80da9b9f5a107a1f3a11e1023c553b39 new file mode 100644 index 0000000000..ed908a9557 Binary files /dev/null and b/Library/Artifacts/80/80da9b9f5a107a1f3a11e1023c553b39 differ diff --git a/Library/Artifacts/80/80f2acd53e817f77e39297b7562b036f b/Library/Artifacts/80/80f2acd53e817f77e39297b7562b036f deleted file mode 100644 index b37e9ea8de..0000000000 Binary files a/Library/Artifacts/80/80f2acd53e817f77e39297b7562b036f and /dev/null differ diff --git a/Library/Artifacts/81/8181a85232610891900b5ed460a6597e b/Library/Artifacts/81/8181a85232610891900b5ed460a6597e deleted file mode 100644 index aa55d4b47f..0000000000 Binary files a/Library/Artifacts/81/8181a85232610891900b5ed460a6597e and /dev/null differ diff --git a/Library/Artifacts/82/820e992ec2bef045558b33c2a9dda3f2 b/Library/Artifacts/82/820e992ec2bef045558b33c2a9dda3f2 new file mode 100644 index 0000000000..eb46cc6515 Binary files /dev/null and b/Library/Artifacts/82/820e992ec2bef045558b33c2a9dda3f2 differ diff --git a/Library/Artifacts/83/834fc9b3b450e8283507778b8a0cac5e b/Library/Artifacts/83/834fc9b3b450e8283507778b8a0cac5e new file mode 100644 index 0000000000..f1a475c072 Binary files /dev/null and b/Library/Artifacts/83/834fc9b3b450e8283507778b8a0cac5e differ diff --git a/Library/Artifacts/83/838e1213b6a0f50cc9a7973f7b6b4bac b/Library/Artifacts/83/838e1213b6a0f50cc9a7973f7b6b4bac new file mode 100644 index 0000000000..341be97161 Binary files /dev/null and b/Library/Artifacts/83/838e1213b6a0f50cc9a7973f7b6b4bac differ diff --git a/Library/Artifacts/83/8395e7a73fdf9978b3df29e912dea0c3 b/Library/Artifacts/83/8395e7a73fdf9978b3df29e912dea0c3 new file mode 100644 index 0000000000..bdd59cbf44 Binary files /dev/null and b/Library/Artifacts/83/8395e7a73fdf9978b3df29e912dea0c3 differ diff --git a/Library/Artifacts/83/83a467dd3dbeb0728d00efc9a9242972 b/Library/Artifacts/83/83a467dd3dbeb0728d00efc9a9242972 new file mode 100644 index 0000000000..c91ed32efd Binary files /dev/null and b/Library/Artifacts/83/83a467dd3dbeb0728d00efc9a9242972 differ diff --git a/Library/Artifacts/84/841ce87bb41b48b47ff28f61b5ffe97a b/Library/Artifacts/84/841ce87bb41b48b47ff28f61b5ffe97a new file mode 100644 index 0000000000..af30b22ec1 Binary files /dev/null and b/Library/Artifacts/84/841ce87bb41b48b47ff28f61b5ffe97a differ diff --git a/Library/Artifacts/84/8423bed799e4328bce9b69ee62d2c4b6 b/Library/Artifacts/84/8423bed799e4328bce9b69ee62d2c4b6 new file mode 100644 index 0000000000..863915e737 Binary files /dev/null and b/Library/Artifacts/84/8423bed799e4328bce9b69ee62d2c4b6 differ diff --git a/Library/Artifacts/84/84350d79bbc7806e1836de11ae6dc162 b/Library/Artifacts/84/84350d79bbc7806e1836de11ae6dc162 new file mode 100644 index 0000000000..0d433ac9a5 Binary files /dev/null and b/Library/Artifacts/84/84350d79bbc7806e1836de11ae6dc162 differ diff --git a/Library/Artifacts/85/851961f7892208188b0081fc5f769a32 b/Library/Artifacts/85/851961f7892208188b0081fc5f769a32 new file mode 100644 index 0000000000..2d01f83261 Binary files /dev/null and b/Library/Artifacts/85/851961f7892208188b0081fc5f769a32 differ diff --git a/Library/Artifacts/86/862b84c6f96608137d5a7bcc625565a3 b/Library/Artifacts/86/862b84c6f96608137d5a7bcc625565a3 new file mode 100644 index 0000000000..40e0849d88 Binary files /dev/null and b/Library/Artifacts/86/862b84c6f96608137d5a7bcc625565a3 differ diff --git a/Library/Artifacts/86/86a3ffd64fa82256be441f7ff2edf99a b/Library/Artifacts/86/86a3ffd64fa82256be441f7ff2edf99a deleted file mode 100644 index d997567b8b..0000000000 Binary files a/Library/Artifacts/86/86a3ffd64fa82256be441f7ff2edf99a and /dev/null differ diff --git a/Library/Artifacts/89/890e5ddce99c15c46d870f9610dda8d1 b/Library/Artifacts/89/890e5ddce99c15c46d870f9610dda8d1 new file mode 100644 index 0000000000..1f805d336b Binary files /dev/null and b/Library/Artifacts/89/890e5ddce99c15c46d870f9610dda8d1 differ diff --git a/Library/Artifacts/89/896e5f0c98bf1cd0896a762f32b00f3a b/Library/Artifacts/89/896e5f0c98bf1cd0896a762f32b00f3a deleted file mode 100644 index 930e17f270..0000000000 Binary files a/Library/Artifacts/89/896e5f0c98bf1cd0896a762f32b00f3a and /dev/null differ diff --git a/Library/Artifacts/89/89a8bbcb55436a9c5b90a558f8930dce b/Library/Artifacts/89/89a8bbcb55436a9c5b90a558f8930dce new file mode 100644 index 0000000000..1f41ec21e2 Binary files /dev/null and b/Library/Artifacts/89/89a8bbcb55436a9c5b90a558f8930dce differ diff --git a/Library/Artifacts/8b/8bfc39f02d9010e7a2fb042e62a7e636 b/Library/Artifacts/8b/8bfc39f02d9010e7a2fb042e62a7e636 new file mode 100644 index 0000000000..def8880a85 Binary files /dev/null and b/Library/Artifacts/8b/8bfc39f02d9010e7a2fb042e62a7e636 differ diff --git a/Library/Artifacts/8c/8c4d2077f904496abdf77f59efcb0d54 b/Library/Artifacts/8c/8c4d2077f904496abdf77f59efcb0d54 new file mode 100644 index 0000000000..8ef7354d7a Binary files /dev/null and b/Library/Artifacts/8c/8c4d2077f904496abdf77f59efcb0d54 differ diff --git a/Library/Artifacts/8d/8d485b16f8a63b8a8986b63f17e03b08 b/Library/Artifacts/8d/8d485b16f8a63b8a8986b63f17e03b08 new file mode 100644 index 0000000000..d4ce42b4da Binary files /dev/null and b/Library/Artifacts/8d/8d485b16f8a63b8a8986b63f17e03b08 differ diff --git a/Library/Artifacts/8d/8db416fb46d3a43be0dc4bd6e1159c9b b/Library/Artifacts/8d/8db416fb46d3a43be0dc4bd6e1159c9b new file mode 100644 index 0000000000..fa8517db60 Binary files /dev/null and b/Library/Artifacts/8d/8db416fb46d3a43be0dc4bd6e1159c9b differ diff --git a/Library/Artifacts/8d/8de3f08c4a566647625307847b253d4e b/Library/Artifacts/8d/8de3f08c4a566647625307847b253d4e deleted file mode 100644 index 181b98aec2..0000000000 Binary files a/Library/Artifacts/8d/8de3f08c4a566647625307847b253d4e and /dev/null differ diff --git a/Library/Artifacts/8e/8e1ccac02bc00cc6aea81e32e5e0bb1a b/Library/Artifacts/8e/8e1ccac02bc00cc6aea81e32e5e0bb1a new file mode 100644 index 0000000000..e8cb518d90 Binary files /dev/null and b/Library/Artifacts/8e/8e1ccac02bc00cc6aea81e32e5e0bb1a differ diff --git a/Library/Artifacts/8e/8ecebadbfb87a373db39c116404776cc b/Library/Artifacts/8e/8ecebadbfb87a373db39c116404776cc new file mode 100644 index 0000000000..6cbf9601d9 Binary files /dev/null and b/Library/Artifacts/8e/8ecebadbfb87a373db39c116404776cc differ diff --git a/Library/Artifacts/8f/8fec9ffac53e03b1eb54cf0ba084cf3c b/Library/Artifacts/8f/8fec9ffac53e03b1eb54cf0ba084cf3c new file mode 100644 index 0000000000..579c499e7d Binary files /dev/null and b/Library/Artifacts/8f/8fec9ffac53e03b1eb54cf0ba084cf3c differ diff --git a/Library/Artifacts/91/919aaa715fcae55ac640495136b22b1b b/Library/Artifacts/91/919aaa715fcae55ac640495136b22b1b new file mode 100644 index 0000000000..bf68ab64df Binary files /dev/null and b/Library/Artifacts/91/919aaa715fcae55ac640495136b22b1b differ diff --git a/Library/Artifacts/91/91ccd6dcf9ecb51a211a479c0d56240f b/Library/Artifacts/91/91ccd6dcf9ecb51a211a479c0d56240f new file mode 100644 index 0000000000..c029f57098 Binary files /dev/null and b/Library/Artifacts/91/91ccd6dcf9ecb51a211a479c0d56240f differ diff --git a/Library/Artifacts/92/923dcdefc9b5984ac89d8b1a31f8c3fc b/Library/Artifacts/92/923dcdefc9b5984ac89d8b1a31f8c3fc new file mode 100644 index 0000000000..709811f212 Binary files /dev/null and b/Library/Artifacts/92/923dcdefc9b5984ac89d8b1a31f8c3fc differ diff --git a/Library/Artifacts/92/927702639590fb9b8a27ec188c5dcb9e b/Library/Artifacts/92/927702639590fb9b8a27ec188c5dcb9e new file mode 100644 index 0000000000..f0d7541676 Binary files /dev/null and b/Library/Artifacts/92/927702639590fb9b8a27ec188c5dcb9e differ diff --git a/Library/Artifacts/94/94b1b7a1022969f64612bef9d2e467f5 b/Library/Artifacts/94/94b1b7a1022969f64612bef9d2e467f5 deleted file mode 100644 index 468eaa5df9..0000000000 Binary files a/Library/Artifacts/94/94b1b7a1022969f64612bef9d2e467f5 and /dev/null differ diff --git a/Library/Artifacts/94/94edaa2ab391e3a89cc1e036f5ccfe2b b/Library/Artifacts/94/94edaa2ab391e3a89cc1e036f5ccfe2b deleted file mode 100644 index 7f11b2f900..0000000000 Binary files a/Library/Artifacts/94/94edaa2ab391e3a89cc1e036f5ccfe2b and /dev/null differ diff --git a/Library/Artifacts/95/954ac19ce635bd007322d4870d7f5c2f b/Library/Artifacts/95/954ac19ce635bd007322d4870d7f5c2f new file mode 100644 index 0000000000..3187acb8ce Binary files /dev/null and b/Library/Artifacts/95/954ac19ce635bd007322d4870d7f5c2f differ diff --git a/Library/Artifacts/95/956b4488653815e661c569b7cfbadd10 b/Library/Artifacts/95/956b4488653815e661c569b7cfbadd10 new file mode 100644 index 0000000000..ebeae35052 Binary files /dev/null and b/Library/Artifacts/95/956b4488653815e661c569b7cfbadd10 differ diff --git a/Library/Artifacts/95/95efe22f1ad730a86d109464ceb4e646 b/Library/Artifacts/95/95efe22f1ad730a86d109464ceb4e646 new file mode 100644 index 0000000000..33ba01a7ba Binary files /dev/null and b/Library/Artifacts/95/95efe22f1ad730a86d109464ceb4e646 differ diff --git a/Library/Artifacts/96/96244b1c2bf49232137f3e85fe84caca b/Library/Artifacts/96/96244b1c2bf49232137f3e85fe84caca new file mode 100644 index 0000000000..b16ba3a589 Binary files /dev/null and b/Library/Artifacts/96/96244b1c2bf49232137f3e85fe84caca differ diff --git a/Library/Artifacts/96/96f3ab901a641d461a423f6b6ee1168b b/Library/Artifacts/96/96f3ab901a641d461a423f6b6ee1168b deleted file mode 100644 index 4f7f9f1937..0000000000 Binary files a/Library/Artifacts/96/96f3ab901a641d461a423f6b6ee1168b and /dev/null differ diff --git a/Library/Artifacts/97/972f90faff80e47b69852ab67e43355e b/Library/Artifacts/97/972f90faff80e47b69852ab67e43355e new file mode 100644 index 0000000000..5fe81509e4 Binary files /dev/null and b/Library/Artifacts/97/972f90faff80e47b69852ab67e43355e differ diff --git a/Library/Artifacts/98/98249cf74986ce3df2b541a1d2682dd2 b/Library/Artifacts/98/98249cf74986ce3df2b541a1d2682dd2 new file mode 100644 index 0000000000..b510f6897f Binary files /dev/null and b/Library/Artifacts/98/98249cf74986ce3df2b541a1d2682dd2 differ diff --git a/Library/Artifacts/98/98ac9ff50f6ab21a89d84f1579fd2102 b/Library/Artifacts/98/98ac9ff50f6ab21a89d84f1579fd2102 new file mode 100644 index 0000000000..a8042c5670 Binary files /dev/null and b/Library/Artifacts/98/98ac9ff50f6ab21a89d84f1579fd2102 differ diff --git a/Library/Artifacts/9b/9b5d8d8a9d717b8f5d1f4b98f16a4f57 b/Library/Artifacts/9b/9b5d8d8a9d717b8f5d1f4b98f16a4f57 new file mode 100644 index 0000000000..fa8529ec98 Binary files /dev/null and b/Library/Artifacts/9b/9b5d8d8a9d717b8f5d1f4b98f16a4f57 differ diff --git a/Library/Artifacts/9b/9b7fff62a1a8b2726c0d93dd943cff59 b/Library/Artifacts/9b/9b7fff62a1a8b2726c0d93dd943cff59 new file mode 100644 index 0000000000..ccd6f12108 Binary files /dev/null and b/Library/Artifacts/9b/9b7fff62a1a8b2726c0d93dd943cff59 differ diff --git a/Library/Artifacts/9c/9c250ea7baf9a519fbc0d40c50416307 b/Library/Artifacts/9c/9c250ea7baf9a519fbc0d40c50416307 deleted file mode 100644 index d298422e1d..0000000000 Binary files a/Library/Artifacts/9c/9c250ea7baf9a519fbc0d40c50416307 and /dev/null differ diff --git a/Library/Artifacts/9c/9cafba5113bff80eab2a96e037dd2f76 b/Library/Artifacts/9c/9cafba5113bff80eab2a96e037dd2f76 deleted file mode 100644 index 8ee1f312e5..0000000000 Binary files a/Library/Artifacts/9c/9cafba5113bff80eab2a96e037dd2f76 and /dev/null differ diff --git a/Library/Artifacts/9d/9d36b2eccf15f8a3dfea69778b7270ff b/Library/Artifacts/9d/9d36b2eccf15f8a3dfea69778b7270ff new file mode 100644 index 0000000000..b2c00b4aa2 Binary files /dev/null and b/Library/Artifacts/9d/9d36b2eccf15f8a3dfea69778b7270ff differ diff --git a/Library/Artifacts/9d/9d3910c349aec24cea470fc53c19c1ab b/Library/Artifacts/9d/9d3910c349aec24cea470fc53c19c1ab new file mode 100644 index 0000000000..8d2dc21191 Binary files /dev/null and b/Library/Artifacts/9d/9d3910c349aec24cea470fc53c19c1ab differ diff --git a/Library/Artifacts/9d/9dc808133a8479e8865a3b8b1cd4a4e6 b/Library/Artifacts/9d/9dc808133a8479e8865a3b8b1cd4a4e6 deleted file mode 100644 index 73ce18b1fe..0000000000 Binary files a/Library/Artifacts/9d/9dc808133a8479e8865a3b8b1cd4a4e6 and /dev/null differ diff --git a/Library/Artifacts/9e/9eaa46400a5dcee28a29aed0cf91852a b/Library/Artifacts/9e/9eaa46400a5dcee28a29aed0cf91852a new file mode 100644 index 0000000000..d9efceb787 Binary files /dev/null and b/Library/Artifacts/9e/9eaa46400a5dcee28a29aed0cf91852a differ diff --git a/Library/Artifacts/9f/9f6fe490d6be88e9cbae7fd977afb078 b/Library/Artifacts/9f/9f6fe490d6be88e9cbae7fd977afb078 new file mode 100644 index 0000000000..9e8b0ce5c6 Binary files /dev/null and b/Library/Artifacts/9f/9f6fe490d6be88e9cbae7fd977afb078 differ diff --git a/Library/Artifacts/9f/9fc74104175f6321edf8f422be9aca9c b/Library/Artifacts/9f/9fc74104175f6321edf8f422be9aca9c new file mode 100644 index 0000000000..cbb86c1ba5 Binary files /dev/null and b/Library/Artifacts/9f/9fc74104175f6321edf8f422be9aca9c differ diff --git a/Library/Artifacts/a0/a0e85ec20d8a8356edd4f4c5ee1f1a14 b/Library/Artifacts/a0/a0e85ec20d8a8356edd4f4c5ee1f1a14 new file mode 100644 index 0000000000..a525e698b3 Binary files /dev/null and b/Library/Artifacts/a0/a0e85ec20d8a8356edd4f4c5ee1f1a14 differ diff --git a/Library/Artifacts/a1/a15284e4539d7fadfd0176610845ed06 b/Library/Artifacts/a1/a15284e4539d7fadfd0176610845ed06 new file mode 100644 index 0000000000..31bc7570c3 Binary files /dev/null and b/Library/Artifacts/a1/a15284e4539d7fadfd0176610845ed06 differ diff --git a/Library/Artifacts/a1/a1cc819e276ae24e7fb7951e919853fe b/Library/Artifacts/a1/a1cc819e276ae24e7fb7951e919853fe new file mode 100644 index 0000000000..28810953d0 Binary files /dev/null and b/Library/Artifacts/a1/a1cc819e276ae24e7fb7951e919853fe differ diff --git a/Library/Artifacts/a2/a23f06d301da7a37c036b36fca9b619c b/Library/Artifacts/a2/a23f06d301da7a37c036b36fca9b619c new file mode 100644 index 0000000000..1108f0e56a Binary files /dev/null and b/Library/Artifacts/a2/a23f06d301da7a37c036b36fca9b619c differ diff --git a/Library/Artifacts/a2/a25d56641a6e65d1f3751800ca083a27 b/Library/Artifacts/a2/a25d56641a6e65d1f3751800ca083a27 new file mode 100644 index 0000000000..c3194a47b2 Binary files /dev/null and b/Library/Artifacts/a2/a25d56641a6e65d1f3751800ca083a27 differ diff --git a/Library/Artifacts/a2/a2a79dcd9f667cedbf06520c01cf2b29 b/Library/Artifacts/a2/a2a79dcd9f667cedbf06520c01cf2b29 new file mode 100644 index 0000000000..736126aad8 Binary files /dev/null and b/Library/Artifacts/a2/a2a79dcd9f667cedbf06520c01cf2b29 differ diff --git a/Library/Artifacts/a3/a37cbbeb9d4cfb01387e5bd706c7d396 b/Library/Artifacts/a3/a37cbbeb9d4cfb01387e5bd706c7d396 new file mode 100644 index 0000000000..db6e741010 Binary files /dev/null and b/Library/Artifacts/a3/a37cbbeb9d4cfb01387e5bd706c7d396 differ diff --git a/Library/Artifacts/a3/a3fb97b125636a23eb58787b378b5974 b/Library/Artifacts/a3/a3fb97b125636a23eb58787b378b5974 new file mode 100644 index 0000000000..066f110150 Binary files /dev/null and b/Library/Artifacts/a3/a3fb97b125636a23eb58787b378b5974 differ diff --git a/Library/Artifacts/a4/a423e3adbcd063af02b09eeefa988b90 b/Library/Artifacts/a4/a423e3adbcd063af02b09eeefa988b90 new file mode 100644 index 0000000000..0c9c42761c Binary files /dev/null and b/Library/Artifacts/a4/a423e3adbcd063af02b09eeefa988b90 differ diff --git a/Library/Artifacts/a4/a436b0aefff5a11258b4676594445816 b/Library/Artifacts/a4/a436b0aefff5a11258b4676594445816 deleted file mode 100644 index b4709101e9..0000000000 Binary files a/Library/Artifacts/a4/a436b0aefff5a11258b4676594445816 and /dev/null differ diff --git a/Library/Artifacts/a4/a45dc65624381ce7e6afdf330ff941ee b/Library/Artifacts/a4/a45dc65624381ce7e6afdf330ff941ee new file mode 100644 index 0000000000..5ec9280722 Binary files /dev/null and b/Library/Artifacts/a4/a45dc65624381ce7e6afdf330ff941ee differ diff --git a/Library/Artifacts/a4/a481a6c579d0e93a84c8ae874d93efdf b/Library/Artifacts/a4/a481a6c579d0e93a84c8ae874d93efdf new file mode 100644 index 0000000000..3826d308d2 Binary files /dev/null and b/Library/Artifacts/a4/a481a6c579d0e93a84c8ae874d93efdf differ diff --git a/Library/Artifacts/a5/a5b653bb8c619b694ba58691ea3210f7 b/Library/Artifacts/a5/a5b653bb8c619b694ba58691ea3210f7 deleted file mode 100644 index 29aeb36d3c..0000000000 Binary files a/Library/Artifacts/a5/a5b653bb8c619b694ba58691ea3210f7 and /dev/null differ diff --git a/Library/Artifacts/a5/a5ff00fbacc4e2e0f7a5a94ef29578fb b/Library/Artifacts/a5/a5ff00fbacc4e2e0f7a5a94ef29578fb new file mode 100644 index 0000000000..c1b1a6190e Binary files /dev/null and b/Library/Artifacts/a5/a5ff00fbacc4e2e0f7a5a94ef29578fb differ diff --git a/Library/Artifacts/a6/a632dccbac6a83a7c56cb9ab7bb3d4ed b/Library/Artifacts/a6/a632dccbac6a83a7c56cb9ab7bb3d4ed new file mode 100644 index 0000000000..e75761e4fe Binary files /dev/null and b/Library/Artifacts/a6/a632dccbac6a83a7c56cb9ab7bb3d4ed differ diff --git a/Library/Artifacts/a6/a691fc446c399164ce504d96c1ffe5e0 b/Library/Artifacts/a6/a691fc446c399164ce504d96c1ffe5e0 new file mode 100644 index 0000000000..8f86817253 Binary files /dev/null and b/Library/Artifacts/a6/a691fc446c399164ce504d96c1ffe5e0 differ diff --git a/Library/Artifacts/a6/a6a3005dd1fc90c09c6fe792c2c3e79e b/Library/Artifacts/a6/a6a3005dd1fc90c09c6fe792c2c3e79e new file mode 100644 index 0000000000..a25a6aa9fa Binary files /dev/null and b/Library/Artifacts/a6/a6a3005dd1fc90c09c6fe792c2c3e79e differ diff --git a/Library/Artifacts/a7/a76611a89cf3e10fc0606f071952fa81 b/Library/Artifacts/a7/a76611a89cf3e10fc0606f071952fa81 new file mode 100644 index 0000000000..4d3615ad31 Binary files /dev/null and b/Library/Artifacts/a7/a76611a89cf3e10fc0606f071952fa81 differ diff --git a/Library/Artifacts/a7/a7f26a54fb11c48538895d07066581e9 b/Library/Artifacts/a7/a7f26a54fb11c48538895d07066581e9 new file mode 100644 index 0000000000..92b30ab298 Binary files /dev/null and b/Library/Artifacts/a7/a7f26a54fb11c48538895d07066581e9 differ diff --git a/Library/Artifacts/a8/a88727746e3575741bef6d20f10f85e4 b/Library/Artifacts/a8/a88727746e3575741bef6d20f10f85e4 deleted file mode 100644 index 40e0ffb423..0000000000 Binary files a/Library/Artifacts/a8/a88727746e3575741bef6d20f10f85e4 and /dev/null differ diff --git a/Library/Artifacts/ad/ad8e04b09966849dc7b7f20cfe4e2c38 b/Library/Artifacts/ad/ad8e04b09966849dc7b7f20cfe4e2c38 new file mode 100644 index 0000000000..ffb79375cd Binary files /dev/null and b/Library/Artifacts/ad/ad8e04b09966849dc7b7f20cfe4e2c38 differ diff --git a/Library/Artifacts/ad/addbf1cd9396d37a4dd30b6d88cfec75 b/Library/Artifacts/ad/addbf1cd9396d37a4dd30b6d88cfec75 new file mode 100644 index 0000000000..2b9a672b39 Binary files /dev/null and b/Library/Artifacts/ad/addbf1cd9396d37a4dd30b6d88cfec75 differ diff --git a/Library/Artifacts/ae/ae2cfc9c14ef83c0f5d51ba440d00ef7 b/Library/Artifacts/ae/ae2cfc9c14ef83c0f5d51ba440d00ef7 new file mode 100644 index 0000000000..761b40d16c Binary files /dev/null and b/Library/Artifacts/ae/ae2cfc9c14ef83c0f5d51ba440d00ef7 differ diff --git a/Library/Artifacts/ae/aec5715915b6a3fe6ff74e86d17be366 b/Library/Artifacts/ae/aec5715915b6a3fe6ff74e86d17be366 new file mode 100644 index 0000000000..5dd12523a2 Binary files /dev/null and b/Library/Artifacts/ae/aec5715915b6a3fe6ff74e86d17be366 differ diff --git a/Library/Artifacts/ae/aee3d731062265aa53d7c63df66c9516 b/Library/Artifacts/ae/aee3d731062265aa53d7c63df66c9516 new file mode 100644 index 0000000000..a58cd05725 Binary files /dev/null and b/Library/Artifacts/ae/aee3d731062265aa53d7c63df66c9516 differ diff --git a/Library/Artifacts/af/afaac98dacd024abc5f0ed0a3402b369 b/Library/Artifacts/af/afaac98dacd024abc5f0ed0a3402b369 new file mode 100644 index 0000000000..68a0542d8f Binary files /dev/null and b/Library/Artifacts/af/afaac98dacd024abc5f0ed0a3402b369 differ diff --git a/Library/Artifacts/af/afde86fb6ec3ae3f950499447bb67bd5 b/Library/Artifacts/af/afde86fb6ec3ae3f950499447bb67bd5 new file mode 100644 index 0000000000..363b82f4a7 Binary files /dev/null and b/Library/Artifacts/af/afde86fb6ec3ae3f950499447bb67bd5 differ diff --git a/Library/Artifacts/b0/b0df6a1901d4d1f47c559e816438c23c b/Library/Artifacts/b0/b0df6a1901d4d1f47c559e816438c23c new file mode 100644 index 0000000000..e176970939 Binary files /dev/null and b/Library/Artifacts/b0/b0df6a1901d4d1f47c559e816438c23c differ diff --git a/Library/Artifacts/b0/b0f4ce0a7336c0ae77577e3e10a381ce b/Library/Artifacts/b0/b0f4ce0a7336c0ae77577e3e10a381ce new file mode 100644 index 0000000000..6f05c5bd50 Binary files /dev/null and b/Library/Artifacts/b0/b0f4ce0a7336c0ae77577e3e10a381ce differ diff --git a/Library/Artifacts/b1/b1198d2b6942580d280085d18ecb1ee3 b/Library/Artifacts/b1/b1198d2b6942580d280085d18ecb1ee3 new file mode 100644 index 0000000000..0b1ed760a1 Binary files /dev/null and b/Library/Artifacts/b1/b1198d2b6942580d280085d18ecb1ee3 differ diff --git a/Library/Artifacts/b1/b1ece563bdcfb36f7a767da09852af5c b/Library/Artifacts/b1/b1ece563bdcfb36f7a767da09852af5c new file mode 100644 index 0000000000..92de302ebf Binary files /dev/null and b/Library/Artifacts/b1/b1ece563bdcfb36f7a767da09852af5c differ diff --git a/Library/Artifacts/b2/b2a7b968006441c46e7b47945821003f b/Library/Artifacts/b2/b2a7b968006441c46e7b47945821003f new file mode 100644 index 0000000000..4a5faaacf2 Binary files /dev/null and b/Library/Artifacts/b2/b2a7b968006441c46e7b47945821003f differ diff --git a/Library/Artifacts/b2/b2eeba426d2253441b569032c200f2de b/Library/Artifacts/b2/b2eeba426d2253441b569032c200f2de new file mode 100644 index 0000000000..7405b307e8 Binary files /dev/null and b/Library/Artifacts/b2/b2eeba426d2253441b569032c200f2de differ diff --git a/Library/Artifacts/b3/b3905ee804f78ba5715073fa16d7ded8 b/Library/Artifacts/b3/b3905ee804f78ba5715073fa16d7ded8 deleted file mode 100644 index 513ade8b5d..0000000000 Binary files a/Library/Artifacts/b3/b3905ee804f78ba5715073fa16d7ded8 and /dev/null differ diff --git a/Library/Artifacts/b3/b3f256b59b71879c2e88b496d690fe13 b/Library/Artifacts/b3/b3f256b59b71879c2e88b496d690fe13 new file mode 100644 index 0000000000..673f4f3508 Binary files /dev/null and b/Library/Artifacts/b3/b3f256b59b71879c2e88b496d690fe13 differ diff --git a/Library/Artifacts/b4/b42f3646c51ac16683edccc8e9e575a0 b/Library/Artifacts/b4/b42f3646c51ac16683edccc8e9e575a0 new file mode 100644 index 0000000000..790588b8a2 Binary files /dev/null and b/Library/Artifacts/b4/b42f3646c51ac16683edccc8e9e575a0 differ diff --git a/Library/Artifacts/b4/b49aa9ba529da99a6eaf2d2848925c7e b/Library/Artifacts/b4/b49aa9ba529da99a6eaf2d2848925c7e deleted file mode 100644 index 18009fdf23..0000000000 Binary files a/Library/Artifacts/b4/b49aa9ba529da99a6eaf2d2848925c7e and /dev/null differ diff --git a/Library/Artifacts/b4/b4ebfdb8bf8b2ea3ab0bc17a2a3eac2d b/Library/Artifacts/b4/b4ebfdb8bf8b2ea3ab0bc17a2a3eac2d new file mode 100644 index 0000000000..741c831828 Binary files /dev/null and b/Library/Artifacts/b4/b4ebfdb8bf8b2ea3ab0bc17a2a3eac2d differ diff --git a/Library/Artifacts/b5/b5b03d1fa4b22fdac7190d3e6d2d2e9e b/Library/Artifacts/b5/b5b03d1fa4b22fdac7190d3e6d2d2e9e deleted file mode 100644 index 1e95595bbc..0000000000 Binary files a/Library/Artifacts/b5/b5b03d1fa4b22fdac7190d3e6d2d2e9e and /dev/null differ diff --git a/Library/Artifacts/b6/b607953a3f147d2560217fedaeec196a b/Library/Artifacts/b6/b607953a3f147d2560217fedaeec196a new file mode 100644 index 0000000000..62cc6b1d0a Binary files /dev/null and b/Library/Artifacts/b6/b607953a3f147d2560217fedaeec196a differ diff --git a/Library/Artifacts/b6/b636b6508ded87210f605598b08f9059 b/Library/Artifacts/b6/b636b6508ded87210f605598b08f9059 new file mode 100644 index 0000000000..af66b1228d Binary files /dev/null and b/Library/Artifacts/b6/b636b6508ded87210f605598b08f9059 differ diff --git a/Library/Artifacts/b7/b7287ea2f01c9847051768056881d1a2 b/Library/Artifacts/b7/b7287ea2f01c9847051768056881d1a2 new file mode 100644 index 0000000000..f33a599357 Binary files /dev/null and b/Library/Artifacts/b7/b7287ea2f01c9847051768056881d1a2 differ diff --git a/Library/Artifacts/b7/b728e0dd3cab82b3cba4c97f1b9bee8b b/Library/Artifacts/b7/b728e0dd3cab82b3cba4c97f1b9bee8b new file mode 100644 index 0000000000..f05dee1355 Binary files /dev/null and b/Library/Artifacts/b7/b728e0dd3cab82b3cba4c97f1b9bee8b differ diff --git a/Library/Artifacts/b8/b8a4c8ef153551f92af0cc29211a0b68 b/Library/Artifacts/b8/b8a4c8ef153551f92af0cc29211a0b68 new file mode 100644 index 0000000000..aa8a7833f2 Binary files /dev/null and b/Library/Artifacts/b8/b8a4c8ef153551f92af0cc29211a0b68 differ diff --git a/Library/Artifacts/b9/b9018b02f32f7404f0c4f73d7fba2f6c b/Library/Artifacts/b9/b9018b02f32f7404f0c4f73d7fba2f6c new file mode 100644 index 0000000000..c3fe12d781 Binary files /dev/null and b/Library/Artifacts/b9/b9018b02f32f7404f0c4f73d7fba2f6c differ diff --git a/Library/Artifacts/b9/b91b95bcfb0061a92c64ec00ff87d630 b/Library/Artifacts/b9/b91b95bcfb0061a92c64ec00ff87d630 new file mode 100644 index 0000000000..045af50e18 Binary files /dev/null and b/Library/Artifacts/b9/b91b95bcfb0061a92c64ec00ff87d630 differ diff --git a/Library/Artifacts/bb/bb8f087fccdbbdad510a9961116c9cbe b/Library/Artifacts/bb/bb8f087fccdbbdad510a9961116c9cbe new file mode 100644 index 0000000000..40ef60fdc1 Binary files /dev/null and b/Library/Artifacts/bb/bb8f087fccdbbdad510a9961116c9cbe differ diff --git a/Library/Artifacts/bb/bbc8dbcb8280260f8ba8fdc413ff6cc6 b/Library/Artifacts/bb/bbc8dbcb8280260f8ba8fdc413ff6cc6 new file mode 100644 index 0000000000..888d93dcfe Binary files /dev/null and b/Library/Artifacts/bb/bbc8dbcb8280260f8ba8fdc413ff6cc6 differ diff --git a/Library/Artifacts/bb/bbdeff7a9b0301f5ec76bd738860cd47 b/Library/Artifacts/bb/bbdeff7a9b0301f5ec76bd738860cd47 new file mode 100644 index 0000000000..00872f2c70 Binary files /dev/null and b/Library/Artifacts/bb/bbdeff7a9b0301f5ec76bd738860cd47 differ diff --git a/Library/Artifacts/bc/bc93eafedd33ce6c5414269f9ed294b9 b/Library/Artifacts/bc/bc93eafedd33ce6c5414269f9ed294b9 new file mode 100644 index 0000000000..1b4d0c999e Binary files /dev/null and b/Library/Artifacts/bc/bc93eafedd33ce6c5414269f9ed294b9 differ diff --git a/Library/Artifacts/bc/bcae1ac525eb04b4e8ab4fd84e245317 b/Library/Artifacts/bc/bcae1ac525eb04b4e8ab4fd84e245317 new file mode 100644 index 0000000000..b7a11ebd72 Binary files /dev/null and b/Library/Artifacts/bc/bcae1ac525eb04b4e8ab4fd84e245317 differ diff --git a/Library/Artifacts/bd/bd2e0729468a4624eb5e3f2de74eabd1 b/Library/Artifacts/bd/bd2e0729468a4624eb5e3f2de74eabd1 new file mode 100644 index 0000000000..060300d766 Binary files /dev/null and b/Library/Artifacts/bd/bd2e0729468a4624eb5e3f2de74eabd1 differ diff --git a/Library/Artifacts/be/be7347b33179b373ff2cfe5261ced0dd b/Library/Artifacts/be/be7347b33179b373ff2cfe5261ced0dd new file mode 100644 index 0000000000..60a4a16733 Binary files /dev/null and b/Library/Artifacts/be/be7347b33179b373ff2cfe5261ced0dd differ diff --git a/Library/Artifacts/be/bee30dff181ebc57ce44339a4192b3a8 b/Library/Artifacts/be/bee30dff181ebc57ce44339a4192b3a8 new file mode 100644 index 0000000000..0d5861b9fe Binary files /dev/null and b/Library/Artifacts/be/bee30dff181ebc57ce44339a4192b3a8 differ diff --git a/Library/Artifacts/bf/bf05369f59768a7e67fc42b5f9d65443 b/Library/Artifacts/bf/bf05369f59768a7e67fc42b5f9d65443 deleted file mode 100644 index 3fd52dbbea..0000000000 Binary files a/Library/Artifacts/bf/bf05369f59768a7e67fc42b5f9d65443 and /dev/null differ diff --git a/Library/Artifacts/bf/bf8b5f96e5f3666b2392a754e2c33f3b b/Library/Artifacts/bf/bf8b5f96e5f3666b2392a754e2c33f3b new file mode 100644 index 0000000000..b3826bbf3d Binary files /dev/null and b/Library/Artifacts/bf/bf8b5f96e5f3666b2392a754e2c33f3b differ diff --git a/Library/Artifacts/bf/bfaad5ab805235e8da9d7d035ea3b599 b/Library/Artifacts/bf/bfaad5ab805235e8da9d7d035ea3b599 deleted file mode 100644 index adc4e6f8f1..0000000000 Binary files a/Library/Artifacts/bf/bfaad5ab805235e8da9d7d035ea3b599 and /dev/null differ diff --git a/Library/Artifacts/bf/bff1db7163cba8494b3fee4e449b8f61 b/Library/Artifacts/bf/bff1db7163cba8494b3fee4e449b8f61 deleted file mode 100644 index dd7f49d07d..0000000000 Binary files a/Library/Artifacts/bf/bff1db7163cba8494b3fee4e449b8f61 and /dev/null differ diff --git a/Library/Artifacts/c2/c2659b7d96857dcd33bf4f2f151e515b b/Library/Artifacts/c2/c2659b7d96857dcd33bf4f2f151e515b new file mode 100644 index 0000000000..68298cd3f9 Binary files /dev/null and b/Library/Artifacts/c2/c2659b7d96857dcd33bf4f2f151e515b differ diff --git a/Library/Artifacts/c2/c290db6acbafc0cb1f9464c24373bed6 b/Library/Artifacts/c2/c290db6acbafc0cb1f9464c24373bed6 new file mode 100644 index 0000000000..c7c13c28b3 Binary files /dev/null and b/Library/Artifacts/c2/c290db6acbafc0cb1f9464c24373bed6 differ diff --git a/Library/Artifacts/c3/c360576de72abf938c174db1e701d4bc b/Library/Artifacts/c3/c360576de72abf938c174db1e701d4bc new file mode 100644 index 0000000000..1dfc0e6a30 Binary files /dev/null and b/Library/Artifacts/c3/c360576de72abf938c174db1e701d4bc differ diff --git a/Library/Artifacts/c4/c401db83cd25b272d236d45692395baa b/Library/Artifacts/c4/c401db83cd25b272d236d45692395baa new file mode 100644 index 0000000000..3f1c533efc Binary files /dev/null and b/Library/Artifacts/c4/c401db83cd25b272d236d45692395baa differ diff --git a/Library/Artifacts/c4/c472d0e3130c8920bf2fd29b893e07d4 b/Library/Artifacts/c4/c472d0e3130c8920bf2fd29b893e07d4 new file mode 100644 index 0000000000..110f122ce7 Binary files /dev/null and b/Library/Artifacts/c4/c472d0e3130c8920bf2fd29b893e07d4 differ diff --git a/Library/Artifacts/c4/c4e9effe2757213a2931dadaa35ca9f6 b/Library/Artifacts/c4/c4e9effe2757213a2931dadaa35ca9f6 new file mode 100644 index 0000000000..076f67f7dd Binary files /dev/null and b/Library/Artifacts/c4/c4e9effe2757213a2931dadaa35ca9f6 differ diff --git a/Library/Artifacts/c5/c54eb8ba6eaeabed1da5a3a954a53c13 b/Library/Artifacts/c5/c54eb8ba6eaeabed1da5a3a954a53c13 new file mode 100644 index 0000000000..2833465269 Binary files /dev/null and b/Library/Artifacts/c5/c54eb8ba6eaeabed1da5a3a954a53c13 differ diff --git a/Library/Artifacts/c5/c598e7306113290796ab3b2adfc0b5ce b/Library/Artifacts/c5/c598e7306113290796ab3b2adfc0b5ce new file mode 100644 index 0000000000..369f468843 Binary files /dev/null and b/Library/Artifacts/c5/c598e7306113290796ab3b2adfc0b5ce differ diff --git a/Library/Artifacts/c5/c5b504e4e8de44dfc9a0ec28874accc8 b/Library/Artifacts/c5/c5b504e4e8de44dfc9a0ec28874accc8 new file mode 100644 index 0000000000..0886837638 Binary files /dev/null and b/Library/Artifacts/c5/c5b504e4e8de44dfc9a0ec28874accc8 differ diff --git a/Library/Artifacts/c5/c5e9579e846a4d6105e81b2167f33175 b/Library/Artifacts/c5/c5e9579e846a4d6105e81b2167f33175 deleted file mode 100644 index f67bc381ee..0000000000 Binary files a/Library/Artifacts/c5/c5e9579e846a4d6105e81b2167f33175 and /dev/null differ diff --git a/Library/Artifacts/c6/c697c0e0219185ef522765a59b46cf60 b/Library/Artifacts/c6/c697c0e0219185ef522765a59b46cf60 new file mode 100644 index 0000000000..6325b090e4 Binary files /dev/null and b/Library/Artifacts/c6/c697c0e0219185ef522765a59b46cf60 differ diff --git a/Library/Artifacts/c7/c714a44656b6059da86b9c1b9af2c002 b/Library/Artifacts/c7/c714a44656b6059da86b9c1b9af2c002 new file mode 100644 index 0000000000..20d1fb5a26 Binary files /dev/null and b/Library/Artifacts/c7/c714a44656b6059da86b9c1b9af2c002 differ diff --git a/Library/Artifacts/c8/c84e403901e64a5d4dab40792c1db03f b/Library/Artifacts/c8/c84e403901e64a5d4dab40792c1db03f new file mode 100644 index 0000000000..5ed5cbb8ca Binary files /dev/null and b/Library/Artifacts/c8/c84e403901e64a5d4dab40792c1db03f differ diff --git a/Library/Artifacts/c8/c8fb805b1f5581ec769b6655edb22402 b/Library/Artifacts/c8/c8fb805b1f5581ec769b6655edb22402 new file mode 100644 index 0000000000..0f25f10493 Binary files /dev/null and b/Library/Artifacts/c8/c8fb805b1f5581ec769b6655edb22402 differ diff --git a/Library/Artifacts/c9/c910c4ba174beedabfe1f6be87b5be27 b/Library/Artifacts/c9/c910c4ba174beedabfe1f6be87b5be27 new file mode 100644 index 0000000000..8fb4c039e2 Binary files /dev/null and b/Library/Artifacts/c9/c910c4ba174beedabfe1f6be87b5be27 differ diff --git a/Library/Artifacts/c9/c96c71e32d9388293949889fa5b361de b/Library/Artifacts/c9/c96c71e32d9388293949889fa5b361de deleted file mode 100644 index 02d07e8c26..0000000000 Binary files a/Library/Artifacts/c9/c96c71e32d9388293949889fa5b361de and /dev/null differ diff --git a/Library/Artifacts/c9/c9717bbb14d4d0d2caff24f3dbbfa4ba b/Library/Artifacts/c9/c9717bbb14d4d0d2caff24f3dbbfa4ba new file mode 100644 index 0000000000..cd97db284d Binary files /dev/null and b/Library/Artifacts/c9/c9717bbb14d4d0d2caff24f3dbbfa4ba differ diff --git a/Library/Artifacts/ca/ca7c0c0745f17a57557066eb219fa99c b/Library/Artifacts/ca/ca7c0c0745f17a57557066eb219fa99c new file mode 100644 index 0000000000..8afc700bb7 Binary files /dev/null and b/Library/Artifacts/ca/ca7c0c0745f17a57557066eb219fa99c differ diff --git a/Library/Artifacts/cb/cb996b1c65386f7df4872c9d58a55b08 b/Library/Artifacts/cb/cb996b1c65386f7df4872c9d58a55b08 new file mode 100644 index 0000000000..1d5113940a Binary files /dev/null and b/Library/Artifacts/cb/cb996b1c65386f7df4872c9d58a55b08 differ diff --git a/Library/Artifacts/cc/cc91cf5bf6c8e90b929740dce8328c89 b/Library/Artifacts/cc/cc91cf5bf6c8e90b929740dce8328c89 new file mode 100644 index 0000000000..655d020ecf Binary files /dev/null and b/Library/Artifacts/cc/cc91cf5bf6c8e90b929740dce8328c89 differ diff --git a/Library/Artifacts/cc/ccc7f1ecc5679aacdfe3b8dfdfb6488a b/Library/Artifacts/cc/ccc7f1ecc5679aacdfe3b8dfdfb6488a new file mode 100644 index 0000000000..e94cf02e41 Binary files /dev/null and b/Library/Artifacts/cc/ccc7f1ecc5679aacdfe3b8dfdfb6488a differ diff --git a/Library/Artifacts/cc/ccde7c236ebce82a53fd06b18087ecbe b/Library/Artifacts/cc/ccde7c236ebce82a53fd06b18087ecbe deleted file mode 100644 index 22ae84fcce..0000000000 Binary files a/Library/Artifacts/cc/ccde7c236ebce82a53fd06b18087ecbe and /dev/null differ diff --git a/Library/Artifacts/cd/cd5108f1ce71f49240e576f5d6e6e686 b/Library/Artifacts/cd/cd5108f1ce71f49240e576f5d6e6e686 new file mode 100644 index 0000000000..7ad368e578 Binary files /dev/null and b/Library/Artifacts/cd/cd5108f1ce71f49240e576f5d6e6e686 differ diff --git a/Library/Artifacts/cf/cf3fc6764a83874466be3a9b7ed266ee b/Library/Artifacts/cf/cf3fc6764a83874466be3a9b7ed266ee new file mode 100644 index 0000000000..dae90a0662 Binary files /dev/null and b/Library/Artifacts/cf/cf3fc6764a83874466be3a9b7ed266ee differ diff --git a/Library/Artifacts/d0/d058a08e0c704fac405b25811996c1a6 b/Library/Artifacts/d0/d058a08e0c704fac405b25811996c1a6 new file mode 100644 index 0000000000..456d6390d2 Binary files /dev/null and b/Library/Artifacts/d0/d058a08e0c704fac405b25811996c1a6 differ diff --git a/Library/Artifacts/d0/d0c6b6b351b9c8d05c9f41bcdffd2d26 b/Library/Artifacts/d0/d0c6b6b351b9c8d05c9f41bcdffd2d26 new file mode 100644 index 0000000000..6421c0c29b Binary files /dev/null and b/Library/Artifacts/d0/d0c6b6b351b9c8d05c9f41bcdffd2d26 differ diff --git a/Library/Artifacts/d0/d0eb6651f29bd215dcf2234cfdecb7c5 b/Library/Artifacts/d0/d0eb6651f29bd215dcf2234cfdecb7c5 new file mode 100644 index 0000000000..59758e56c9 Binary files /dev/null and b/Library/Artifacts/d0/d0eb6651f29bd215dcf2234cfdecb7c5 differ diff --git a/Library/Artifacts/d1/d11db646b726a57109a616d8e1c29326 b/Library/Artifacts/d1/d11db646b726a57109a616d8e1c29326 new file mode 100644 index 0000000000..5223b4f882 Binary files /dev/null and b/Library/Artifacts/d1/d11db646b726a57109a616d8e1c29326 differ diff --git a/Library/Artifacts/d1/d1f41fefab266b116048d80c4a883aef b/Library/Artifacts/d1/d1f41fefab266b116048d80c4a883aef deleted file mode 100644 index 32d2317b20..0000000000 Binary files a/Library/Artifacts/d1/d1f41fefab266b116048d80c4a883aef and /dev/null differ diff --git a/Library/Artifacts/d2/d230aad8eca3f4163dad125c644e7287 b/Library/Artifacts/d2/d230aad8eca3f4163dad125c644e7287 new file mode 100644 index 0000000000..879db06e94 Binary files /dev/null and b/Library/Artifacts/d2/d230aad8eca3f4163dad125c644e7287 differ diff --git a/Library/Artifacts/d2/d249b240a624202786f5387761ebee51 b/Library/Artifacts/d2/d249b240a624202786f5387761ebee51 new file mode 100644 index 0000000000..fea2d95fe7 Binary files /dev/null and b/Library/Artifacts/d2/d249b240a624202786f5387761ebee51 differ diff --git a/Library/Artifacts/d2/d27984b45062bd95c21bae97a17770ad b/Library/Artifacts/d2/d27984b45062bd95c21bae97a17770ad deleted file mode 100644 index 7ceb738447..0000000000 Binary files a/Library/Artifacts/d2/d27984b45062bd95c21bae97a17770ad and /dev/null differ diff --git a/Library/Artifacts/d2/d2f5d6b43b06788c7691e4b9fd29218b b/Library/Artifacts/d2/d2f5d6b43b06788c7691e4b9fd29218b new file mode 100644 index 0000000000..48128a2260 Binary files /dev/null and b/Library/Artifacts/d2/d2f5d6b43b06788c7691e4b9fd29218b differ diff --git a/Library/Artifacts/d3/d3900df6fda72c7c3b2bc5713b6ea6af b/Library/Artifacts/d3/d3900df6fda72c7c3b2bc5713b6ea6af deleted file mode 100644 index 30f2e48829..0000000000 Binary files a/Library/Artifacts/d3/d3900df6fda72c7c3b2bc5713b6ea6af and /dev/null differ diff --git a/Library/Artifacts/d3/d3d8b97eab53161533b5b1326c19f88b b/Library/Artifacts/d3/d3d8b97eab53161533b5b1326c19f88b deleted file mode 100644 index 6fce290e82..0000000000 Binary files a/Library/Artifacts/d3/d3d8b97eab53161533b5b1326c19f88b and /dev/null differ diff --git a/Library/Artifacts/a0/a03a3a80a4e7e8c19dfe5716ce6e9dd7 b/Library/Artifacts/d5/d54b6d300c8eb7b7e48f4599a748c0f7 similarity index 95% rename from Library/Artifacts/a0/a03a3a80a4e7e8c19dfe5716ce6e9dd7 rename to Library/Artifacts/d5/d54b6d300c8eb7b7e48f4599a748c0f7 index 492da67a8b..22497f8630 100644 Binary files a/Library/Artifacts/a0/a03a3a80a4e7e8c19dfe5716ce6e9dd7 and b/Library/Artifacts/d5/d54b6d300c8eb7b7e48f4599a748c0f7 differ diff --git a/Library/Artifacts/d5/d5647f8a19fc1ffb0dba9fbf0502035b b/Library/Artifacts/d5/d5647f8a19fc1ffb0dba9fbf0502035b new file mode 100644 index 0000000000..7dcda2b371 Binary files /dev/null and b/Library/Artifacts/d5/d5647f8a19fc1ffb0dba9fbf0502035b differ diff --git a/Library/Artifacts/d5/d57969537c74eca45102f0fa4b0bf9a3 b/Library/Artifacts/d5/d57969537c74eca45102f0fa4b0bf9a3 new file mode 100644 index 0000000000..d53a98df81 Binary files /dev/null and b/Library/Artifacts/d5/d57969537c74eca45102f0fa4b0bf9a3 differ diff --git a/Library/Artifacts/d5/d5af0cce5330ee3b38ec676ebecd4f21 b/Library/Artifacts/d5/d5af0cce5330ee3b38ec676ebecd4f21 deleted file mode 100644 index 8ce22c7c12..0000000000 Binary files a/Library/Artifacts/d5/d5af0cce5330ee3b38ec676ebecd4f21 and /dev/null differ diff --git a/Library/Artifacts/d6/d6113304098095863103e5ec9ddd0dc2 b/Library/Artifacts/d6/d6113304098095863103e5ec9ddd0dc2 deleted file mode 100644 index ea8f768de4..0000000000 Binary files a/Library/Artifacts/d6/d6113304098095863103e5ec9ddd0dc2 and /dev/null differ diff --git a/Library/Artifacts/d6/d643e4563c980b366ed623e059dca2a8 b/Library/Artifacts/d6/d643e4563c980b366ed623e059dca2a8 new file mode 100644 index 0000000000..d552f3aba0 Binary files /dev/null and b/Library/Artifacts/d6/d643e4563c980b366ed623e059dca2a8 differ diff --git a/Library/Artifacts/d6/d6dc4da8efa378634ebe5cc0dac0a7b4 b/Library/Artifacts/d6/d6dc4da8efa378634ebe5cc0dac0a7b4 new file mode 100644 index 0000000000..cbe58c93bd Binary files /dev/null and b/Library/Artifacts/d6/d6dc4da8efa378634ebe5cc0dac0a7b4 differ diff --git a/Library/Artifacts/d8/d8e708868ffebbf5ac2a10cc87af1c26 b/Library/Artifacts/d8/d8e708868ffebbf5ac2a10cc87af1c26 new file mode 100644 index 0000000000..6a1da18b15 Binary files /dev/null and b/Library/Artifacts/d8/d8e708868ffebbf5ac2a10cc87af1c26 differ diff --git a/Library/Artifacts/d8/d8fc4bac7fa3d271502d664d07e48bd2 b/Library/Artifacts/d8/d8fc4bac7fa3d271502d664d07e48bd2 new file mode 100644 index 0000000000..2415994f52 Binary files /dev/null and b/Library/Artifacts/d8/d8fc4bac7fa3d271502d664d07e48bd2 differ diff --git a/Library/Artifacts/d9/d9fef60ff773ff558a361830ca340ff1 b/Library/Artifacts/d9/d9fef60ff773ff558a361830ca340ff1 new file mode 100644 index 0000000000..a5f6522b97 Binary files /dev/null and b/Library/Artifacts/d9/d9fef60ff773ff558a361830ca340ff1 differ diff --git a/Library/Artifacts/da/da60b13b39e643883247dbdc81d582de b/Library/Artifacts/da/da60b13b39e643883247dbdc81d582de new file mode 100644 index 0000000000..bf57ca9236 Binary files /dev/null and b/Library/Artifacts/da/da60b13b39e643883247dbdc81d582de differ diff --git a/Library/Artifacts/da/daa61f2439775bc948e2a4105d534414 b/Library/Artifacts/da/daa61f2439775bc948e2a4105d534414 deleted file mode 100644 index 4f3226af5b..0000000000 Binary files a/Library/Artifacts/da/daa61f2439775bc948e2a4105d534414 and /dev/null differ diff --git a/Library/Artifacts/db/db0e6d358476d8cf4614ae6076c8543c b/Library/Artifacts/db/db0e6d358476d8cf4614ae6076c8543c new file mode 100644 index 0000000000..6788c88fdd Binary files /dev/null and b/Library/Artifacts/db/db0e6d358476d8cf4614ae6076c8543c differ diff --git a/Library/Artifacts/db/dba430b295c9362fa7722b5f93019150 b/Library/Artifacts/db/dba430b295c9362fa7722b5f93019150 new file mode 100644 index 0000000000..255f1917c9 Binary files /dev/null and b/Library/Artifacts/db/dba430b295c9362fa7722b5f93019150 differ diff --git a/Library/Artifacts/dc/dc3a9af6da5a098429b0d9ea35a3443a b/Library/Artifacts/dc/dc3a9af6da5a098429b0d9ea35a3443a new file mode 100644 index 0000000000..bd00321ee3 Binary files /dev/null and b/Library/Artifacts/dc/dc3a9af6da5a098429b0d9ea35a3443a differ diff --git a/Library/Artifacts/dc/dc4fdd95a9a6fd75a6b9ed2134b9bd03 b/Library/Artifacts/dc/dc4fdd95a9a6fd75a6b9ed2134b9bd03 new file mode 100644 index 0000000000..e221d84cff Binary files /dev/null and b/Library/Artifacts/dc/dc4fdd95a9a6fd75a6b9ed2134b9bd03 differ diff --git a/Library/Artifacts/dc/dc87587bdd87d1c903c2310b8a95f790 b/Library/Artifacts/dc/dc87587bdd87d1c903c2310b8a95f790 new file mode 100644 index 0000000000..3e4f90f75b Binary files /dev/null and b/Library/Artifacts/dc/dc87587bdd87d1c903c2310b8a95f790 differ diff --git a/Library/Artifacts/dc/dc9fbf0f181602ca5e5a2be9d3926174 b/Library/Artifacts/dc/dc9fbf0f181602ca5e5a2be9d3926174 new file mode 100644 index 0000000000..23fe2f6c66 Binary files /dev/null and b/Library/Artifacts/dc/dc9fbf0f181602ca5e5a2be9d3926174 differ diff --git a/Library/Artifacts/dd/ddc07851ab832c542b1cc9773b1c6f1e b/Library/Artifacts/dd/ddc07851ab832c542b1cc9773b1c6f1e new file mode 100644 index 0000000000..110ecff67f Binary files /dev/null and b/Library/Artifacts/dd/ddc07851ab832c542b1cc9773b1c6f1e differ diff --git a/Library/Artifacts/de/de3d8719ec7b6cfe1b2981f369b65390 b/Library/Artifacts/de/de3d8719ec7b6cfe1b2981f369b65390 new file mode 100644 index 0000000000..5f59dc4278 Binary files /dev/null and b/Library/Artifacts/de/de3d8719ec7b6cfe1b2981f369b65390 differ diff --git a/Library/Artifacts/de/dec02ff9aa2d40606c12580d69378d2c b/Library/Artifacts/de/dec02ff9aa2d40606c12580d69378d2c deleted file mode 100644 index 3a073037e5..0000000000 Binary files a/Library/Artifacts/de/dec02ff9aa2d40606c12580d69378d2c and /dev/null differ diff --git a/Library/Artifacts/df/dfb4da4770976bb9e06af63742295dab b/Library/Artifacts/df/dfb4da4770976bb9e06af63742295dab new file mode 100644 index 0000000000..82b3b9e1dd Binary files /dev/null and b/Library/Artifacts/df/dfb4da4770976bb9e06af63742295dab differ diff --git a/Library/Artifacts/e0/e09af94625fd5ce6a66e6d545d6503f9 b/Library/Artifacts/e0/e09af94625fd5ce6a66e6d545d6503f9 new file mode 100644 index 0000000000..1169266cd0 Binary files /dev/null and b/Library/Artifacts/e0/e09af94625fd5ce6a66e6d545d6503f9 differ diff --git a/Library/Artifacts/e0/e0d651d6128a436f94353f450fc6a7a7 b/Library/Artifacts/e0/e0d651d6128a436f94353f450fc6a7a7 new file mode 100644 index 0000000000..7557655c02 Binary files /dev/null and b/Library/Artifacts/e0/e0d651d6128a436f94353f450fc6a7a7 differ diff --git a/Library/Artifacts/e0/e0ff9f31288ec1ed52014a00dfa838a8 b/Library/Artifacts/e0/e0ff9f31288ec1ed52014a00dfa838a8 new file mode 100644 index 0000000000..80033962bd Binary files /dev/null and b/Library/Artifacts/e0/e0ff9f31288ec1ed52014a00dfa838a8 differ diff --git a/Library/Artifacts/e1/e1a0866b1e06c0e28331abc104ee4f24 b/Library/Artifacts/e1/e1a0866b1e06c0e28331abc104ee4f24 new file mode 100644 index 0000000000..343fb83311 Binary files /dev/null and b/Library/Artifacts/e1/e1a0866b1e06c0e28331abc104ee4f24 differ diff --git a/Library/Artifacts/e2/e24fa95688344fbb19d2404041be0e82 b/Library/Artifacts/e2/e24fa95688344fbb19d2404041be0e82 new file mode 100644 index 0000000000..3185f9e752 Binary files /dev/null and b/Library/Artifacts/e2/e24fa95688344fbb19d2404041be0e82 differ diff --git a/Library/Artifacts/e2/e270d9dd7b68babddc4185ee062fadd2 b/Library/Artifacts/e2/e270d9dd7b68babddc4185ee062fadd2 new file mode 100644 index 0000000000..eaaf99ec80 Binary files /dev/null and b/Library/Artifacts/e2/e270d9dd7b68babddc4185ee062fadd2 differ diff --git a/Library/Artifacts/e2/e2841f666dd61d3af7dcaefca0fa711f b/Library/Artifacts/e2/e2841f666dd61d3af7dcaefca0fa711f new file mode 100644 index 0000000000..0f998fc895 Binary files /dev/null and b/Library/Artifacts/e2/e2841f666dd61d3af7dcaefca0fa711f differ diff --git a/Library/Artifacts/e4/e41b2a5406a6a0eb071762a3f2379c27 b/Library/Artifacts/e4/e41b2a5406a6a0eb071762a3f2379c27 new file mode 100644 index 0000000000..3697f5f420 Binary files /dev/null and b/Library/Artifacts/e4/e41b2a5406a6a0eb071762a3f2379c27 differ diff --git a/Library/Artifacts/e4/e41c07e1b487bafc73053d33f4fa87c9 b/Library/Artifacts/e4/e41c07e1b487bafc73053d33f4fa87c9 deleted file mode 100644 index b9d415d432..0000000000 Binary files a/Library/Artifacts/e4/e41c07e1b487bafc73053d33f4fa87c9 and /dev/null differ diff --git a/Library/Artifacts/e4/e499835c3590a42ae198de35382e94cd b/Library/Artifacts/e4/e499835c3590a42ae198de35382e94cd new file mode 100644 index 0000000000..f50023585f Binary files /dev/null and b/Library/Artifacts/e4/e499835c3590a42ae198de35382e94cd differ diff --git a/Library/Artifacts/e4/e4cf37feefcd2a7959d3d95e297975e0 b/Library/Artifacts/e4/e4cf37feefcd2a7959d3d95e297975e0 new file mode 100644 index 0000000000..2ad0b4687d Binary files /dev/null and b/Library/Artifacts/e4/e4cf37feefcd2a7959d3d95e297975e0 differ diff --git a/Library/Artifacts/e4/e4e07a53fac971fb0e8493961ada326a b/Library/Artifacts/e4/e4e07a53fac971fb0e8493961ada326a new file mode 100644 index 0000000000..9d63620b19 Binary files /dev/null and b/Library/Artifacts/e4/e4e07a53fac971fb0e8493961ada326a differ diff --git a/Library/Artifacts/e5/e529976edfd40a28cf60f6ef0921f91e b/Library/Artifacts/e5/e529976edfd40a28cf60f6ef0921f91e new file mode 100644 index 0000000000..4a6c47dfd4 Binary files /dev/null and b/Library/Artifacts/e5/e529976edfd40a28cf60f6ef0921f91e differ diff --git a/Library/Artifacts/e5/e59c3ef2e95e1cdaef19fa7b31720724 b/Library/Artifacts/e5/e59c3ef2e95e1cdaef19fa7b31720724 deleted file mode 100644 index 677ba60114..0000000000 Binary files a/Library/Artifacts/e5/e59c3ef2e95e1cdaef19fa7b31720724 and /dev/null differ diff --git a/Library/Artifacts/e6/e6316d9ba4efce6134b738910535658a b/Library/Artifacts/e6/e6316d9ba4efce6134b738910535658a deleted file mode 100644 index 0d8d4ec8bb..0000000000 Binary files a/Library/Artifacts/e6/e6316d9ba4efce6134b738910535658a and /dev/null differ diff --git a/Library/Artifacts/e6/e6713521b548d23ce477405ccf727f59 b/Library/Artifacts/e6/e6713521b548d23ce477405ccf727f59 deleted file mode 100644 index 3e4e7a2646..0000000000 Binary files a/Library/Artifacts/e6/e6713521b548d23ce477405ccf727f59 and /dev/null differ diff --git a/Library/Artifacts/e8/e82a1275715af2734fc131a403f95ba3 b/Library/Artifacts/e8/e82a1275715af2734fc131a403f95ba3 new file mode 100644 index 0000000000..a18e69db1f Binary files /dev/null and b/Library/Artifacts/e8/e82a1275715af2734fc131a403f95ba3 differ diff --git a/Library/Artifacts/e8/e8724c6b3014dfc768d0c9883a45945d b/Library/Artifacts/e8/e8724c6b3014dfc768d0c9883a45945d new file mode 100644 index 0000000000..ca6e6ff3d0 Binary files /dev/null and b/Library/Artifacts/e8/e8724c6b3014dfc768d0c9883a45945d differ diff --git a/Library/Artifacts/e8/e8a8df315b5a573028d61b2da12f3d46 b/Library/Artifacts/e8/e8a8df315b5a573028d61b2da12f3d46 new file mode 100644 index 0000000000..87d8c58fea Binary files /dev/null and b/Library/Artifacts/e8/e8a8df315b5a573028d61b2da12f3d46 differ diff --git a/Library/Artifacts/eb/ebde12cff7a8e343cfa1c10fd5ba29a5 b/Library/Artifacts/eb/ebde12cff7a8e343cfa1c10fd5ba29a5 deleted file mode 100644 index bb15869577..0000000000 Binary files a/Library/Artifacts/eb/ebde12cff7a8e343cfa1c10fd5ba29a5 and /dev/null differ diff --git a/Library/Artifacts/ec/ecce11309fb5a3cd73c751bafac27789 b/Library/Artifacts/ec/ecce11309fb5a3cd73c751bafac27789 new file mode 100644 index 0000000000..48f105adab Binary files /dev/null and b/Library/Artifacts/ec/ecce11309fb5a3cd73c751bafac27789 differ diff --git a/Library/Artifacts/ee/ee11eca9f50f5ac97f2142f7194d7a38 b/Library/Artifacts/ee/ee11eca9f50f5ac97f2142f7194d7a38 deleted file mode 100644 index af062b50ff..0000000000 Binary files a/Library/Artifacts/ee/ee11eca9f50f5ac97f2142f7194d7a38 and /dev/null differ diff --git a/Library/Artifacts/ee/ee5e6700adffd704c760f8661ec4370c b/Library/Artifacts/ee/ee5e6700adffd704c760f8661ec4370c new file mode 100644 index 0000000000..eb814a3075 Binary files /dev/null and b/Library/Artifacts/ee/ee5e6700adffd704c760f8661ec4370c differ diff --git a/Library/Artifacts/ee/ee61940fec61f5797a9a3841e605b151 b/Library/Artifacts/ee/ee61940fec61f5797a9a3841e605b151 new file mode 100644 index 0000000000..eb4d51f855 Binary files /dev/null and b/Library/Artifacts/ee/ee61940fec61f5797a9a3841e605b151 differ diff --git a/Library/Artifacts/ee/eec76fb326bd352f1c87fb455fa7dfba b/Library/Artifacts/ee/eec76fb326bd352f1c87fb455fa7dfba deleted file mode 100644 index 12e4aa896f..0000000000 Binary files a/Library/Artifacts/ee/eec76fb326bd352f1c87fb455fa7dfba and /dev/null differ diff --git a/Library/Artifacts/ee/eef512836efbfe36862e384a29d35a42 b/Library/Artifacts/ee/eef512836efbfe36862e384a29d35a42 new file mode 100644 index 0000000000..f97f0addd1 Binary files /dev/null and b/Library/Artifacts/ee/eef512836efbfe36862e384a29d35a42 differ diff --git a/Library/Artifacts/ef/ef2e87393f39c90fb5931dc3356e8753 b/Library/Artifacts/ef/ef2e87393f39c90fb5931dc3356e8753 new file mode 100644 index 0000000000..06f5ffdff3 Binary files /dev/null and b/Library/Artifacts/ef/ef2e87393f39c90fb5931dc3356e8753 differ diff --git a/Library/Artifacts/ef/ef3390a27fbc191ce2d4f9ea8e506e1c b/Library/Artifacts/ef/ef3390a27fbc191ce2d4f9ea8e506e1c new file mode 100644 index 0000000000..fb1a67d5ba Binary files /dev/null and b/Library/Artifacts/ef/ef3390a27fbc191ce2d4f9ea8e506e1c differ diff --git a/Library/Artifacts/ef/ef4f9a64e08270ee6c37e5b3700edbc3 b/Library/Artifacts/ef/ef4f9a64e08270ee6c37e5b3700edbc3 new file mode 100644 index 0000000000..2461b8b1b8 Binary files /dev/null and b/Library/Artifacts/ef/ef4f9a64e08270ee6c37e5b3700edbc3 differ diff --git a/Library/Artifacts/ef/efb3b68a6ab60b6b03007b76c4f5d5ef b/Library/Artifacts/ef/efb3b68a6ab60b6b03007b76c4f5d5ef new file mode 100644 index 0000000000..c636ccb00d Binary files /dev/null and b/Library/Artifacts/ef/efb3b68a6ab60b6b03007b76c4f5d5ef differ diff --git a/Library/Artifacts/f0/f02737c7d98072ad91d779371323d24f b/Library/Artifacts/f0/f02737c7d98072ad91d779371323d24f new file mode 100644 index 0000000000..cdd8cb8161 Binary files /dev/null and b/Library/Artifacts/f0/f02737c7d98072ad91d779371323d24f differ diff --git a/Library/Artifacts/f0/f03ab3568ae072a2f7977f2563d2ea02 b/Library/Artifacts/f0/f03ab3568ae072a2f7977f2563d2ea02 new file mode 100644 index 0000000000..3e3ef16730 Binary files /dev/null and b/Library/Artifacts/f0/f03ab3568ae072a2f7977f2563d2ea02 differ diff --git a/Library/Artifacts/f0/f069d31db6efb3828775414276eaa6f9 b/Library/Artifacts/f0/f069d31db6efb3828775414276eaa6f9 new file mode 100644 index 0000000000..12e3504c7f Binary files /dev/null and b/Library/Artifacts/f0/f069d31db6efb3828775414276eaa6f9 differ diff --git a/Library/Artifacts/f1/f1e08c9e74dbd6536923535514389b37 b/Library/Artifacts/f1/f1e08c9e74dbd6536923535514389b37 deleted file mode 100644 index 8c74874be6..0000000000 Binary files a/Library/Artifacts/f1/f1e08c9e74dbd6536923535514389b37 and /dev/null differ diff --git a/Library/Artifacts/f2/f27999d786d43ed79af22e1d190dbd93 b/Library/Artifacts/f2/f27999d786d43ed79af22e1d190dbd93 new file mode 100644 index 0000000000..bf53d2598f Binary files /dev/null and b/Library/Artifacts/f2/f27999d786d43ed79af22e1d190dbd93 differ diff --git a/Library/Artifacts/f3/f355574a9955de6efbe212db0a0099f9 b/Library/Artifacts/f3/f355574a9955de6efbe212db0a0099f9 new file mode 100644 index 0000000000..9df6b649b2 Binary files /dev/null and b/Library/Artifacts/f3/f355574a9955de6efbe212db0a0099f9 differ diff --git a/Library/Artifacts/f4/f46a0fd28c76f40f6604f9eda6e65f70 b/Library/Artifacts/f4/f46a0fd28c76f40f6604f9eda6e65f70 new file mode 100644 index 0000000000..223a61d56d Binary files /dev/null and b/Library/Artifacts/f4/f46a0fd28c76f40f6604f9eda6e65f70 differ diff --git a/Library/Artifacts/f4/f49b848d5923619ed4c323c75bf655e5 b/Library/Artifacts/f4/f49b848d5923619ed4c323c75bf655e5 new file mode 100644 index 0000000000..2248c7502d Binary files /dev/null and b/Library/Artifacts/f4/f49b848d5923619ed4c323c75bf655e5 differ diff --git a/Library/Artifacts/f5/f525036f17b6551c95df3781a72f2bd9 b/Library/Artifacts/f5/f525036f17b6551c95df3781a72f2bd9 new file mode 100644 index 0000000000..cfda0802f5 Binary files /dev/null and b/Library/Artifacts/f5/f525036f17b6551c95df3781a72f2bd9 differ diff --git a/Library/Artifacts/f5/f52cb9e99592cd9d555588867b37ebde b/Library/Artifacts/f5/f52cb9e99592cd9d555588867b37ebde new file mode 100644 index 0000000000..09ebe09019 Binary files /dev/null and b/Library/Artifacts/f5/f52cb9e99592cd9d555588867b37ebde differ diff --git a/Library/Artifacts/f5/f5d1004e06b55eca905961314c0e9476 b/Library/Artifacts/f5/f5d1004e06b55eca905961314c0e9476 new file mode 100644 index 0000000000..23a74f689e Binary files /dev/null and b/Library/Artifacts/f5/f5d1004e06b55eca905961314c0e9476 differ diff --git a/Library/Artifacts/f7/f758ebddccd8cb7b4b178a7ffa154508 b/Library/Artifacts/f7/f758ebddccd8cb7b4b178a7ffa154508 deleted file mode 100644 index 2ebfbb0153..0000000000 Binary files a/Library/Artifacts/f7/f758ebddccd8cb7b4b178a7ffa154508 and /dev/null differ diff --git a/Library/Artifacts/f7/f7831289c3cf19b35981d1a57da24db4 b/Library/Artifacts/f7/f7831289c3cf19b35981d1a57da24db4 new file mode 100644 index 0000000000..f80a1051a6 Binary files /dev/null and b/Library/Artifacts/f7/f7831289c3cf19b35981d1a57da24db4 differ diff --git a/Library/Artifacts/f7/f7b6dd61f41d9897ed0071f2c98216ea b/Library/Artifacts/f7/f7b6dd61f41d9897ed0071f2c98216ea new file mode 100644 index 0000000000..6120bed123 Binary files /dev/null and b/Library/Artifacts/f7/f7b6dd61f41d9897ed0071f2c98216ea differ diff --git a/Library/Artifacts/f8/f846faf67588322542a03df06072422f b/Library/Artifacts/f8/f846faf67588322542a03df06072422f new file mode 100644 index 0000000000..6d4684cfa3 Binary files /dev/null and b/Library/Artifacts/f8/f846faf67588322542a03df06072422f differ diff --git a/Library/Artifacts/f9/f936d73c4f9743d9cdd2660140863f7f b/Library/Artifacts/f9/f936d73c4f9743d9cdd2660140863f7f new file mode 100644 index 0000000000..171b124ba8 Binary files /dev/null and b/Library/Artifacts/f9/f936d73c4f9743d9cdd2660140863f7f differ diff --git a/Library/Artifacts/f9/f98b7b35066d05254b40bcc71007f03f b/Library/Artifacts/f9/f98b7b35066d05254b40bcc71007f03f new file mode 100644 index 0000000000..d5feff4b2d Binary files /dev/null and b/Library/Artifacts/f9/f98b7b35066d05254b40bcc71007f03f differ diff --git a/Library/Artifacts/f9/f9916c92eb7f490a8853065ba4d4e545 b/Library/Artifacts/f9/f9916c92eb7f490a8853065ba4d4e545 new file mode 100644 index 0000000000..5d5c87239e Binary files /dev/null and b/Library/Artifacts/f9/f9916c92eb7f490a8853065ba4d4e545 differ diff --git a/Library/Artifacts/fa/fa11f1ecc147f16e58d5ba5b6ae98d16 b/Library/Artifacts/fa/fa11f1ecc147f16e58d5ba5b6ae98d16 new file mode 100644 index 0000000000..90889d2dac Binary files /dev/null and b/Library/Artifacts/fa/fa11f1ecc147f16e58d5ba5b6ae98d16 differ diff --git a/Library/Artifacts/fa/faac47b30931c1ab2bebd219dc0fe439 b/Library/Artifacts/fa/faac47b30931c1ab2bebd219dc0fe439 new file mode 100644 index 0000000000..ba1b048b42 Binary files /dev/null and b/Library/Artifacts/fa/faac47b30931c1ab2bebd219dc0fe439 differ diff --git a/Library/Artifacts/fa/faaf033348584a2a437b8cc3a1c7237a b/Library/Artifacts/fa/faaf033348584a2a437b8cc3a1c7237a deleted file mode 100644 index 0336e27201..0000000000 Binary files a/Library/Artifacts/fa/faaf033348584a2a437b8cc3a1c7237a and /dev/null differ diff --git a/Library/Artifacts/fa/faf99c19cc234672e3ecccd24d674a1c b/Library/Artifacts/fa/faf99c19cc234672e3ecccd24d674a1c new file mode 100644 index 0000000000..67ca481c7a Binary files /dev/null and b/Library/Artifacts/fa/faf99c19cc234672e3ecccd24d674a1c differ diff --git a/Library/Artifacts/fb/fbbb217681bd96aa72fd741e004ca277 b/Library/Artifacts/fb/fbbb217681bd96aa72fd741e004ca277 new file mode 100644 index 0000000000..730ae67c98 Binary files /dev/null and b/Library/Artifacts/fb/fbbb217681bd96aa72fd741e004ca277 differ diff --git a/Library/Artifacts/fb/fbd0eb9736a0abd5c6fbc350a9643357 b/Library/Artifacts/fb/fbd0eb9736a0abd5c6fbc350a9643357 new file mode 100644 index 0000000000..3d1bfec246 Binary files /dev/null and b/Library/Artifacts/fb/fbd0eb9736a0abd5c6fbc350a9643357 differ diff --git a/Library/Artifacts/fc/fcc22e2d1e75da6a919306e28b65341e b/Library/Artifacts/fc/fcc22e2d1e75da6a919306e28b65341e new file mode 100644 index 0000000000..7156bab70b Binary files /dev/null and b/Library/Artifacts/fc/fcc22e2d1e75da6a919306e28b65341e differ diff --git a/Library/Artifacts/fd/fdc15880b9a37064841e7e35f8885fec b/Library/Artifacts/fd/fdc15880b9a37064841e7e35f8885fec new file mode 100644 index 0000000000..3957234d50 Binary files /dev/null and b/Library/Artifacts/fd/fdc15880b9a37064841e7e35f8885fec differ diff --git a/Library/Artifacts/fe/fe2115f15d9d862cd51c6e58be8ad620 b/Library/Artifacts/fe/fe2115f15d9d862cd51c6e58be8ad620 new file mode 100644 index 0000000000..3d56d5104e Binary files /dev/null and b/Library/Artifacts/fe/fe2115f15d9d862cd51c6e58be8ad620 differ diff --git a/Library/Bee/TundraBuildState.state b/Library/Bee/TundraBuildState.state index e9f544c720..bba6c1bdcf 100644 Binary files a/Library/Bee/TundraBuildState.state and b/Library/Bee/TundraBuildState.state differ diff --git a/Library/Bee/TundraBuildState.state.map b/Library/Bee/TundraBuildState.state.map index 4fcd6443b7..5c534e8bb1 100644 Binary files a/Library/Bee/TundraBuildState.state.map and b/Library/Bee/TundraBuildState.state.map differ diff --git a/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.dll b/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.dll index 63e6035fdb..7e7bb44767 100644 Binary files a/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.dll and b/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.dll differ diff --git a/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.pdb b/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.pdb index 014e6a386d..c038cc6a9d 100644 Binary files a/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.pdb and b/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.pdb differ diff --git a/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll b/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll index 14693c71e3..ffae543ed0 100644 Binary files a/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll and b/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll differ diff --git a/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.pdb b/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.pdb index c81255cbbf..18ffb4f75f 100644 Binary files a/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.pdb and b/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.pdb differ diff --git a/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.ref.dll b/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.ref.dll index a93dfc43f7..2e1100e1d1 100644 Binary files a/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.ref.dll and b/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.ref.dll differ diff --git a/Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp-Editor.dll b/Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp-Editor.dll index 63e6035fdb..7e7bb44767 100644 Binary files a/Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp-Editor.dll and b/Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp-Editor.dll differ diff --git a/Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp-Editor.pdb b/Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp-Editor.pdb index 014e6a386d..c038cc6a9d 100644 Binary files a/Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp-Editor.pdb and b/Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp-Editor.pdb differ diff --git a/Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp.dll b/Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp.dll index 14693c71e3..ffae543ed0 100644 Binary files a/Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp.dll and b/Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp.dll differ diff --git a/Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp.pdb b/Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp.pdb index c81255cbbf..18ffb4f75f 100644 Binary files a/Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp.pdb and b/Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp.pdb differ diff --git a/Library/Bee/backend_profiler0.traceevents b/Library/Bee/backend_profiler0.traceevents index 2b29336bd7..187d1a6086 100644 --- a/Library/Bee/backend_profiler0.traceevents +++ b/Library/Bee/backend_profiler0.traceevents @@ -1,2509 +1,2407 @@ { "cat":"", "pid":12345, "tid":0, "ts":0, "ph":"M", "name":"process_name", "args": { "name":"bee_backend" } } -,{ "pid":12345, "tid":0, "ts":1682192856849167, "dur":1912, "ph":"X", "name": "DriverInitData", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192856851092, "dur":2733, "ph":"X", "name": "Tundra", "args": { "detail":"RemoveStaleOutputs" }} -,{ "pid":12345, "tid":0, "ts":1682192856854044, "dur":292, "ph":"X", "name": "Tundra", "args": { "detail":"PrepareNodes" }} -,{ "pid":12345, "tid":0, "ts":1682192856854336, "dur":423, "ph":"X", "name": "Tundra", "args": { "detail":"BuildQueueInit" }} -,{ "pid":12345, "tid":0, "ts":1682192856854779, "dur":9854, "ph":"X", "name": "EnqueueRequestedNodes", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192856864634, "dur":14, "ph":"X", "name": "SortWorkingStack", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947020, "dur":314, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947334, "dur":61, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947395, "dur":11, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947406, "dur":27, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947433, "dur":3, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947436, "dur":8, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947444, "dur":2, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947446, "dur":5, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947451, "dur":3, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947454, "dur":9, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947463, "dur":2, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947465, "dur":14, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947479, "dur":48, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947527, "dur":7, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947534, "dur":2, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947536, "dur":7, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947543, "dur":3, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947546, "dur":6, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947552, "dur":5, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947557, "dur":6, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947563, "dur":3, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947566, "dur":7, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947573, "dur":3, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947576, "dur":6, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947582, "dur":0, "ph":"X", "name": "SharedResourceDestroy", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947597, "dur":89, "ph":"X", "name": "BuildQueueDestroyTail", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947730, "dur":13870, "ph":"X", "name": "Tundra", "args": { "detail":"Write AllBuiltNodes" }} -,{ "pid":12345, "tid":1, "ts":1682192856855027, "dur":9633, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856864663, "dur":9605, "ph":"X", "name": "CheckDagSignatures", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856874279, "dur":9, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.AdditionalFile.txt" }} -,{ "pid":12345, "tid":1, "ts":1682192856874291, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856874413, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.AdditionalFile.txt" }} -,{ "pid":12345, "tid":1, "ts":1682192856874414, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856874523, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.AdditionalFile.txt" }} -,{ "pid":12345, "tid":1, "ts":1682192856874524, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856874607, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.AdditionalFile.txt" }} -,{ "pid":12345, "tid":1, "ts":1682192856874612, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856874700, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.AdditionalFile.txt" }} -,{ "pid":12345, "tid":1, "ts":1682192856874701, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856874779, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.InputSystem.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856874866, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856874955, "dur":134, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856875089, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856875183, "dur":196, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_0E48623D57FCC35A.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1682192856875380, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856875479, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIServiceModule.dll_3165C78B73565E06.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1682192856875562, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856875658, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_A9F454FA4AC4590B.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1682192856875729, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856875817, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_70CDE4D512829611.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1682192856875895, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856875983, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_F3B9433ACCF684E0.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1682192856876052, "dur":112, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856876166, "dur":175, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_377437F4532567A1.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1682192856876342, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856876433, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_C45AD6F499D71C2C.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1682192856876530, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856876629, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_EBF52E2449EDFFEE.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1682192856876686, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856876770, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_A58D266661D75B4B.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1682192856876824, "dur":370, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856877197, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_8338E12FFF25C701.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1682192856877202, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856877289, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.CodeGen.AdditionalFile.txt" }} -,{ "pid":12345, "tid":1, "ts":1682192856877290, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856877375, "dur":1271, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Burst.Cecil.dll_8CDBB33055545F87.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1682192856878646, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856878776, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.AdditionalFile.txt" }} -,{ "pid":12345, "tid":1, "ts":1682192856878782, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856878868, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Runtime.AdditionalFile.txt" }} -,{ "pid":12345, "tid":1, "ts":1682192856878870, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856878965, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Runtime.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856879017, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856879100, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamples.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856879158, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856879253, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.AdditionalFile.txt" }} -,{ "pid":12345, "tid":1, "ts":1682192856879254, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856879339, "dur":49, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856879389, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856879467, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856879525, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856879607, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.Editor.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856879658, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856879738, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":1, "ts":1682192856879739, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856879813, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856879867, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856879947, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":1, "ts":1682192856879951, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856880041, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.2D.Sprite.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":1, "ts":1682192856880042, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856880121, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Scheduler.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856880173, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856880260, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamplesEditor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":1, "ts":1682192856880265, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856880353, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.Internal.AdditionalFile.txt" }} -,{ "pid":12345, "tid":1, "ts":1682192856880358, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856880458, "dur":45, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/SimpleJSON.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856880503, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856880581, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.Editor.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856880633, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856880717, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":1, "ts":1682192856880718, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856880798, "dur":114, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856880912, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856880979, "dur":47, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsPlaymode.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856881026, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856881122, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/12540594754886937326.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856881212, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856881318, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/17471587741674112842.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856881385, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856881468, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/15394042617203071315.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856881527, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856881622, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/6591615775254759062.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856881687, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856881780, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/1687297622542971368.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856881847, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856881935, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/9347744537272444272.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856882004, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856882105, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/1723042715960067801.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856882179, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856882266, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/4691676790321305727.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856882328, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856882400, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/10010842633742469623.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856882454, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856882533, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/1907345496941296335.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856882588, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856882666, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/9703144790800738880.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856882730, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856882850, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/4425289655808235400.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856882912, "dur":506, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856883419, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.CodeGen.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856883429, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856883530, "dur":15, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856883546, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856883659, "dur":183, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856883842, "dur":688, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856884531, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponents.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856884543, "dur":1274, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856885818, "dur":3850, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856889669, "dur":1567, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856891237, "dur":3793, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856895031, "dur":4175, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856899206, "dur":1961, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856901168, "dur":2667, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856903835, "dur":3105, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856906940, "dur":1648, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856908589, "dur":2934, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856911523, "dur":1961, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856913485, "dur":1932, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856915417, "dur":1796, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856917214, "dur":2726, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856919940, "dur":2263, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856922204, "dur":2206, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856924411, "dur":2081, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856926492, "dur":7160, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856933653, "dur":1857, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856935510, "dur":1888, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856937398, "dur":2076, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856939475, "dur":1724, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856941200, "dur":1540, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856942741, "dur":2701, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856945443, "dur":14752, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.dll (+2 others)" }} -,{ "pid":12345, "tid":1, "ts":1682192856960196, "dur":224, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856960434, "dur":6117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.dll (+2 others)" }} -,{ "pid":12345, "tid":1, "ts":1682192856966552, "dur":166, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856966733, "dur":735, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.CodeGen.dll (+2 others)" }} -,{ "pid":12345, "tid":1, "ts":1682192856967468, "dur":207, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856967696, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Collections.ref.dll_656D7410E7809ECD.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1682192856967703, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856967794, "dur":512, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.DocCodeSamples.dll (+2 others)" }} -,{ "pid":12345, "tid":1, "ts":1682192856968306, "dur":245, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856968553, "dur":826, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Collections.DocCodeSamples.dll (+pdb)" }} -,{ "pid":12345, "tid":1, "ts":1682192856969379, "dur":180, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856969561, "dur":804, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.TerrainTools.dll (+pdb)" }} -,{ "pid":12345, "tid":1, "ts":1682192856970365, "dur":169, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856970537, "dur":885, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/UnityEngine.Advertisements.dll (+pdb)" }} -,{ "pid":12345, "tid":1, "ts":1682192856971423, "dur":163, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856971589, "dur":1084, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/SimpleJSON.dll (+pdb)" }} -,{ "pid":12345, "tid":1, "ts":1682192856972674, "dur":151, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856972828, "dur":1147, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Networking.dll (+pdb)" }} -,{ "pid":12345, "tid":1, "ts":1682192856973976, "dur":165, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856974143, "dur":1006, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Threading.dll (+pdb)" }} -,{ "pid":12345, "tid":1, "ts":1682192856975149, "dur":161, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856975312, "dur":948, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Telemetry.dll (+pdb)" }} -,{ "pid":12345, "tid":1, "ts":1682192856976261, "dur":1483, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856977748, "dur":987, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/UnityEngine.UI.dll (+pdb)" }} -,{ "pid":12345, "tid":1, "ts":1682192856978735, "dur":140, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856978877, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.UI.pdb" }} -,{ "pid":12345, "tid":1, "ts":1682192856978880, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856978931, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.Advertisements.Editor.pdb" }} -,{ "pid":12345, "tid":1, "ts":1682192856978934, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856979008, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/JBooth.ShaderPackager.Editor.dll" }} -,{ "pid":12345, "tid":1, "ts":1682192856979012, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856979058, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Analytics.pdb" }} -,{ "pid":12345, "tid":1, "ts":1682192856979063, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856979115, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Editor.pdb" }} -,{ "pid":12345, "tid":1, "ts":1682192856979120, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856979171, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Configuration.dll" }} -,{ "pid":12345, "tid":1, "ts":1682192856979175, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856979227, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/XNodeEditor.dll" }} -,{ "pid":12345, "tid":1, "ts":1682192856979231, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856979285, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.2D.Sprite.Editor.pdb" }} -,{ "pid":12345, "tid":1, "ts":1682192856979289, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856979342, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Mathematics.Editor.dll" }} -,{ "pid":12345, "tid":1, "ts":1682192856979346, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856979399, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Mathematics.dll" }} -,{ "pid":12345, "tid":1, "ts":1682192856979403, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856979449, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Core.ShaderLibrary.dll" }} -,{ "pid":12345, "tid":1, "ts":1682192856979454, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856979501, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.Advertisements.DevX.Editor.pdb" }} -,{ "pid":12345, "tid":1, "ts":1682192856979505, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856979552, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.Advertisements.dll" }} -,{ "pid":12345, "tid":1, "ts":1682192856979556, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856979599, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/XNode.pdb" }} -,{ "pid":12345, "tid":1, "ts":1682192856979603, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856979646, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.BurstCompatibilityGen.pdb" }} -,{ "pid":12345, "tid":1, "ts":1682192856979650, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856979693, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.Editor.pdb" }} -,{ "pid":12345, "tid":1, "ts":1682192856979697, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856979738, "dur":147, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.CodeGen.dll.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1682192856979885, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856979976, "dur":2143, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856982120, "dur":2097, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856984218, "dur":291, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856984510, "dur":124, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856984634, "dur":940, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856985575, "dur":944, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856986520, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/IngameDebugConsole.Runtime.dll" }} -,{ "pid":12345, "tid":1, "ts":1682192856986524, "dur":284, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856986810, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/IngameDebugConsole.Runtime.pdb" }} -,{ "pid":12345, "tid":1, "ts":1682192856986818, "dur":158, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856986979, "dur":148, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856987128, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipelines.Core.Editor.ref.dll_46EB9B6930B27991.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1682192856987137, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856987243, "dur":159, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1682192856987402, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856987496, "dur":287, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856987783, "dur":980, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.RenderPipelines.Universal.Runtime.dll (+pdb)" }} -,{ "pid":12345, "tid":1, "ts":1682192856988763, "dur":170, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856988937, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Universal.Runtime.dll" }} -,{ "pid":12345, "tid":1, "ts":1682192856988942, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856988994, "dur":940, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.VisualScripting.Core.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":1, "ts":1682192856989934, "dur":220, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856990157, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Core.Editor.pdb" }} -,{ "pid":12345, "tid":1, "ts":1682192856990162, "dur":498, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856990661, "dur":217, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856990878, "dur":943, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.VisualScripting.SettingsProvider.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":1, "ts":1682192856991821, "dur":169, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856991992, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.SettingsProvider.Editor.dll" }} -,{ "pid":12345, "tid":1, "ts":1682192856991995, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856992044, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.SettingsProvider.Editor.pdb" }} -,{ "pid":12345, "tid":1, "ts":1682192856992047, "dur":218, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856992267, "dur":342, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856992610, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/com.unity.cinemachine.editor.dll" }} -,{ "pid":12345, "tid":1, "ts":1682192856992612, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856992655, "dur":220, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856992875, "dur":9954200, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856855118, "dur":9571, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856864692, "dur":2860, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856867552, "dur":1076, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856868629, "dur":2510, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856871140, "dur":3211, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856874352, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.AdditionalFile.txt" }} -,{ "pid":12345, "tid":2, "ts":1682192856874359, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856874453, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856874509, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856874595, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856874651, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856874729, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856874787, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856874872, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Runtime.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856874943, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856875032, "dur":543, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_A3EB090C176694B8.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856875575, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856875667, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_1995F9C75FCB21B4.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856875733, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856875822, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.dll_D4D920E74F94F16C.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856875897, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856875992, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_E376B04D52552E3D.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856876057, "dur":117, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856876177, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_EBA8B3C420D837BC.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856876283, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856876397, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_1272E56355894F7E.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856876462, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856876563, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_16B146CB58B58B75.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856876628, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856876720, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_E37F9EEB2CBB739B.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856876801, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856876918, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_09D0CB44C5F2096A.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856876984, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856877082, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_3EC754A9EBA88566.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856877142, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856877232, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_718617AE74E2D2C4.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856877304, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856877391, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Burst.Cecil.Pdb.dll_5DB01481FCEACE07.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856877446, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856877536, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Burst.Unsafe.dll_101A915279CBC7DC.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856877587, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856877691, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_905A726CBE6280BB.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856877753, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856877843, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":2, "ts":1682192856877849, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856877934, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Searcher.Editor.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856877994, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856878092, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":2, "ts":1682192856878093, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856878184, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":2, "ts":1682192856878185, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856878289, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856878346, "dur":145, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856878492, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_3025156E42E53A65.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856878500, "dur":156, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856878662, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856878719, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856878820, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":2, "ts":1682192856878822, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856878905, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Cinemachine.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856878963, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856879047, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/XNode.AdditionalFile.txt" }} -,{ "pid":12345, "tid":2, "ts":1682192856879053, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856879138, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856879196, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856879283, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsEditor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":2, "ts":1682192856879284, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856879372, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":2, "ts":1682192856879373, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856879455, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.ShaderLibrary.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856879511, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856879606, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":2, "ts":1682192856879607, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856879704, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":2, "ts":1682192856879705, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856879799, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856879856, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856879939, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.ShaderLibrary.AdditionalFile.txt" }} -,{ "pid":12345, "tid":2, "ts":1682192856879946, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856880032, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Monetization.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856880086, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856880166, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/XNodeEditor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":2, "ts":1682192856880167, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856880242, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Editor.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856880304, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856880460, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/SimpleJSON.AdditionalFile.txt" }} -,{ "pid":12345, "tid":2, "ts":1682192856880461, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856880558, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/MeshBakerEditor.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856880614, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856880711, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-firstpass.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856880765, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856880855, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsEditmode.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856880906, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856881000, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":2, "ts":1682192856881001, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856881076, "dur":47, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.DevX.Editor.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856881123, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856881232, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/16880971569482824950.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856881293, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856881371, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2084921166946444769.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856881434, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856881510, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/9870516708743257357.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856881570, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856881640, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/1418726328684876121.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856881701, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856881785, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/3119559315184918665.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856881850, "dur":252, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856882103, "dur":162, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/6947401630772442630.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856882265, "dur":377, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856882643, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/911446528535106498.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856882704, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856882840, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/17766336155681823506.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856882907, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856882998, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2820980864601610537.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856883057, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856883146, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/12062543880932173298.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856883201, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856883297, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamplesEditor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856883311, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856883392, "dur":24, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor-firstpass.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856883416, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856883493, "dur":19, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856883512, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856883588, "dur":18, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856883606, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856883691, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.2D.Sprite.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856883701, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856883789, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Runtime.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856883803, "dur":185, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856883990, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.CodeGen.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856884001, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856884103, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/MeshBakerEditor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856884117, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856884202, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856884217, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856884313, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Utilities.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856884324, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856884412, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Runtime.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856884424, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856884508, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856884520, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856884598, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/JBooth.ShaderPackager.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856884609, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856884690, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856884704, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856884786, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856884798, "dur":149, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856884949, "dur":3391, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856888341, "dur":6030, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856894372, "dur":2417, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856896790, "dur":5219, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856902010, "dur":1991, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856904002, "dur":4511, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856908514, "dur":3748, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856912263, "dur":5846, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856918110, "dur":2237, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856920348, "dur":1709, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856922058, "dur":13915, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856935974, "dur":5549, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856941524, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_193EC4CE382CBFB3.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856941532, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856941642, "dur":157, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856941799, "dur":128, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856941930, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEditor.TestRunner.pdb" }} -,{ "pid":12345, "tid":2, "ts":1682192856941933, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856942039, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEditor.TestRunner.dll" }} -,{ "pid":12345, "tid":2, "ts":1682192856942042, "dur":160, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856942204, "dur":2029, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856944233, "dur":1962, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856946196, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_4C98D3F7040CD4F5.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856946202, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856946324, "dur":531, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Searcher.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1682192856946856, "dur":234, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856947096, "dur":489, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Utilities.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1682192856947585, "dur":265, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856947854, "dur":469, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Runtime.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1682192856948323, "dur":236, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856948563, "dur":7073, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1682192856955637, "dur":209, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856955849, "dur":2044, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Monetization.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1682192856957894, "dur":1967, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856959865, "dur":17, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.Monetization.ref.dll_94F72C9EDBE6DB25.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856959882, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856959980, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856960090, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856960174, "dur":111, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Runtime.dll.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856960285, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856960385, "dur":578, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Threading.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1682192856960963, "dur":252, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856961218, "dur":793, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Networking.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1682192856962012, "dur":305, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856962319, "dur":9, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Networking.ref.dll_9223E05EC4657081.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856962328, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856962420, "dur":131, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/XNode.dll.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856962551, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856962636, "dur":133, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.dll.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856962769, "dur":221, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856962991, "dur":141, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsEditmode.dll.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856963132, "dur":290, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856963424, "dur":161, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Searcher.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856963585, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856963684, "dur":2205, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856965890, "dur":2101, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856967992, "dur":1180, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/AwesomeTechnologies.VegetationStudioPro.Runtime.dll (+pdb)" }} -,{ "pid":12345, "tid":2, "ts":1682192856969173, "dur":160, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856969335, "dur":906, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/NavMeshComponentsTestsEditmode.dll (+pdb)" }} -,{ "pid":12345, "tid":2, "ts":1682192856970241, "dur":151, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856970394, "dur":909, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.TextMeshPro.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":2, "ts":1682192856971304, "dur":142, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856971448, "dur":1195, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.TerrainTools.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":2, "ts":1682192856972643, "dur":133, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856972779, "dur":1242, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Mathematics.dll (+pdb)" }} -,{ "pid":12345, "tid":2, "ts":1682192856974021, "dur":160, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856974184, "dur":1037, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/NavMeshComponents.dll (+pdb)" }} -,{ "pid":12345, "tid":2, "ts":1682192856975221, "dur":383, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856975606, "dur":966, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/NavMeshComponentsExamplesEditor.dll (+pdb)" }} -,{ "pid":12345, "tid":2, "ts":1682192856976572, "dur":215, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856976790, "dur":1153, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Environments.dll (+pdb)" }} -,{ "pid":12345, "tid":2, "ts":1682192856977944, "dur":148, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856978094, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Environments.pdb" }} -,{ "pid":12345, "tid":2, "ts":1682192856978098, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856978148, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Environments.dll" }} -,{ "pid":12345, "tid":2, "ts":1682192856978151, "dur":644, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856978796, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Telemetry.pdb" }} -,{ "pid":12345, "tid":2, "ts":1682192856978799, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856978858, "dur":962, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Timeline.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":2, "ts":1682192856979820, "dur":158, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856979979, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Timeline.Editor.dll" }} -,{ "pid":12345, "tid":2, "ts":1682192856979982, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856980038, "dur":2078, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856982117, "dur":1882, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856983999, "dur":508, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856984508, "dur":120, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856984629, "dur":154, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Runtime.dll.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856984783, "dur":151, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856984936, "dur":613, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856985549, "dur":457, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856986006, "dur":439, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856986446, "dur":2294, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1682192856988740, "dur":230, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856988981, "dur":860, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1682192856989842, "dur":224, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856990082, "dur":739, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1682192856990821, "dur":221, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856991056, "dur":536, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1682192856991593, "dur":226, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856991837, "dur":793, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-firstpass.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1682192856992630, "dur":198, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856992854, "dur":1135, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1682192856995256, "dur":163, "ph":"X", "name": "StoreTimestampsOfNonGeneratedInputFiles", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856996572, "dur":8222677, "ph":"X", "name": "Csc", "args": { "detail":"Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1682192865240202, "dur":1195, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1682192865241398, "dur":125, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192865241525, "dur":230017, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp-Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":2, "ts":1682192865472141, "dur":92, "ph":"X", "name": "StoreTimestampsOfNonGeneratedInputFiles", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192865472309, "dur":1139997, "ph":"X", "name": "ILPostProcess", "args": { "detail":"Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp-Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":2, "ts":1682192866621416, "dur":259, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp-Editor.pdb" }} -,{ "pid":12345, "tid":2, "ts":1682192866621676, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192866621722, "dur":325313, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856855063, "dur":9607, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856864673, "dur":3170, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856867844, "dur":1291, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856869135, "dur":2082, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856871218, "dur":3102, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856874321, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.rsp" }} -,{ "pid":12345, "tid":3, "ts":1682192856874407, "dur":125, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856874544, "dur":34641, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll (+2 others)" }} -,{ "pid":12345, "tid":3, "ts":1682192856909186, "dur":243, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856909447, "dur":28955, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll (+2 others)" }} -,{ "pid":12345, "tid":3, "ts":1682192856938403, "dur":2830, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856941252, "dur":3750, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll (+2 others)" }} -,{ "pid":12345, "tid":3, "ts":1682192856945003, "dur":266, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856945295, "dur":6842, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.dll (+2 others)" }} -,{ "pid":12345, "tid":3, "ts":1682192856952138, "dur":173, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856952326, "dur":854, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.CodeGen.dll (+2 others)" }} -,{ "pid":12345, "tid":3, "ts":1682192856953180, "dur":219, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856953410, "dur":869, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsEditor.dll (+2 others)" }} -,{ "pid":12345, "tid":3, "ts":1682192856954280, "dur":207, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856954491, "dur":684, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll (+2 others)" }} -,{ "pid":12345, "tid":3, "ts":1682192856955175, "dur":333, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856955511, "dur":2999, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":3, "ts":1682192856958511, "dur":1869, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856960384, "dur":605, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Device.dll (+2 others)" }} -,{ "pid":12345, "tid":3, "ts":1682192856960989, "dur":252, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856961242, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Mathematics.ref.dll_E8EFDB1B8D5C174E.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1682192856961248, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856961332, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.Advertisements.Editor.ref.dll_95BDE7AB6BD0B967.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1682192856961338, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856961415, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Telemetry.ref.dll_FA20132DD923A4D2.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1682192856961421, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856961501, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Threading.ref.dll_F1D7894C57B2A611.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1682192856961506, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856961583, "dur":137, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1682192856961721, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856961809, "dur":205, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.dll.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1682192856962014, "dur":423, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856962438, "dur":190, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/MeshBakerEditor.dll.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1682192856962629, "dur":184, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856962815, "dur":24, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Scheduler.ref.dll_EE2AFA3B402F70E4.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1682192856962840, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856962939, "dur":189, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Registration.dll.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1682192856963128, "dur":299, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856963428, "dur":162, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Runtime.dll.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1682192856963590, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856963684, "dur":2009, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856965694, "dur":3367, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856969062, "dur":956, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Burst.dll (+pdb)" }} -,{ "pid":12345, "tid":3, "ts":1682192856970018, "dur":163, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856970183, "dur":946, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.PlasticSCM.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":3, "ts":1682192856971129, "dur":186, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856971319, "dur":995, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/UnityEngine.Advertisements.DevX.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":3, "ts":1682192856972314, "dur":175, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856972492, "dur":1782, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/NavMeshComponentsExamples.dll (+pdb)" }} -,{ "pid":12345, "tid":3, "ts":1682192856974274, "dur":140, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856974417, "dur":1053, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Configuration.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":3, "ts":1682192856975470, "dur":134, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856975608, "dur":966, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Device.dll (+pdb)" }} -,{ "pid":12345, "tid":3, "ts":1682192856976574, "dur":1356, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856977933, "dur":954, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":3, "ts":1682192856978887, "dur":225, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856979114, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Editor.dll" }} -,{ "pid":12345, "tid":3, "ts":1682192856979116, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856979171, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/AwesomeTechnologies.TouchReactSystemPro.Runtime.pdb" }} -,{ "pid":12345, "tid":3, "ts":1682192856979174, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856979228, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/XNodeEditor.pdb" }} -,{ "pid":12345, "tid":3, "ts":1682192856979230, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856979281, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll" }} -,{ "pid":12345, "tid":3, "ts":1682192856979283, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856979329, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Mathematics.Editor.pdb" }} -,{ "pid":12345, "tid":3, "ts":1682192856979332, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856979376, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll" }} -,{ "pid":12345, "tid":3, "ts":1682192856979379, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856979424, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/MeshBakerEditor.pdb" }} -,{ "pid":12345, "tid":3, "ts":1682192856979426, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856979476, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.pdb" }} -,{ "pid":12345, "tid":3, "ts":1682192856979478, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856979529, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Postprocessing.Runtime.dll" }} -,{ "pid":12345, "tid":3, "ts":1682192856979532, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856979576, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.PlasticSCM.Editor.pdb" }} -,{ "pid":12345, "tid":3, "ts":1682192856979579, "dur":393, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856979973, "dur":5478, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856985451, "dur":96, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856985548, "dur":1616, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.RenderPipelines.Core.Runtime.dll (+pdb)" }} -,{ "pid":12345, "tid":3, "ts":1682192856987164, "dur":155, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856987322, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Core.Runtime.dll" }} -,{ "pid":12345, "tid":3, "ts":1682192856987325, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856987375, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/IngameDebugConsole.Editor.dll" }} -,{ "pid":12345, "tid":3, "ts":1682192856987378, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856987419, "dur":469, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856987888, "dur":236, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856988124, "dur":815, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856988940, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Universal.Runtime.pdb" }} -,{ "pid":12345, "tid":3, "ts":1682192856988945, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856989001, "dur":228, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856989229, "dur":857, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856990086, "dur":110, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856990196, "dur":171, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1682192856990367, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856990457, "dur":162, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/PPv2URPConverters.dll.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1682192856990620, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856990712, "dur":354, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856991066, "dur":511, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856991577, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Universal.Editor.dll" }} -,{ "pid":12345, "tid":3, "ts":1682192856991580, "dur":201, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856991782, "dur":54, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856991836, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Shared.Editor.ref.dll_9669F6EBFF6DFFB7.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1682192856991843, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856991933, "dur":329, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-firstpass.dll.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1682192856992262, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856992377, "dur":474, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856992854, "dur":603, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp-firstpass.dll (+pdb)" }} -,{ "pid":12345, "tid":3, "ts":1682192856993457, "dur":121, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856993581, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp-firstpass.pdb" }} -,{ "pid":12345, "tid":3, "ts":1682192856993583, "dur":33, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856993617, "dur":9953435, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856855101, "dur":9579, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856864683, "dur":2317, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856867000, "dur":1030, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856868031, "dur":1084, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856869116, "dur":2542, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856871659, "dur":2684, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856874344, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.rsp" }} -,{ "pid":12345, "tid":4, "ts":1682192856874414, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856874511, "dur":20642, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll (+2 others)" }} -,{ "pid":12345, "tid":4, "ts":1682192856895154, "dur":234, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856895405, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_08FEAA520A2EFD60.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1682192856895414, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856895533, "dur":3406, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856898940, "dur":2071, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856901011, "dur":2341, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856903353, "dur":2217, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856905570, "dur":4790, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856910360, "dur":5153, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856915514, "dur":4206, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856919721, "dur":2730, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856922452, "dur":2221, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856924674, "dur":7083, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856931758, "dur":1842, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856933600, "dur":7264, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856940865, "dur":2117, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856942983, "dur":1869, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856944853, "dur":2290, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856947144, "dur":523, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/NavMeshComponents.dll (+2 others)" }} -,{ "pid":12345, "tid":4, "ts":1682192856947668, "dur":242, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856947915, "dur":712, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.dll (+2 others)" }} -,{ "pid":12345, "tid":4, "ts":1682192856948628, "dur":1536, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856950169, "dur":763, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamples.dll (+2 others)" }} -,{ "pid":12345, "tid":4, "ts":1682192856950932, "dur":210, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856951146, "dur":1760, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":4, "ts":1682192856952906, "dur":208, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856953118, "dur":705, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":4, "ts":1682192856953823, "dur":193, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856954020, "dur":675, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":4, "ts":1682192856954695, "dur":188, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856954886, "dur":722, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.2D.Sprite.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":4, "ts":1682192856955608, "dur":185, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856955796, "dur":1642, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/XNodeEditor.dll (+2 others)" }} -,{ "pid":12345, "tid":4, "ts":1682192856957438, "dur":206, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856957646, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.Advertisements.ref.dll_324BF20D18302AEA.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1682192856957653, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856957743, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Searcher.Editor.ref.dll_12B7E1785E41BE0E.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1682192856957748, "dur":222, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856957973, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.ref.dll_1A2083B43FB0BF18.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1682192856957980, "dur":165, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856958148, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VSCode.Editor.ref.dll_3628369EB48E4C19.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1682192856958154, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856958242, "dur":756, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsPlaymode.dll (+2 others)" }} -,{ "pid":12345, "tid":4, "ts":1682192856958999, "dur":278, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856959279, "dur":165, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.CodeGen.dll.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1682192856959444, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856959529, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VSCode.Editor.dll" }} -,{ "pid":12345, "tid":4, "ts":1682192856959532, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856959584, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VSCode.Editor.pdb" }} -,{ "pid":12345, "tid":4, "ts":1682192856959587, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856959636, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualStudio.Editor.pdb" }} -,{ "pid":12345, "tid":4, "ts":1682192856959638, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856959685, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Burst.CodeGen.dll" }} -,{ "pid":12345, "tid":4, "ts":1682192856959687, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856959731, "dur":423, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/MeshBakerCore.dll.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1682192856960154, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856960242, "dur":580, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.dll (+2 others)" }} -,{ "pid":12345, "tid":4, "ts":1682192856960822, "dur":457, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856961282, "dur":593, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":4, "ts":1682192856961876, "dur":376, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856962255, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Configuration.Editor.ref.dll_FF09FAD520872032.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1682192856962261, "dur":112, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856962376, "dur":160, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Telemetry.dll.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1682192856962536, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856962633, "dur":144, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.dll.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1682192856962777, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856962876, "dur":175, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Shaders.dll.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1682192856963051, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856963147, "dur":174, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1682192856963321, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856963417, "dur":190, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1682192856963607, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856963703, "dur":9960, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856973664, "dur":1118, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.ShaderGraph.Utilities.dll (+pdb)" }} -,{ "pid":12345, "tid":4, "ts":1682192856974783, "dur":257, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856975043, "dur":978, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/XNodeEditor.dll (+pdb)" }} -,{ "pid":12345, "tid":4, "ts":1682192856976021, "dur":151, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856976174, "dur":963, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Environments.Internal.dll (+pdb)" }} -,{ "pid":12345, "tid":4, "ts":1682192856977137, "dur":330, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856977470, "dur":995, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.CollabProxy.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":4, "ts":1682192856978465, "dur":3308, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856981775, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll" }} -,{ "pid":12345, "tid":4, "ts":1682192856981780, "dur":893, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856982675, "dur":704, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983379, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983391, "dur":15, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983407, "dur":12, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983419, "dur":12, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983431, "dur":15, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983446, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983457, "dur":12, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983469, "dur":19, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983489, "dur":14, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983503, "dur":14, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983517, "dur":22, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983539, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983550, "dur":16, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983566, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983577, "dur":14, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983591, "dur":10, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983602, "dur":8, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983610, "dur":10, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983620, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983631, "dur":871, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856984503, "dur":594, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Runtime.dll (+2 others)" }} -,{ "pid":12345, "tid":4, "ts":1682192856985097, "dur":229, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856985333, "dur":630, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":4, "ts":1682192856985963, "dur":201, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856986167, "dur":1009, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/IngameDebugConsole.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":4, "ts":1682192856987177, "dur":171, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856987349, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/IngameDebugConsole.Editor.pdb" }} -,{ "pid":12345, "tid":4, "ts":1682192856987353, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856987398, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Core.Runtime.pdb" }} -,{ "pid":12345, "tid":4, "ts":1682192856987403, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856987456, "dur":419, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856987875, "dur":297, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856988172, "dur":868, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856989040, "dur":77, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856989117, "dur":43, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856989160, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Flow.pdb" }} -,{ "pid":12345, "tid":4, "ts":1682192856989165, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856989229, "dur":863, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856990092, "dur":585, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856990677, "dur":381, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856991062, "dur":818, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.VisualScripting.State.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":4, "ts":1682192856991880, "dur":273, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856992157, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.State.Editor.pdb" }} -,{ "pid":12345, "tid":4, "ts":1682192856992162, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856992225, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.State.Editor.dll" }} -,{ "pid":12345, "tid":4, "ts":1682192856992228, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856992273, "dur":519, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856992793, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Shared.Editor.pdb" }} -,{ "pid":12345, "tid":4, "ts":1682192856992796, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856992864, "dur":9954150, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856855150, "dur":9587, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856864741, "dur":2653, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856867394, "dur":1070, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856868465, "dur":2272, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856870738, "dur":1859, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856872598, "dur":1756, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856874355, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856874441, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856874546, "dur":9, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.AdditionalFile.txt" }} -,{ "pid":12345, "tid":5, "ts":1682192856874555, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856874663, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856874724, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856874817, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.InputSystem.AdditionalFile.txt" }} -,{ "pid":12345, "tid":5, "ts":1682192856874818, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856874900, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.AdditionalFile.txt" }} -,{ "pid":12345, "tid":5, "ts":1682192856874906, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856874990, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.AdditionalFile.txt" }} -,{ "pid":12345, "tid":5, "ts":1682192856874995, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856875080, "dur":151, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.PackageManagerUIModule.dll_653CB7C2578CD58A.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856875232, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856875355, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_F873B6288A1F0DEC.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856875412, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856875507, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_F0818FF6EDA6FA42.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856875564, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856875665, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_B2AD9CCC85AE42D0.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856875749, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856875838, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_A8A2A65581B38E57.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856875897, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856875989, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_EB0D3C334BDFD6B1.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856876057, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856876168, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_D5977E22A8AC4443.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856876245, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856876339, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_6B92C2897005B056.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856876398, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856876482, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_F15AEC68C07E8599.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856876537, "dur":139, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856876679, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_2D8248E512D4EE43.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856876738, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856876824, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_0B794DA4DE561539.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856876915, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856877008, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_D7B7213748405E75.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856877060, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856877163, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_86930378C91DA973.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856877169, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856877262, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.CodeGen.AdditionalFile.txt" }} -,{ "pid":12345, "tid":5, "ts":1682192856877268, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856877352, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_AE1AD5A12B4FF4D2.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856877408, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856877508, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Burst.Cecil.Mdb.dll_465D9C127E35CC84.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856877583, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856877684, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_F93C4918FD9522C3.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856877748, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856877850, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":5, "ts":1682192856877851, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856877942, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Utilities.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856877998, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856878089, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Editor.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856878162, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856878242, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponents.AdditionalFile.txt" }} -,{ "pid":12345, "tid":5, "ts":1682192856878243, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856878319, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.AdditionalFile.txt" }} -,{ "pid":12345, "tid":5, "ts":1682192856878320, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856878397, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":5, "ts":1682192856878403, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856878479, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.AdditionalFile.txt" }} -,{ "pid":12345, "tid":5, "ts":1682192856878484, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856878571, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856878628, "dur":1437, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856880066, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Threading.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856880117, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856880221, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":5, "ts":1682192856880226, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856880312, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/com.unity.cinemachine.editor.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856880381, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856880464, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Editor.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856880516, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856880600, "dur":48, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Networking.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856880648, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856880733, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Editor.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856880790, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856880873, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.BurstCompatibilityGen.AdditionalFile.txt" }} -,{ "pid":12345, "tid":5, "ts":1682192856880874, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856880960, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsPlaymode.AdditionalFile.txt" }} -,{ "pid":12345, "tid":5, "ts":1682192856880961, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856881038, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856881098, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856881181, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/497035096193185419.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856881248, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856881334, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/8899139255040401798.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856881397, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856881472, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/5803490648119114145.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856881533, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856881609, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/18408091341978535793.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856881671, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856881754, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/11368897008157290650.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856881813, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856881890, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.CompilationPipeline.Common.dll_95A2D0A3BBEEE89C.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856881897, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856881981, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/11169949131693821681.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856882042, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856882126, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/5678380843536809211.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856882210, "dur":270, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856882482, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/3388064732626934676.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856882549, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856882636, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/17833018831532810861.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856882699, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856882831, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/3818794330681902346.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856882897, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856882981, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/16794585710609549488.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856883040, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856883134, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/1475724585155360059.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856883195, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856883291, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2157608619508796868.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856883350, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856883423, "dur":17, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856883440, "dur":142, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856883583, "dur":16, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856883599, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856883682, "dur":16, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856883698, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856883791, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856883802, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856883890, "dur":15, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856883905, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856884007, "dur":17, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Telemetry.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856884025, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856884132, "dur":15, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/XNode.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856884148, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856884234, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856884248, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856884325, "dur":17, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Searcher.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856884343, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856884422, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856884433, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856884522, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856884534, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856884635, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856884648, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856884733, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipeline.Universal.ShaderLibrary.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856884745, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856884836, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.BurstCompatibilityGen.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856884848, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856884925, "dur":1797, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856886722, "dur":3927, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856890650, "dur":3934, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856894585, "dur":2369, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856896955, "dur":4815, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856901770, "dur":1731, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856903501, "dur":8896, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856912398, "dur":3453, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856915851, "dur":2641, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856918492, "dur":1916, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856920408, "dur":6095, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856926503, "dur":2325, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856928829, "dur":3517, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856932347, "dur":2101, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856934448, "dur":5385, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856939833, "dur":17070, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856956904, "dur":3192, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/JBooth.ShaderPackager.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":5, "ts":1682192856960096, "dur":242, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856960340, "dur":579, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.Internal.dll (+2 others)" }} -,{ "pid":12345, "tid":5, "ts":1682192856960920, "dur":291, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856961214, "dur":551, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Scheduler.dll (+2 others)" }} -,{ "pid":12345, "tid":5, "ts":1682192856961765, "dur":1026, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856962793, "dur":565, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Registration.dll (+2 others)" }} -,{ "pid":12345, "tid":5, "ts":1682192856963358, "dur":235, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856963595, "dur":803, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":5, "ts":1682192856964398, "dur":244, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856964645, "dur":743, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":5, "ts":1682192856965388, "dur":253, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856965643, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Editor.ref.dll_CCD0CF61C5D7A10A.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856965648, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856965729, "dur":116, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.DevX.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856965845, "dur":130, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856965976, "dur":8019, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856973996, "dur":973, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Mathematics.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":5, "ts":1682192856974969, "dur":152, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856975124, "dur":880, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/MeshBakerCore.dll (+pdb)" }} -,{ "pid":12345, "tid":5, "ts":1682192856976004, "dur":274, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856976282, "dur":901, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Scheduler.dll (+pdb)" }} -,{ "pid":12345, "tid":5, "ts":1682192856977183, "dur":182, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856977367, "dur":987, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Internal.dll (+pdb)" }} -,{ "pid":12345, "tid":5, "ts":1682192856978354, "dur":895, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856979251, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Internal.pdb" }} -,{ "pid":12345, "tid":5, "ts":1682192856979255, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856979305, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Threading.dll" }} -,{ "pid":12345, "tid":5, "ts":1682192856979309, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856979355, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/AwesomeTechnologies.TouchReactSystemPro.Editor.pdb" }} -,{ "pid":12345, "tid":5, "ts":1682192856979360, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856979411, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Networking.pdb" }} -,{ "pid":12345, "tid":5, "ts":1682192856979415, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856979462, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/SimpleJSON.dll" }} -,{ "pid":12345, "tid":5, "ts":1682192856979466, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856979512, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.dll" }} -,{ "pid":12345, "tid":5, "ts":1682192856979516, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856979566, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll" }} -,{ "pid":12345, "tid":5, "ts":1682192856979569, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856979615, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TerrainTools.pdb" }} -,{ "pid":12345, "tid":5, "ts":1682192856979619, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856979667, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/AwesomeTechnologies.VegetationStudioPro.Editor.dll" }} -,{ "pid":12345, "tid":5, "ts":1682192856979672, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856979716, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.Editor.dll" }} -,{ "pid":12345, "tid":5, "ts":1682192856979720, "dur":137, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856979858, "dur":164, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.BurstCompatibilityGen.dll.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856980022, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856980116, "dur":1821, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856981937, "dur":12, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856981949, "dur":14, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856981963, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856981974, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856981985, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856981997, "dur":10, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856982007, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856982018, "dur":20, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856982039, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856982050, "dur":10, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856982061, "dur":9, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856982070, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856982082, "dur":8, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856982090, "dur":1983, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856984073, "dur":449, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856984522, "dur":104, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856984627, "dur":245, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Runtime.dll.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856984872, "dur":160, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856985034, "dur":512, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856985547, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipelines.Core.Runtime.ref.dll_CE6A42C97D96EB0A.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856985554, "dur":172, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856985737, "dur":280, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856986017, "dur":322, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856986340, "dur":156, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856986496, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipeline.Universal.ShaderLibrary.ref.dll_5436F99F8BDCED8B.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856986503, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856986599, "dur":147, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Runtime.dll.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856986746, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856986831, "dur":630, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856987462, "dur":312, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856987774, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipelines.Universal.Runtime.ref.dll_5400A10AF7CC6BEA.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856987787, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856987902, "dur":190, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Cinemachine.dll.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856988092, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856988166, "dur":792, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856988958, "dur":910, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.VisualScripting.State.dll (+pdb)" }} -,{ "pid":12345, "tid":5, "ts":1682192856989868, "dur":159, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856990030, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.State.dll" }} -,{ "pid":12345, "tid":5, "ts":1682192856990033, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856990085, "dur":74, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856990160, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Core.Editor.dll" }} -,{ "pid":12345, "tid":5, "ts":1682192856990163, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856990214, "dur":195, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856990410, "dur":964, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.RenderPipelines.Universal.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":5, "ts":1682192856991374, "dur":195, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856991573, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Universal.Editor.pdb" }} -,{ "pid":12345, "tid":5, "ts":1682192856991578, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856991624, "dur":213, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856991838, "dur":824, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.VisualScripting.Shared.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":5, "ts":1682192856992663, "dur":122, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856992788, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Shared.Editor.dll" }} -,{ "pid":12345, "tid":5, "ts":1682192856992790, "dur":36, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856992827, "dur":29, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856992856, "dur":9628566, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192866621423, "dur":325471, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp-Editor.dll" }} -,{ "pid":12345, "tid":5, "ts":1682192866946895, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192866946975, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ScriptAssemblies" }} -,{ "pid":12345, "tid":5, "ts":1682192866946976, "dur":0, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856855173, "dur":9574, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856864750, "dur":2378, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856867128, "dur":1141, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856868270, "dur":1550, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856869821, "dur":2316, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856872137, "dur":3137, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856875275, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_903E9BDCD3D6A48A.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856875350, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856875449, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_4FB697B2845ABFE3.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856875510, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856875592, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_72708534F1C3695E.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856875648, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856875746, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_F8EC2BAB266D80D9.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856875822, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856875928, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_88BDD9048955E25C.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856875985, "dur":130, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856876117, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_C3E02E218094219F.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856876180, "dur":765, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856876948, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_D9605C8BD6941FC1.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856877010, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856877095, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_7C430270322B6A3B.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856877101, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856877199, "dur":9, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.dll_A234DA0EF1216487.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856877208, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856877293, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.CodeGen.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856877345, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856877427, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Burst.Cecil.Rocks.dll_EAEC4A72F0696507.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856877492, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856877584, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_863A9CBBAA3082F4.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856877645, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856877733, "dur":124, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856877858, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856877954, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Utilities.AdditionalFile.txt" }} -,{ "pid":12345, "tid":6, "ts":1682192856877959, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856878033, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Runtime.AdditionalFile.txt" }} -,{ "pid":12345, "tid":6, "ts":1682192856878039, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856878121, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856878199, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856878279, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.Editor.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856878338, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856878424, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Runtime.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856878477, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856878564, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":6, "ts":1682192856878570, "dur":122, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856878694, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856878749, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856878834, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Runtime.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856878901, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856878986, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Cinemachine.AdditionalFile.txt" }} -,{ "pid":12345, "tid":6, "ts":1682192856878987, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856879069, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamples.AdditionalFile.txt" }} -,{ "pid":12345, "tid":6, "ts":1682192856879070, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856879147, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.AdditionalFile.txt" }} -,{ "pid":12345, "tid":6, "ts":1682192856879154, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856879242, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856879292, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856879374, "dur":46, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856879421, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856879500, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.2D.Sprite.Editor.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856879552, "dur":837, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856880452, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Device.AdditionalFile.txt" }} -,{ "pid":12345, "tid":6, "ts":1682192856880453, "dur":578, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856881032, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":6, "ts":1682192856881037, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856881120, "dur":1053, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/12248871281822510316.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856882174, "dur":147, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856882322, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/6841316898876630997.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856882383, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856882473, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/6638697812462351101.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856882537, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856882634, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/1379359308984453704.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856882693, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856882774, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/17525389461119239690.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856882831, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856882902, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/13104283549428636260.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856882954, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856883027, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/10571807241835812913.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856883091, "dur":139, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856883230, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/14814235663552238418.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856883286, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856883359, "dur":18, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-firstpass.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856883377, "dur":406, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856883784, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856883798, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856883884, "dur":15, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Registration.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856883899, "dur":119, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856884019, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamples.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856884031, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856884130, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856884144, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856884238, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856884249, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856884331, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856884342, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856884428, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856884441, "dur":178, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856884620, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Runtime.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856884632, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856884718, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856884729, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856884806, "dur":15, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.DocCodeSamples.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856884821, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856884907, "dur":1961, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856886868, "dur":1512, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856888381, "dur":2463, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856890845, "dur":2849, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856893695, "dur":1790, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856895486, "dur":1785, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856897272, "dur":1734, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856899007, "dur":2106, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856901113, "dur":3375, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856904489, "dur":2168, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856906658, "dur":2788, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856909447, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_E55D0F7C63F01D9E.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856909457, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856909566, "dur":193, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856909760, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856909849, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.TestRunner.dll" }} -,{ "pid":12345, "tid":6, "ts":1682192856909853, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856909899, "dur":3424, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856913324, "dur":2371, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856915695, "dur":3815, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856919511, "dur":1886, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856921398, "dur":2264, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856923662, "dur":3960, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856927623, "dur":2021, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856929644, "dur":3283, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856932928, "dur":7062, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856939991, "dur":3023, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856943015, "dur":2580, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856945596, "dur":1673, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.dll (+2 others)" }} -,{ "pid":12345, "tid":6, "ts":1682192856947269, "dur":200, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856947477, "dur":12477, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Internal.dll (+2 others)" }} -,{ "pid":12345, "tid":6, "ts":1682192856959954, "dur":246, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856960207, "dur":598, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.dll (+2 others)" }} -,{ "pid":12345, "tid":6, "ts":1682192856960805, "dur":194, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856961001, "dur":755, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":6, "ts":1682192856961756, "dur":243, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856962002, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Mathematics.Editor.ref.dll_9A20CFD48BC11F43.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856962010, "dur":137, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856962150, "dur":158, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.Internal.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856962308, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856962396, "dur":202, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856962598, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856962682, "dur":217, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Utilities.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856962899, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856962981, "dur":169, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/JBooth.ShaderPackager.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856963151, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856963229, "dur":131, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856963360, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856963448, "dur":186, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856963635, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856963716, "dur":2026, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856965744, "dur":296, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856966040, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856966139, "dur":2051, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856968191, "dur":1117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Collections.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":6, "ts":1682192856969309, "dur":155, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856969467, "dur":1257, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/XNode.dll (+pdb)" }} -,{ "pid":12345, "tid":6, "ts":1682192856970725, "dur":167, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856970895, "dur":1028, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Postprocessing.Runtime.dll (+pdb)" }} -,{ "pid":12345, "tid":6, "ts":1682192856971923, "dur":236, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856972162, "dur":1231, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll (+pdb)" }} -,{ "pid":12345, "tid":6, "ts":1682192856973393, "dur":893, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856974290, "dur":1109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.2D.Sprite.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":6, "ts":1682192856975399, "dur":148, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856975549, "dur":947, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/NavMeshComponentsTestsPlaymode.dll (+pdb)" }} -,{ "pid":12345, "tid":6, "ts":1682192856976496, "dur":130, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856976629, "dur":936, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Burst.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":6, "ts":1682192856977565, "dur":177, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856977746, "dur":966, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Timeline.dll (+pdb)" }} -,{ "pid":12345, "tid":6, "ts":1682192856978713, "dur":157, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856978873, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Timeline.pdb" }} -,{ "pid":12345, "tid":6, "ts":1682192856978877, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856978930, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Timeline.dll" }} -,{ "pid":12345, "tid":6, "ts":1682192856978933, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856978985, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.Advertisements.Editor.dll" }} -,{ "pid":12345, "tid":6, "ts":1682192856978990, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856979038, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Environments.Internal.pdb" }} -,{ "pid":12345, "tid":6, "ts":1682192856979041, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856979088, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.Monetization.dll" }} -,{ "pid":12345, "tid":6, "ts":1682192856979092, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856979139, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsExamplesEditor.pdb" }} -,{ "pid":12345, "tid":6, "ts":1682192856979143, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856979191, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEditor.UI.dll" }} -,{ "pid":12345, "tid":6, "ts":1682192856979194, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856979236, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Configuration.Editor.dll" }} -,{ "pid":12345, "tid":6, "ts":1682192856979241, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856979293, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Postprocessing.Editor.pdb" }} -,{ "pid":12345, "tid":6, "ts":1682192856979297, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856979348, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.ShaderGraph.Utilities.pdb" }} -,{ "pid":12345, "tid":6, "ts":1682192856979352, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856979404, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Mathematics.pdb" }} -,{ "pid":12345, "tid":6, "ts":1682192856979407, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856979457, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/SimpleJSON.pdb" }} -,{ "pid":12345, "tid":6, "ts":1682192856979461, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856979509, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.pdb" }} -,{ "pid":12345, "tid":6, "ts":1682192856979513, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856979564, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.Editor.pdb" }} -,{ "pid":12345, "tid":6, "ts":1682192856979568, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856979616, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TerrainTools.dll" }} -,{ "pid":12345, "tid":6, "ts":1682192856979620, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856979666, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.BurstCompatibilityGen.dll" }} -,{ "pid":12345, "tid":6, "ts":1682192856979668, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856979717, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/AwesomeTechnologies.VegetationStudioPro.Runtime.pdb" }} -,{ "pid":12345, "tid":6, "ts":1682192856979720, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856979772, "dur":146, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Runtime.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856979918, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856980028, "dur":4155, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856984183, "dur":332, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856984515, "dur":114, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856984629, "dur":708, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856985338, "dur":1022, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/IngameDebugConsole.Runtime.dll (+pdb)" }} -,{ "pid":12345, "tid":6, "ts":1682192856986360, "dur":153, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856986515, "dur":1100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.RenderPipeline.Universal.ShaderLibrary.dll (+pdb)" }} -,{ "pid":12345, "tid":6, "ts":1682192856987615, "dur":172, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856987796, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipeline.Universal.ShaderLibrary.dll" }} -,{ "pid":12345, "tid":6, "ts":1682192856987802, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856987909, "dur":191, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856988100, "dur":879, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.VisualScripting.Flow.dll (+pdb)" }} -,{ "pid":12345, "tid":6, "ts":1682192856988979, "dur":176, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856989158, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Flow.dll" }} -,{ "pid":12345, "tid":6, "ts":1682192856989161, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856989223, "dur":810, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856990034, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.State.pdb" }} -,{ "pid":12345, "tid":6, "ts":1682192856990037, "dur":721, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856990759, "dur":298, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856991058, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.Editor.ref.dll_E03858E727F23F6F.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856991069, "dur":168, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856991239, "dur":149, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856991388, "dur":259, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856991649, "dur":190, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856991839, "dur":97, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856991937, "dur":285, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856992223, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856992281, "dur":574, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856992855, "dur":8247354, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192865240210, "dur":231943, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp.dll (+pdb)" }} -,{ "pid":12345, "tid":6, "ts":1682192865472757, "dur":82, "ph":"X", "name": "StoreTimestampsOfNonGeneratedInputFiles", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192865472846, "dur":1186643, "ph":"X", "name": "ILPostProcess", "args": { "detail":"Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp.dll (+pdb)" }} -,{ "pid":12345, "tid":6, "ts":1682192866668209, "dur":245999, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll" }} -,{ "pid":12345, "tid":6, "ts":1682192866914215, "dur":2, "ph":"X", "name": "StoreTimestampsOfNonGeneratedInputFiles", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192866914221, "dur":1148, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.dll" }} -,{ "pid":12345, "tid":6, "ts":1682192866915377, "dur":31640, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856855205, "dur":9553, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856864763, "dur":1798, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856866562, "dur":1178, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856867740, "dur":1155, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856868896, "dur":2511, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856871408, "dur":2344, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856873753, "dur":1787, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856875541, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_F831C39ABAFD6EEB.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856875632, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856875723, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_35BDE2BFB5416E2A.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856875781, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856875859, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_BE990C7165D1D1F1.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856875913, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856875997, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_1923647CFBE66774.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856876055, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856876147, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_BF16752592C060F3.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856876252, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856876354, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_27057285414B209C.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856876437, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856876539, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_7FBDC709600F6835.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856876622, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856876707, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UNETModule.dll_8B927394737C7652.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856876757, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856876835, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_FAC1618CDBA852AC.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856876899, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856876989, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_1B143E6B897C8CD1.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856877063, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856877149, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_D5CB58587E6815AE.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856877161, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856877242, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.CodeGen.AdditionalFile.txt" }} -,{ "pid":12345, "tid":7, "ts":1682192856877248, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856877321, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_A2718EADF8CB71E0.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856877328, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856877426, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Runtime.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856877483, "dur":129, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856877613, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_AE237261CA2DA2B1.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856877677, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856877774, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipeline.Universal.ShaderLibrary.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856877834, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856877923, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Searcher.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":7, "ts":1682192856877928, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856878013, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Internal.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856878073, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856878164, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.AdditionalFile.txt" }} -,{ "pid":12345, "tid":7, "ts":1682192856878165, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856878256, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.Editor.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856878316, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856878409, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Runtime.AdditionalFile.txt" }} -,{ "pid":12345, "tid":7, "ts":1682192856878415, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856878504, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Editor.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856878589, "dur":229, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856878820, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856878904, "dur":357, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856879262, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsEditor.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856879318, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856879406, "dur":49, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856879455, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856879532, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Shaders.AdditionalFile.txt" }} -,{ "pid":12345, "tid":7, "ts":1682192856879533, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856879628, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Analytics.AdditionalFile.txt" }} -,{ "pid":12345, "tid":7, "ts":1682192856879632, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856879714, "dur":9, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":7, "ts":1682192856879723, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856879803, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":7, "ts":1682192856879804, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856879892, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Telemetry.AdditionalFile.txt" }} -,{ "pid":12345, "tid":7, "ts":1682192856879893, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856879965, "dur":48, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.Editor.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856880013, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856880091, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Threading.AdditionalFile.txt" }} -,{ "pid":12345, "tid":7, "ts":1682192856880092, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856880170, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/XNodeEditor.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856880220, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856880303, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Scheduler.AdditionalFile.txt" }} -,{ "pid":12345, "tid":7, "ts":1682192856880304, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856880381, "dur":45, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Device.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856880426, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856880505, "dur":48, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/PPv2URPConverters.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856880554, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856880632, "dur":45, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Registration.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856880678, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856880755, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor-firstpass.AdditionalFile.txt" }} -,{ "pid":12345, "tid":7, "ts":1682192856880756, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856880836, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856880906, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856880994, "dur":46, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.BurstCompatibilityGen.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856881040, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856881123, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/320441126896875025.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856881217, "dur":335, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856881553, "dur":838, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/9111662996337956171.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856882391, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856882496, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/4494907431374462528.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856882555, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856882647, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2074369592318871490.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856882710, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856882844, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2781082588993088484.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856882924, "dur":136, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856883060, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/10292501669419677951.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856883116, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856883185, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/17242669345997350737.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856883240, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856883321, "dur":18, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/com.unity.cinemachine.editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856883339, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856883427, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/XNodeEditor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856883441, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856883531, "dur":22, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856883553, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856883670, "dur":19, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856883690, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856883775, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Analytics.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856883788, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856883870, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsEditmode.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856883883, "dur":116, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856884000, "dur":16, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Threading.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856884016, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856884104, "dur":15, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Runtime.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856884119, "dur":130, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856884250, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856884263, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856884345, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Shaders.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856884358, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856884436, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.InputSystem.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856884449, "dur":232, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856884682, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/PPv2URPConverters.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856884694, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856884781, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.DevX.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856884793, "dur":150, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856884944, "dur":2658, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856887603, "dur":1561, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856889164, "dur":2115, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856891280, "dur":3524, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856894805, "dur":3530, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856898336, "dur":3446, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856901783, "dur":1737, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856903520, "dur":1963, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856905484, "dur":3564, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856909048, "dur":4238, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856913287, "dur":1912, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856915199, "dur":1749, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856916949, "dur":2183, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856919132, "dur":5063, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856924195, "dur":6481, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856930677, "dur":2127, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856932805, "dur":2615, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856935421, "dur":1751, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856937172, "dur":1980, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856939153, "dur":1700, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856940854, "dur":1701, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856942556, "dur":1588, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856944145, "dur":5014, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856949160, "dur":765, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.dll (+2 others)" }} -,{ "pid":12345, "tid":7, "ts":1682192856949926, "dur":206, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856950136, "dur":593, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/MeshBakerCore.dll (+2 others)" }} -,{ "pid":12345, "tid":7, "ts":1682192856950730, "dur":211, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856950944, "dur":445, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/XNode.dll (+2 others)" }} -,{ "pid":12345, "tid":7, "ts":1682192856951389, "dur":173, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856951565, "dur":566, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":7, "ts":1682192856952132, "dur":369, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856952509, "dur":656, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":7, "ts":1682192856953166, "dur":295, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856953465, "dur":678, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":7, "ts":1682192856954143, "dur":206, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856954353, "dur":781, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.ShaderLibrary.dll (+2 others)" }} -,{ "pid":12345, "tid":7, "ts":1682192856955134, "dur":207, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856955344, "dur":937, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":7, "ts":1682192856956281, "dur":242, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856956526, "dur":956, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/SimpleJSON.dll (+2 others)" }} -,{ "pid":12345, "tid":7, "ts":1682192856957483, "dur":336, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856957821, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.2D.Sprite.Editor.ref.dll_DDBAA27A82CE9E28.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856957829, "dur":899, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856958732, "dur":3110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Monetization.dll.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856961842, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856961927, "dur":193, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Networking.dll.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856962120, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856962210, "dur":177, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Threading.dll.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856962387, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856962468, "dur":169, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/XNodeEditor.dll.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856962637, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856962724, "dur":156, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.ShaderLibrary.dll.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856962880, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856962977, "dur":129, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856963106, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856963187, "dur":128, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamples.dll.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856963315, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856963400, "dur":147, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamplesEditor.dll.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856963548, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856963638, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Registration.ref.dll_0EE1D1878B496356.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856963643, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856963732, "dur":155, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856963887, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856963975, "dur":7234, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856971210, "dur":1052, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Collections.dll (+pdb)" }} -,{ "pid":12345, "tid":7, "ts":1682192856972262, "dur":162, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856972426, "dur":1140, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.EditorCoroutines.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":7, "ts":1682192856973567, "dur":358, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856973928, "dur":1307, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Postprocessing.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":7, "ts":1682192856975235, "dur":150, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856975388, "dur":1021, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Configuration.dll (+pdb)" }} -,{ "pid":12345, "tid":7, "ts":1682192856976410, "dur":198, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856976611, "dur":954, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/UnityEngine.Advertisements.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":7, "ts":1682192856977565, "dur":176, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856977744, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Timeline.ref.dll_621CDDF9C514DF8F.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856977750, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856977845, "dur":1050, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.TextMeshPro.dll (+pdb)" }} -,{ "pid":12345, "tid":7, "ts":1682192856978895, "dur":196, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856979093, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.dll" }} -,{ "pid":12345, "tid":7, "ts":1682192856979098, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856979156, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsTestsPlaymode.dll" }} -,{ "pid":12345, "tid":7, "ts":1682192856979160, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856979213, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/MeshBakerCore.dll" }} -,{ "pid":12345, "tid":7, "ts":1682192856979217, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856979262, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponents.pdb" }} -,{ "pid":12345, "tid":7, "ts":1682192856979266, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856979315, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Jobs.dll" }} -,{ "pid":12345, "tid":7, "ts":1682192856979319, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856979365, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsExamples.pdb" }} -,{ "pid":12345, "tid":7, "ts":1682192856979369, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856979419, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.EditorCoroutines.Editor.dll" }} -,{ "pid":12345, "tid":7, "ts":1682192856979423, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856979470, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TerrainTools.Editor.pdb" }} -,{ "pid":12345, "tid":7, "ts":1682192856979474, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856979528, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Universal.Shaders.dll" }} -,{ "pid":12345, "tid":7, "ts":1682192856979533, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856979582, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsEditor.dll" }} -,{ "pid":12345, "tid":7, "ts":1682192856979586, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856979635, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Burst.pdb" }} -,{ "pid":12345, "tid":7, "ts":1682192856979639, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856979683, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.DocCodeSamples.dll" }} -,{ "pid":12345, "tid":7, "ts":1682192856979688, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856979732, "dur":174, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856979906, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856979997, "dur":3218, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983215, "dur":77, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983292, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983303, "dur":13, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983316, "dur":13, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983330, "dur":13, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983343, "dur":14, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983358, "dur":15, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983373, "dur":13, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983386, "dur":14, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983400, "dur":13, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983413, "dur":22, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983436, "dur":16, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983452, "dur":14, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983467, "dur":18, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983485, "dur":18, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983503, "dur":21, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983524, "dur":21, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983546, "dur":23, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983569, "dur":13, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983582, "dur":15, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983597, "dur":13, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983610, "dur":14, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983625, "dur":881, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856984506, "dur":133, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856984639, "dur":936, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856985575, "dur":873, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856986449, "dur":1095, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.VisualScripting.Core.dll (+pdb)" }} -,{ "pid":12345, "tid":7, "ts":1682192856987544, "dur":185, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856987733, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Core.dll" }} -,{ "pid":12345, "tid":7, "ts":1682192856987736, "dur":134, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856987872, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipeline.Universal.ShaderLibrary.pdb" }} -,{ "pid":12345, "tid":7, "ts":1682192856987876, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856987925, "dur":170, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856988095, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.ref.dll_1E6ED5409D07C9A3.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856988103, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856988226, "dur":157, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856988383, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856988466, "dur":516, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856988983, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.Editor.ref.dll_EDC8690F57C5BDFD.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856988990, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856989110, "dur":944, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.ShaderGraph.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":7, "ts":1682192856990055, "dur":180, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856990239, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.ShaderGraph.Editor.dll" }} -,{ "pid":12345, "tid":7, "ts":1682192856990242, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856990298, "dur":35, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856990334, "dur":723, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/com.unity.cinemachine.editor.dll (+2 others)" }} -,{ "pid":12345, "tid":7, "ts":1682192856991057, "dur":371, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856991430, "dur":1005, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/com.unity.cinemachine.editor.dll (+pdb)" }} -,{ "pid":12345, "tid":7, "ts":1682192856992435, "dur":167, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856992606, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/com.unity.cinemachine.editor.pdb" }} -,{ "pid":12345, "tid":7, "ts":1682192856992609, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856992669, "dur":191, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856992861, "dur":9954155, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856855237, "dur":9532, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856864773, "dur":1171, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856865944, "dur":1736, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856867681, "dur":1082, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856868763, "dur":3470, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856872233, "dur":3886, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856876119, "dur":127, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_E219927C3C9A2E98.mvfrm" }} -,{ "pid":12345, "tid":8, "ts":1682192856876246, "dur":123, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856876371, "dur":163, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_03B086CE8C9E1EAA.mvfrm" }} -,{ "pid":12345, "tid":8, "ts":1682192856876534, "dur":3958, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856880504, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/PPv2URPConverters.AdditionalFile.txt" }} -,{ "pid":12345, "tid":8, "ts":1682192856880505, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856880588, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":8, "ts":1682192856880589, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856880670, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Networking.AdditionalFile.txt" }} -,{ "pid":12345, "tid":8, "ts":1682192856880671, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856880766, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor-firstpass.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856880837, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856880939, "dur":46, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.DocCodeSamples.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856880986, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856881067, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.DevX.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":8, "ts":1682192856881068, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856881163, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2391771579636945191.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856881252, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856881347, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/5546506141355401238.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856881410, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856881484, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/18218310762646611085.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856881544, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856881622, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/17346584914308636752.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856881684, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856881777, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/4059091172732495669.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856881842, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856881930, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/10678863128556690338.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856882003, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856882056, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2240406767038398906.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856882112, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856882192, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/15183149355271759364.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856882250, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856882334, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/12295599868861940527.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856882391, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856882480, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/5249134988916615986.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856882541, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856882634, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/3913888237084306484.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856882696, "dur":339, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856883036, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/4772145154433932943.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856883096, "dur":1305, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856884403, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.ShaderLibrary.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856884416, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856884527, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/SimpleJSON.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856884539, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856884634, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Device.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856884645, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856884729, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856884739, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856884843, "dur":126, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll.mvfrm" }} -,{ "pid":12345, "tid":8, "ts":1682192856884969, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856885061, "dur":2075, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856887136, "dur":1817, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856888953, "dur":1908, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856890861, "dur":6040, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856896902, "dur":2349, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856899252, "dur":3142, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856902394, "dur":1844, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856904239, "dur":7124, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856911364, "dur":3286, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856914651, "dur":4422, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856919073, "dur":1806, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856920880, "dur":3332, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856924212, "dur":10103, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856934316, "dur":10543, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856944860, "dur":2731, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856947592, "dur":29862, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll (+2 others)" }} -,{ "pid":12345, "tid":8, "ts":1682192856977455, "dur":197, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856977658, "dur":1003, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":8, "ts":1682192856978661, "dur":192, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856978858, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Timeline.Editor.ref.dll_0D3D3C0B73557612.mvfrm" }} -,{ "pid":12345, "tid":8, "ts":1682192856978863, "dur":136, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856979002, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/JBooth.ShaderPackager.Editor.pdb" }} -,{ "pid":12345, "tid":8, "ts":1682192856979005, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856979052, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Scheduler.dll" }} -,{ "pid":12345, "tid":8, "ts":1682192856979054, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856979120, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsExamplesEditor.dll" }} -,{ "pid":12345, "tid":8, "ts":1682192856979124, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856979176, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/AwesomeTechnologies.TouchReactSystemPro.Runtime.dll" }} -,{ "pid":12345, "tid":8, "ts":1682192856979179, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856979234, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Configuration.Editor.pdb" }} -,{ "pid":12345, "tid":8, "ts":1682192856979237, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856979291, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Postprocessing.Editor.dll" }} -,{ "pid":12345, "tid":8, "ts":1682192856979294, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856979343, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.ShaderGraph.Utilities.dll" }} -,{ "pid":12345, "tid":8, "ts":1682192856979345, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856979394, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.pdb" }} -,{ "pid":12345, "tid":8, "ts":1682192856979397, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856979440, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/MeshBakerEditor.dll" }} -,{ "pid":12345, "tid":8, "ts":1682192856979443, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856979483, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.dll" }} -,{ "pid":12345, "tid":8, "ts":1682192856979486, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856979534, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Postprocessing.Runtime.pdb" }} -,{ "pid":12345, "tid":8, "ts":1682192856979537, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856979583, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsEditor.pdb" }} -,{ "pid":12345, "tid":8, "ts":1682192856979586, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856979641, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Burst.dll" }} -,{ "pid":12345, "tid":8, "ts":1682192856979644, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856979685, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.DocCodeSamples.pdb" }} -,{ "pid":12345, "tid":8, "ts":1682192856979688, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856979765, "dur":234, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.DocCodeSamples.dll.mvfrm" }} -,{ "pid":12345, "tid":8, "ts":1682192856979999, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856980089, "dur":3726, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856983816, "dur":689, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856984505, "dur":960, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.InputSystem.dll (+pdb)" }} -,{ "pid":12345, "tid":8, "ts":1682192856985466, "dur":219, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856985688, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.InputSystem.pdb" }} -,{ "pid":12345, "tid":8, "ts":1682192856985691, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856985738, "dur":149, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipeline.Universal.ShaderLibrary.dll.mvfrm" }} -,{ "pid":12345, "tid":8, "ts":1682192856985887, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856985964, "dur":483, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856986447, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.ref.dll_D75DF4EA1AFE54F4.mvfrm" }} -,{ "pid":12345, "tid":8, "ts":1682192856986454, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856986551, "dur":168, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm" }} -,{ "pid":12345, "tid":8, "ts":1682192856986719, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856986809, "dur":234, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":8, "ts":1682192856987044, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856987143, "dur":256, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856987400, "dur":338, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856987739, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Core.pdb" }} -,{ "pid":12345, "tid":8, "ts":1682192856987751, "dur":289, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856988041, "dur":66, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856988107, "dur":297, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856988405, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Core.Editor.dll" }} -,{ "pid":12345, "tid":8, "ts":1682192856988409, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856988485, "dur":521, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856989006, "dur":143, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856989150, "dur":825, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856989976, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Cinemachine.pdb" }} -,{ "pid":12345, "tid":8, "ts":1682192856989980, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856990044, "dur":38, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856990083, "dur":528, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":8, "ts":1682192856990611, "dur":258, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856990874, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.SettingsProvider.Editor.ref.dll_A1A44354E0B583A8.mvfrm" }} -,{ "pid":12345, "tid":8, "ts":1682192856990880, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856990961, "dur":109, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856991071, "dur":774, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856991845, "dur":88, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856991934, "dur":308, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor-firstpass.dll.mvfrm" }} -,{ "pid":12345, "tid":8, "ts":1682192856992242, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856992329, "dur":524, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856992854, "dur":1302, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856994157, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp-Editor-firstpass.dll" }} -,{ "pid":12345, "tid":8, "ts":1682192856994159, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856994202, "dur":9952843, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856855268, "dur":9511, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856864783, "dur":1304, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856866088, "dur":1194, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856867283, "dur":1164, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856868448, "dur":2247, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856870695, "dur":2384, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856873080, "dur":1764, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856874845, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Runtime.AdditionalFile.txt" }} -,{ "pid":12345, "tid":9, "ts":1682192856874846, "dur":115, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856874963, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.rsp" }} -,{ "pid":12345, "tid":9, "ts":1682192856875038, "dur":152, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856875192, "dur":209, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_1B76D805F529511B.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1682192856875402, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856875503, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_B6216DAA03B99B64.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1682192856875622, "dur":115, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856875741, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_8C3FC5EA38D8B6F7.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1682192856875804, "dur":213, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856876020, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_AE33CCD8F4DAD942.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1682192856876102, "dur":157, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856876261, "dur":143, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_C81B7A5E094705A4.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1682192856876404, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856876508, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_F0B71AE440A09198.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1682192856876564, "dur":149, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856876715, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_7D584FC05682CCF6.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1682192856876769, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856876854, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_5A15E65AC304F930.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1682192856876906, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856876992, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_009C5F78367CD1A2.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1682192856877050, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856877133, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_C6B5E0BE5750AA37.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1682192856877139, "dur":145, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856877287, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.CodeGen.rsp" }} -,{ "pid":12345, "tid":9, "ts":1682192856877343, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856877438, "dur":27322, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.CodeGen.dll (+2 others)" }} -,{ "pid":12345, "tid":9, "ts":1682192856904761, "dur":226, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856904999, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Jobs.CodeGen.dll" }} -,{ "pid":12345, "tid":9, "ts":1682192856905003, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856905052, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Jobs.CodeGen.pdb" }} -,{ "pid":12345, "tid":9, "ts":1682192856905055, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856905114, "dur":4625, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856909740, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.TestRunner.pdb" }} -,{ "pid":12345, "tid":9, "ts":1682192856909745, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856909855, "dur":5689, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856915544, "dur":2156, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856917701, "dur":2735, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856920437, "dur":11158, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856931595, "dur":2012, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856933608, "dur":3516, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856937124, "dur":6445, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856943569, "dur":1933, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856945503, "dur":38797, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.InputSystem.dll (+2 others)" }} -,{ "pid":12345, "tid":9, "ts":1682192856984301, "dur":171, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856984502, "dur":823, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Runtime.dll (+2 others)" }} -,{ "pid":12345, "tid":9, "ts":1682192856985325, "dur":200, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856985544, "dur":611, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipeline.Universal.ShaderLibrary.dll (+2 others)" }} -,{ "pid":12345, "tid":9, "ts":1682192856986155, "dur":274, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856986452, "dur":1107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Runtime.dll (+2 others)" }} -,{ "pid":12345, "tid":9, "ts":1682192856987559, "dur":203, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856987773, "dur":738, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Cinemachine.dll (+2 others)" }} -,{ "pid":12345, "tid":9, "ts":1682192856988511, "dur":227, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856988741, "dur":771, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Cinemachine.dll (+pdb)" }} -,{ "pid":12345, "tid":9, "ts":1682192856989512, "dur":455, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856989971, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Cinemachine.dll" }} -,{ "pid":12345, "tid":9, "ts":1682192856989975, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856990018, "dur":65, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856990084, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.Editor.ref.dll_6AF951BE66A4493E.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1682192856990089, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856990194, "dur":172, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1682192856990366, "dur":362, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856990730, "dur":331, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856991061, "dur":108, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856991169, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Flow.Editor.pdb" }} -,{ "pid":12345, "tid":9, "ts":1682192856991176, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856991267, "dur":573, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856991840, "dur":213, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856992053, "dur":234, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856992287, "dur":565, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856992853, "dur":732, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856993585, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll" }} -,{ "pid":12345, "tid":9, "ts":1682192856993588, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856993633, "dur":9953435, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856855295, "dur":9494, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856864791, "dur":1277, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856866068, "dur":1138, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856867207, "dur":1054, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856868262, "dur":1313, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856869575, "dur":3966, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856873542, "dur":1722, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856875265, "dur":16, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_4856656B4452EB6C.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856875282, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856875364, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_1602D9835671722A.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856875426, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856875521, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_944BC2569F90E100.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856875574, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856875660, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_5231952EBA63784C.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856875723, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856875819, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_A35144EC0F52BD36.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856875886, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856875967, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_D65D47993EC216D0.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856876023, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856876108, "dur":114, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_740AAD124CBD6123.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856876222, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856876313, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_A7C57F018741676B.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856876363, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856876454, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_0E9E172FE6D46355.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856876518, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856876603, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsNativeModule.dll_AFB66C57C90545AC.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856876662, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856876744, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_A380F1B8FE419C0F.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856876807, "dur":122, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856876932, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_01A0F82DF7B79505.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856876992, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856877084, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_6F3B06D3B7A3FF42.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856877136, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856877240, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.CodeGen.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856877314, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856877410, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Runtime.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856877416, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856877501, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_AAA96FFA2E5E32E2.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856877621, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856877723, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856877724, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856877811, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipeline.Universal.ShaderLibrary.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856877817, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856877904, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Editor.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856877981, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856878065, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Runtime.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856878148, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856878236, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856878291, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856878376, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856878377, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856878458, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856878508, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856878590, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856878591, "dur":183, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856878777, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856878831, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856878915, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Runtime.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856878916, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856878994, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/MeshBakerCore.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856879000, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856879078, "dur":48, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/XNode.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856879126, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856879209, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856879213, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856879294, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856879295, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856879377, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856879378, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856879460, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856879461, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856879542, "dur":48, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Shaders.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856879590, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856879666, "dur":45, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Analytics.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856879712, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856879790, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856879791, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856879871, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Telemetry.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856879929, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856880006, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Monetization.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856880007, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856880088, "dur":49, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/JBooth.ShaderPackager.Editor.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856880137, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856880220, "dur":46, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Editor.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856880266, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856880350, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/com.unity.cinemachine.editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856880351, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856880461, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856880463, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856880558, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.Internal.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856880609, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856880695, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-firstpass.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856880696, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856880771, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856880772, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856880849, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsEditmode.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856880849, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856880927, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.DocCodeSamples.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856880928, "dur":295, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856881224, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/5689786774259947410.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856881290, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856881380, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/9675442845102135732.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856881442, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856881539, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/11609355203541698906.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856881601, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856881677, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/3648465134513896125.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856881738, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856881820, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/12812556936427222528.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856881881, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856881955, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/4345639507432806382.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856882021, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856882100, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/3938377011463375229.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856882172, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856882254, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/8654950501350094070.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856882320, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856882389, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2282191090610319379.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856882465, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856882540, "dur":430, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/8306353738322043485.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856882971, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856883130, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2296344399083059428.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856883196, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856883305, "dur":16, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Runtime.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856883321, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856883419, "dur":15, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856883435, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856883526, "dur":15, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Runtime.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856883541, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856883630, "dur":24, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856883655, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856883748, "dur":15, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Internal.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856883763, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856883846, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856883860, "dur":117, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856883979, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856883992, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856884074, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsEditor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856884088, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856884166, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856884178, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856884263, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856884274, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856884367, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856884379, "dur":192, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856884572, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/MeshBakerCore.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856884584, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856884670, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856884681, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856884767, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856884778, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856884870, "dur":145, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856885015, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856885121, "dur":1772, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856886894, "dur":1444, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856888339, "dur":5969, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856894309, "dur":4029, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856898338, "dur":4181, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856902519, "dur":3288, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856905807, "dur":8744, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856914552, "dur":1859, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856916411, "dur":2022, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856918434, "dur":3104, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856921539, "dur":1801, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856923340, "dur":2034, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856925375, "dur":2183, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856927559, "dur":2017, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856929577, "dur":5764, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856935342, "dur":3543, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856938886, "dur":10297, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856949184, "dur":6012, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll (+2 others)" }} -,{ "pid":12345, "tid":10, "ts":1682192856955196, "dur":187, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856955387, "dur":749, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":10, "ts":1682192856956136, "dur":270, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856956410, "dur":516, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamplesEditor.dll (+2 others)" }} -,{ "pid":12345, "tid":10, "ts":1682192856956926, "dur":210, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856957137, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.ref.dll_131AC9C5EC6E6517.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856957144, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856957257, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Burst.ref.dll_F30DFA20C0DD1968.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856957262, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856957342, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Postprocessing.Runtime.ref.dll_3152B6A9836FBF3B.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856957347, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856957429, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Postprocessing.Editor.ref.dll_1C9CD17610FFA3F0.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856957435, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856957515, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Jobs.ref.dll_6319796B1FEE3FB4.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856957521, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856957600, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TerrainTools.ref.dll_E38CD1BEC69E4F44.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856957605, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856957678, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.PlasticSCM.Editor.ref.dll_257AEB342BE77856.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856957683, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856957757, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipelines.Universal.Shaders.ref.dll_9468B054363B0720.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856957763, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856957846, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.EditorCoroutines.Editor.ref.dll_34ED10A34098B2DB.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856957851, "dur":148, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856958001, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.Editor.ref.dll_159E061D77A10B86.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856958007, "dur":137, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856958146, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Analytics.ref.dll_EDA1682A714EA6BF.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856958152, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856958233, "dur":484, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsEditmode.dll (+2 others)" }} -,{ "pid":12345, "tid":10, "ts":1682192856958717, "dur":478, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856959197, "dur":156, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856959353, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856959436, "dur":139, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Internal.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856959575, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856959659, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Burst.CodeGen.pdb" }} -,{ "pid":12345, "tid":10, "ts":1682192856959663, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856959715, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Rider.Editor.pdb" }} -,{ "pid":12345, "tid":10, "ts":1682192856959718, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856959763, "dur":180, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856959943, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856960057, "dur":1059, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/NavMeshComponents.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856961116, "dur":748, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856961866, "dur":169, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Device.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856962035, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856962145, "dur":147, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856962292, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856962380, "dur":149, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/SimpleJSON.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856962530, "dur":155, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856962687, "dur":317, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856963004, "dur":140, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856963145, "dur":150, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856963295, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856963379, "dur":206, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856963585, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856963673, "dur":137, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsEditor.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856963810, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856963889, "dur":3106, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856966996, "dur":524, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":10, "ts":1682192856967521, "dur":260, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856967785, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Collections.Editor.ref.dll_E4491E98C71DB4B4.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856967791, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856967871, "dur":646, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.BurstCompatibilityGen.dll (+2 others)" }} -,{ "pid":12345, "tid":10, "ts":1682192856968517, "dur":236, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856968755, "dur":964, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Collections.BurstCompatibilityGen.dll (+pdb)" }} -,{ "pid":12345, "tid":10, "ts":1682192856969720, "dur":206, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856969929, "dur":972, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/NavMeshComponentsEditor.dll (+pdb)" }} -,{ "pid":12345, "tid":10, "ts":1682192856970901, "dur":161, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856971066, "dur":1045, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.RenderPipelines.Universal.Shaders.dll (+pdb)" }} -,{ "pid":12345, "tid":10, "ts":1682192856972111, "dur":151, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856972264, "dur":1155, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.RenderPipelines.Core.ShaderLibrary.dll (+pdb)" }} -,{ "pid":12345, "tid":10, "ts":1682192856973420, "dur":152, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856973575, "dur":997, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/AwesomeTechnologies.TouchReactSystemPro.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":10, "ts":1682192856974572, "dur":165, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856974740, "dur":1516, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/UnityEditor.UI.dll (+pdb)" }} -,{ "pid":12345, "tid":10, "ts":1682192856976256, "dur":156, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856976415, "dur":962, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/JBooth.ShaderPackager.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":10, "ts":1682192856977378, "dur":184, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856977564, "dur":946, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Searcher.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":10, "ts":1682192856978510, "dur":156, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856978668, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Searcher.Editor.dll" }} -,{ "pid":12345, "tid":10, "ts":1682192856978671, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856978723, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Device.pdb" }} -,{ "pid":12345, "tid":10, "ts":1682192856978726, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856978770, "dur":140, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856978910, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856979040, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Scheduler.pdb" }} -,{ "pid":12345, "tid":10, "ts":1682192856979045, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856979102, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.pdb" }} -,{ "pid":12345, "tid":10, "ts":1682192856979105, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856979157, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Configuration.pdb" }} -,{ "pid":12345, "tid":10, "ts":1682192856979160, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856979205, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/MeshBakerCore.pdb" }} -,{ "pid":12345, "tid":10, "ts":1682192856979207, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856979252, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Internal.dll" }} -,{ "pid":12345, "tid":10, "ts":1682192856979255, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856979301, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Threading.pdb" }} -,{ "pid":12345, "tid":10, "ts":1682192856979303, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856979350, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/AwesomeTechnologies.TouchReactSystemPro.Editor.dll" }} -,{ "pid":12345, "tid":10, "ts":1682192856979353, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856979406, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Networking.dll" }} -,{ "pid":12345, "tid":10, "ts":1682192856979409, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856979452, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Core.ShaderLibrary.pdb" }} -,{ "pid":12345, "tid":10, "ts":1682192856979455, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856979496, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.Advertisements.DevX.Editor.dll" }} -,{ "pid":12345, "tid":10, "ts":1682192856979498, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856979539, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.Advertisements.pdb" }} -,{ "pid":12345, "tid":10, "ts":1682192856979541, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856979585, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/XNode.dll" }} -,{ "pid":12345, "tid":10, "ts":1682192856979587, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856979630, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsTestsEditmode.dll" }} -,{ "pid":12345, "tid":10, "ts":1682192856979633, "dur":260, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856979894, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.CodeGen.pdb" }} -,{ "pid":12345, "tid":10, "ts":1682192856979897, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856979941, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.CodeGen.dll" }} -,{ "pid":12345, "tid":10, "ts":1682192856979943, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856979988, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Timeline.Editor.pdb" }} -,{ "pid":12345, "tid":10, "ts":1682192856979990, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856980039, "dur":3627, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856983667, "dur":834, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856984502, "dur":1702, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll (+2 others)" }} -,{ "pid":12345, "tid":10, "ts":1682192856986204, "dur":223, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856986447, "dur":1362, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll (+2 others)" }} -,{ "pid":12345, "tid":10, "ts":1682192856987810, "dur":271, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856988094, "dur":575, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll (+2 others)" }} -,{ "pid":12345, "tid":10, "ts":1682192856988669, "dur":280, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856988956, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.ref.dll_D91762B7076BE462.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856988961, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856989060, "dur":53, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856989116, "dur":172, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856989288, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856989378, "dur":713, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856990091, "dur":150, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856990241, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.ShaderGraph.Editor.pdb" }} -,{ "pid":12345, "tid":10, "ts":1682192856990245, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856990315, "dur":19, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856990334, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipelines.Universal.Editor.ref.dll_0FF7AC68384616B1.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856990340, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856990424, "dur":169, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/com.unity.cinemachine.editor.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856990594, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856990672, "dur":404, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856991076, "dur":780, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856991856, "dur":78, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856991936, "dur":297, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856992233, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856992323, "dur":527, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856992851, "dur":501, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor-firstpass.dll (+2 others)" }} -,{ "pid":12345, "tid":10, "ts":1682192856993353, "dur":170, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856993524, "dur":526, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp-Editor-firstpass.dll (+pdb)" }} -,{ "pid":12345, "tid":10, "ts":1682192856994050, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856994153, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp-Editor-firstpass.pdb" }} -,{ "pid":12345, "tid":10, "ts":1682192856994154, "dur":33, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856994189, "dur":9952870, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856855347, "dur":9451, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856864800, "dur":1532, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856866332, "dur":1106, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856867439, "dur":1074, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856868514, "dur":2597, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856871112, "dur":2672, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856873785, "dur":2495, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856876281, "dur":16, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_4E1C439CF59F78B8.mvfrm" }} -,{ "pid":12345, "tid":11, "ts":1682192856876298, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856876398, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_51BAB36328E3B08F.mvfrm" }} -,{ "pid":12345, "tid":11, "ts":1682192856876483, "dur":6285, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856882826, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/6262281476893245489.rsp" }} -,{ "pid":12345, "tid":11, "ts":1682192856882894, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856882992, "dur":455, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/8029443090779585774.rsp" }} -,{ "pid":12345, "tid":11, "ts":1682192856883447, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856883537, "dur":19, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":11, "ts":1682192856883556, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856883668, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Cinemachine.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":11, "ts":1682192856883683, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856883775, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":11, "ts":1682192856883787, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856883880, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":11, "ts":1682192856883894, "dur":119, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856884014, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsPlaymode.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":11, "ts":1682192856884027, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856884112, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Scheduler.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":11, "ts":1682192856884126, "dur":708, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856884835, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.CodeGen.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":11, "ts":1682192856884846, "dur":352, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856885199, "dur":3132, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856888331, "dur":4377, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856892709, "dur":4691, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856897401, "dur":1962, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856899364, "dur":2608, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856901973, "dur":2120, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856904093, "dur":3417, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856907510, "dur":2359, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856909869, "dur":3293, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856913163, "dur":7201, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856920365, "dur":7726, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856928091, "dur":2636, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856930728, "dur":5612, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856936341, "dur":2703, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856939044, "dur":24373, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856963419, "dur":147, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.2D.Sprite.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":11, "ts":1682192856963566, "dur":236, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856963803, "dur":3026, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856966830, "dur":788, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Runtime.dll (+2 others)" }} -,{ "pid":12345, "tid":11, "ts":1682192856967619, "dur":247, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856967869, "dur":640, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":11, "ts":1682192856968510, "dur":213, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856968725, "dur":945, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/AwesomeTechnologies.VegetationStudioPro.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":11, "ts":1682192856969670, "dur":171, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856969843, "dur":940, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.dll (+pdb)" }} -,{ "pid":12345, "tid":11, "ts":1682192856970783, "dur":1711, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856972497, "dur":1038, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/MeshBakerEditor.dll (+pdb)" }} -,{ "pid":12345, "tid":11, "ts":1682192856973535, "dur":184, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856973721, "dur":1567, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Analytics.dll (+pdb)" }} -,{ "pid":12345, "tid":11, "ts":1682192856975288, "dur":1603, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856976894, "dur":1277, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/UnityEngine.Monetization.dll (+pdb)" }} -,{ "pid":12345, "tid":11, "ts":1682192856978172, "dur":912, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856979087, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.Monetization.pdb" }} -,{ "pid":12345, "tid":11, "ts":1682192856979091, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856979149, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsTestsPlaymode.pdb" }} -,{ "pid":12345, "tid":11, "ts":1682192856979153, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856979203, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEditor.UI.pdb" }} -,{ "pid":12345, "tid":11, "ts":1682192856979206, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856979258, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponents.dll" }} -,{ "pid":12345, "tid":11, "ts":1682192856979261, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856979310, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Jobs.pdb" }} -,{ "pid":12345, "tid":11, "ts":1682192856979312, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856979360, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsExamples.dll" }} -,{ "pid":12345, "tid":11, "ts":1682192856979363, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856979417, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.EditorCoroutines.Editor.pdb" }} -,{ "pid":12345, "tid":11, "ts":1682192856979421, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856979467, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TerrainTools.Editor.dll" }} -,{ "pid":12345, "tid":11, "ts":1682192856979469, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856979520, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Universal.Shaders.pdb" }} -,{ "pid":12345, "tid":11, "ts":1682192856979525, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856979571, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll" }} -,{ "pid":12345, "tid":11, "ts":1682192856979574, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856979622, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsTestsEditmode.pdb" }} -,{ "pid":12345, "tid":11, "ts":1682192856979625, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856979675, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/AwesomeTechnologies.VegetationStudioPro.Editor.pdb" }} -,{ "pid":12345, "tid":11, "ts":1682192856979679, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856979725, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/AwesomeTechnologies.VegetationStudioPro.Runtime.dll" }} -,{ "pid":12345, "tid":11, "ts":1682192856979729, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856979773, "dur":137, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":11, "ts":1682192856979911, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856980001, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856980012, "dur":13, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856980025, "dur":12, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856980037, "dur":1857, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856981895, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.CollabProxy.Editor.pdb" }} -,{ "pid":12345, "tid":11, "ts":1682192856981898, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856981952, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856981963, "dur":10, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856981973, "dur":15, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856981988, "dur":13, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856982001, "dur":18, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856982019, "dur":21, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856982040, "dur":13, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856982053, "dur":10, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856982063, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856982074, "dur":10, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856982084, "dur":1445, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856983529, "dur":14, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856983543, "dur":14, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856983557, "dur":15, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856983572, "dur":13, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856983586, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856983597, "dur":10, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856983607, "dur":13, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856983621, "dur":7, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856983629, "dur":874, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856984504, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.InputSystem.ref.dll_FD2EC87C14EBE081.mvfrm" }} -,{ "pid":12345, "tid":11, "ts":1682192856984518, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856984627, "dur":174, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm" }} -,{ "pid":12345, "tid":11, "ts":1682192856984802, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856984884, "dur":688, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856985574, "dur":206, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856985780, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.InputSystem.dll" }} -,{ "pid":12345, "tid":11, "ts":1682192856985784, "dur":322, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856986107, "dur":730, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856986837, "dur":291, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856987129, "dur":1037, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.RenderPipelines.Core.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":11, "ts":1682192856988167, "dur":232, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856988402, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Core.Editor.pdb" }} -,{ "pid":12345, "tid":11, "ts":1682192856988404, "dur":328, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856988733, "dur":302, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856989035, "dur":68, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856989104, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.ShaderGraph.Editor.ref.dll_0F50152946DB09D0.mvfrm" }} -,{ "pid":12345, "tid":11, "ts":1682192856989110, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856989211, "dur":171, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":11, "ts":1682192856989383, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856989461, "dur":623, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856990085, "dur":926, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.VisualScripting.Flow.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":11, "ts":1682192856991012, "dur":144, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856991160, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Flow.Editor.dll" }} -,{ "pid":12345, "tid":11, "ts":1682192856991163, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856991221, "dur":630, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856991851, "dur":203, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856992054, "dur":284, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856992338, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/PPv2URPConverters.dll" }} -,{ "pid":12345, "tid":11, "ts":1682192856992341, "dur":39, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856992381, "dur":478, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856992859, "dur":9675356, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192866668217, "dur":386, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb" }} -,{ "pid":12345, "tid":11, "ts":1682192866668610, "dur":0, "ph":"X", "name": "StoreTimestampsOfNonGeneratedInputFiles", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192866668651, "dur":1899, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.pdb" }} -,{ "pid":12345, "tid":11, "ts":1682192866670556, "dur":276470, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856855375, "dur":9430, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856864805, "dur":1130, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856865935, "dur":1147, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856867083, "dur":2609, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856869692, "dur":2672, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856872365, "dur":4704, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856877069, "dur":339, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_D44320C6A1B3C637.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856877409, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856877500, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Collections.LowLevel.ILSupport.dll_7CAE04E2593369CB.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856877581, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856877670, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_CF5227D341231F89.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856877729, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856877818, "dur":128, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856877946, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856878028, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Internal.AdditionalFile.txt" }} -,{ "pid":12345, "tid":12, "ts":1682192856878029, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856878111, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponents.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856878171, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856878268, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":12, "ts":1682192856878269, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856878346, "dur":138, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Editor.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856878485, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856878573, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":12, "ts":1682192856878574, "dur":150, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856878947, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.AdditionalFile.txt" }} -,{ "pid":12345, "tid":12, "ts":1682192856878948, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856879029, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/MeshBakerCore.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856879081, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856879154, "dur":514, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856879668, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856879752, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856879809, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856879888, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.Editor.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856879958, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856880058, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856880111, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856880208, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":12, "ts":1682192856880209, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856880296, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamplesEditor.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856880354, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856880451, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/JBooth.ShaderPackager.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":12, "ts":1682192856880452, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856880529, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/MeshBakerEditor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":12, "ts":1682192856880535, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856880611, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Registration.AdditionalFile.txt" }} -,{ "pid":12345, "tid":12, "ts":1682192856880612, "dur":516, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856881129, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/14494330292695847501.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856881209, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856881302, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/7602468127534590235.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856881359, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856881432, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/1748161491239881818.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856881489, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856881559, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/5916180605834378387.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856881618, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856881693, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/9835629327973270806.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856881748, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856881833, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/13686715218353603589.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856881889, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856881964, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/9321109326917711913.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856882031, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856882105, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/7759033573704817190.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856882176, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856882275, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/15312589170787849123.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856882342, "dur":656, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856882999, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/17227893639732096016.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856883062, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856883147, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/4014436084419441659.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856883206, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856883298, "dur":23, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856883322, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856883431, "dur":19, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Monetization.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856883450, "dur":251, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856883703, "dur":17, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856883720, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856883803, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856883814, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856883891, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856883905, "dur":220, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856884126, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Networking.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856884140, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856884228, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856884239, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856884317, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856884328, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856884415, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856884426, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856884520, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856884533, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856884629, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.Internal.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856884642, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856884740, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856884753, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856884842, "dur":174, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.CodeGen.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856885016, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856885113, "dur":2131, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856887244, "dur":5233, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856892478, "dur":2648, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856895126, "dur":1769, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856896896, "dur":3400, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856900297, "dur":3612, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856903909, "dur":2460, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856906370, "dur":3501, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856909872, "dur":2020, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856911893, "dur":1806, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856913699, "dur":7581, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856921281, "dur":1668, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856922949, "dur":2105, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856925054, "dur":2255, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856927310, "dur":2157, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856929467, "dur":5689, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856935157, "dur":2131, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856937288, "dur":5879, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856943167, "dur":3093, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856946261, "dur":7162, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Runtime.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1682192856953424, "dur":199, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856953628, "dur":528, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1682192856954157, "dur":217, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856954377, "dur":478, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Analytics.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1682192856954855, "dur":212, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856955070, "dur":455, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Shaders.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1682192856955525, "dur":250, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856955778, "dur":648, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/MeshBakerEditor.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1682192856956426, "dur":181, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856956608, "dur":705, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1682192856957313, "dur":239, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856957555, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Burst.Editor.ref.dll_E2F92DAB6C167CC9.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856957560, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856957666, "dur":9, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.ref.dll_84A4293DBDD182DB.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856957675, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856957756, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipelines.Core.ShaderLibrary.ref.dll_7F2C410A434F5518.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856957761, "dur":131, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856957894, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualStudio.Editor.ref.dll_3A975DBA53ABA4AD.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856957900, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856957992, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TerrainTools.Editor.ref.dll_58444870EA97D8AD.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856957998, "dur":220, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856958220, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Rider.Editor.ref.dll_9B5591808ABA37AF.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856958227, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856958313, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.ShaderGraph.Utilities.ref.dll_0524057423981A9D.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856958321, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856958394, "dur":199, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856958593, "dur":192, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856958787, "dur":160, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856958947, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856959033, "dur":230, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856959264, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856959352, "dur":199, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Analytics.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856959551, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856959637, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll" }} -,{ "pid":12345, "tid":12, "ts":1682192856959642, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856959694, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Rider.Editor.dll" }} -,{ "pid":12345, "tid":12, "ts":1682192856959697, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856959748, "dur":238, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.InputSystem.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856959986, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856960067, "dur":170, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856960237, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856960313, "dur":685, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Telemetry.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1682192856960998, "dur":225, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856961225, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Internal.ref.dll_A02B3542C15F550A.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856961231, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856961322, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Environments.ref.dll_7E0AC2CDE81D9C6D.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856961330, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856961402, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Configuration.ref.dll_9A0B0462DB47136F.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856961407, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856961481, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Device.ref.dll_EC89AF6B778C7413.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856961486, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856961555, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Environments.Internal.ref.dll_E1932F3567E8EA54.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856961560, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856961633, "dur":150, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856961784, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856961882, "dur":199, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856962082, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856962176, "dur":141, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Scheduler.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856962317, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856962402, "dur":187, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856962589, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856962675, "dur":171, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856962846, "dur":173, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856963020, "dur":133, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsPlaymode.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856963153, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856963230, "dur":143, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856963373, "dur":1703, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856965077, "dur":456, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.DevX.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1682192856965533, "dur":247, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856965781, "dur":8282, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856974064, "dur":1019, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Jobs.dll (+pdb)" }} -,{ "pid":12345, "tid":12, "ts":1682192856975083, "dur":149, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856975235, "dur":1015, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/AwesomeTechnologies.TouchReactSystemPro.Runtime.dll (+pdb)" }} -,{ "pid":12345, "tid":12, "ts":1682192856976250, "dur":348, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856976602, "dur":918, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Registration.dll (+pdb)" }} -,{ "pid":12345, "tid":12, "ts":1682192856977520, "dur":1057, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856978580, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Registration.pdb" }} -,{ "pid":12345, "tid":12, "ts":1682192856978583, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856978634, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Registration.dll" }} -,{ "pid":12345, "tid":12, "ts":1682192856978637, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856978681, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Searcher.Editor.pdb" }} -,{ "pid":12345, "tid":12, "ts":1682192856978684, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856978731, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Device.dll" }} -,{ "pid":12345, "tid":12, "ts":1682192856978736, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856978781, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Telemetry.dll" }} -,{ "pid":12345, "tid":12, "ts":1682192856978784, "dur":37, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856978822, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Burst.Editor.pdb" }} -,{ "pid":12345, "tid":12, "ts":1682192856978825, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856978867, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Burst.Editor.dll" }} -,{ "pid":12345, "tid":12, "ts":1682192856978869, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856978923, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.UI.dll" }} -,{ "pid":12345, "tid":12, "ts":1682192856978928, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856979048, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Environments.Internal.dll" }} -,{ "pid":12345, "tid":12, "ts":1682192856979050, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856979109, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Analytics.dll" }} -,{ "pid":12345, "tid":12, "ts":1682192856979111, "dur":1173, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856980285, "dur":1917, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856982202, "dur":1848, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856984050, "dur":476, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856984526, "dur":116, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856984642, "dur":903, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856985545, "dur":887, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1682192856986432, "dur":684, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856987126, "dur":1765, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1682192856988891, "dur":200, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856989103, "dur":1040, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1682192856990143, "dur":180, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856990333, "dur":476, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/PPv2URPConverters.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1682192856990809, "dur":202, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856991014, "dur":1157, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/PPv2URPConverters.dll (+pdb)" }} -,{ "pid":12345, "tid":12, "ts":1682192856992171, "dur":163, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856992337, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/PPv2URPConverters.pdb" }} -,{ "pid":12345, "tid":12, "ts":1682192856992340, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856992390, "dur":477, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856992867, "dur":9954144, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866964636, "dur":7067, "ph":"X", "name": "ProfilerWriteOutput" } +,{ "pid":12345, "tid":0, "ts":1682376183393791, "dur":1840, "ph":"X", "name": "DriverInitData", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376183395644, "dur":2698, "ph":"X", "name": "Tundra", "args": { "detail":"RemoveStaleOutputs" }} +,{ "pid":12345, "tid":0, "ts":1682376183398550, "dur":273, "ph":"X", "name": "Tundra", "args": { "detail":"PrepareNodes" }} +,{ "pid":12345, "tid":0, "ts":1682376183398823, "dur":434, "ph":"X", "name": "Tundra", "args": { "detail":"BuildQueueInit" }} +,{ "pid":12345, "tid":0, "ts":1682376183399284, "dur":8158, "ph":"X", "name": "EnqueueRequestedNodes", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376183407443, "dur":14, "ph":"X", "name": "SortWorkingStack", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962246, "dur":305, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962553, "dur":38, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962592, "dur":49, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962641, "dur":13, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962654, "dur":3, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962657, "dur":17, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962674, "dur":2, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962677, "dur":6, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962683, "dur":4, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962687, "dur":7, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962694, "dur":2, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962697, "dur":6, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962703, "dur":2, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962706, "dur":6, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962712, "dur":3, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962715, "dur":14, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962729, "dur":2, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962731, "dur":9, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962740, "dur":3, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962743, "dur":7, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962750, "dur":2, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962752, "dur":6, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962758, "dur":2, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962760, "dur":6, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962766, "dur":0, "ph":"X", "name": "SharedResourceDestroy", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962780, "dur":93, "ph":"X", "name": "BuildQueueDestroyTail", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962905, "dur":14232, "ph":"X", "name": "Tundra", "args": { "detail":"Write AllBuiltNodes" }} +,{ "pid":12345, "tid":1, "ts":1682376183399517, "dur":7977, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183407508, "dur":7824, "ph":"X", "name": "CheckDagSignatures", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183415340, "dur":9, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.AdditionalFile.txt" }} +,{ "pid":12345, "tid":1, "ts":1682376183415351, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183415414, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.rsp" }} +,{ "pid":12345, "tid":1, "ts":1682376183415477, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183415532, "dur":16338, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1682376183431870, "dur":140, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183432021, "dur":14164, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1682376183446186, "dur":149, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183446349, "dur":2255, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1682376183448605, "dur":128, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183448770, "dur":748, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1682376183449519, "dur":499, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183450027, "dur":1795, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1682376183451822, "dur":337, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183452167, "dur":881, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.CodeGen.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1682376183453048, "dur":157, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183453222, "dur":657, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1682376183453879, "dur":137, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183454021, "dur":670, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/MeshBakerEditor.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1682376183454691, "dur":147, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183454842, "dur":689, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamplesEditor.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1682376183455532, "dur":157, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183455695, "dur":584, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Networking.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1682376183456279, "dur":130, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183456413, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Timeline.Editor.ref.dll_0D3D3C0B73557612.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1682376183456423, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183456472, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.Monetization.ref.dll_94F72C9EDBE6DB25.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1682376183456478, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183456521, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.2D.Sprite.Editor.ref.dll_DDBAA27A82CE9E28.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1682376183456526, "dur":39, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183456566, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.EditorCoroutines.Editor.ref.dll_34ED10A34098B2DB.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1682376183456572, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183456615, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualStudio.Editor.ref.dll_3A975DBA53ABA4AD.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1682376183456620, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183456664, "dur":561, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsPlaymode.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1682376183457225, "dur":651, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183457879, "dur":1446, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/NavMeshComponentsTestsPlaymode.dll (+pdb)" }} +,{ "pid":12345, "tid":1, "ts":1682376183459325, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183459431, "dur":1190, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/AwesomeTechnologies.TouchReactSystemPro.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":1, "ts":1682376183460622, "dur":455, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183461081, "dur":1731, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.ShaderGraph.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":1, "ts":1682376183462812, "dur":155, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183462970, "dur":1049, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.VisualScripting.Core.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":1, "ts":1682376183464019, "dur":178, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183464204, "dur":982, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.TerrainTools.dll (+pdb)" }} +,{ "pid":12345, "tid":1, "ts":1682376183465186, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183465278, "dur":883, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/UnityEngine.UI.dll (+pdb)" }} +,{ "pid":12345, "tid":1, "ts":1682376183466161, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183466249, "dur":955, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.RenderPipelines.Core.Runtime.dll (+pdb)" }} +,{ "pid":12345, "tid":1, "ts":1682376183467204, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183467309, "dur":1347, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.2D.Sprite.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":1, "ts":1682376183468657, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183468763, "dur":1002, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Cinemachine.dll (+pdb)" }} +,{ "pid":12345, "tid":1, "ts":1682376183469765, "dur":112, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183469880, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Cinemachine.dll" }} +,{ "pid":12345, "tid":1, "ts":1682376183469882, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183469924, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsExamplesEditor.pdb" }} +,{ "pid":12345, "tid":1, "ts":1682376183469928, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470006, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Jobs.pdb" }} +,{ "pid":12345, "tid":1, "ts":1682376183470010, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470058, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Timeline.Editor.pdb" }} +,{ "pid":12345, "tid":1, "ts":1682376183470064, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470112, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Flow.Editor.pdb" }} +,{ "pid":12345, "tid":1, "ts":1682376183470115, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470170, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.2D.Sprite.Editor.pdb" }} +,{ "pid":12345, "tid":1, "ts":1682376183470174, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470222, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.Editor.pdb" }} +,{ "pid":12345, "tid":1, "ts":1682376183470226, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470277, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.Advertisements.Editor.pdb" }} +,{ "pid":12345, "tid":1, "ts":1682376183470282, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470331, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.EditorCoroutines.Editor.pdb" }} +,{ "pid":12345, "tid":1, "ts":1682376183470334, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470383, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Environments.dll" }} +,{ "pid":12345, "tid":1, "ts":1682376183470387, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470441, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Core.Runtime.pdb" }} +,{ "pid":12345, "tid":1, "ts":1682376183470445, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470521, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Core.Editor.dll" }} +,{ "pid":12345, "tid":1, "ts":1682376183470525, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470575, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Threading.pdb" }} +,{ "pid":12345, "tid":1, "ts":1682376183470579, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470630, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Universal.Editor.pdb" }} +,{ "pid":12345, "tid":1, "ts":1682376183470635, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470690, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.State.Editor.dll" }} +,{ "pid":12345, "tid":1, "ts":1682376183470695, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470743, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsTestsEditmode.dll" }} +,{ "pid":12345, "tid":1, "ts":1682376183470747, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470797, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/MeshBakerCore.dll" }} +,{ "pid":12345, "tid":1, "ts":1682376183470800, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470842, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/XNode.dll" }} +,{ "pid":12345, "tid":1, "ts":1682376183470846, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470893, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Environments.Internal.pdb" }} +,{ "pid":12345, "tid":1, "ts":1682376183470897, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470946, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Internal.dll" }} +,{ "pid":12345, "tid":1, "ts":1682376183470949, "dur":290, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183471240, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEditor.UI.dll" }} +,{ "pid":12345, "tid":1, "ts":1682376183471243, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183471295, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsTestsPlaymode.dll" }} +,{ "pid":12345, "tid":1, "ts":1682376183471299, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183471359, "dur":278, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/PPv2URPConverters.dll.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1682376183471637, "dur":39, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183471677, "dur":118, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1682376183471795, "dur":34, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183471829, "dur":116, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Runtime.dll.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1682376183471945, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183471992, "dur":158, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.DocCodeSamples.dll.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1682376183472150, "dur":37, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183472188, "dur":155, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Threading.dll.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1682376183472344, "dur":288, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183472633, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll" }} +,{ "pid":12345, "tid":1, "ts":1682376183472636, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183472685, "dur":160, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/MeshBakerCore.dll.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1682376183472845, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183472899, "dur":176, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/XNode.dll.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1682376183473075, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183473125, "dur":130, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Shaders.dll.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1682376183473256, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183473300, "dur":149, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1682376183473449, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183473531, "dur":2488711, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183399608, "dur":7922, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183407532, "dur":1373, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183408906, "dur":1159, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183410065, "dur":1325, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183411390, "dur":1206, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183412596, "dur":1130, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183413726, "dur":1057, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183414784, "dur":1035, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183415819, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183415877, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183415922, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.AdditionalFile.txt" }} +,{ "pid":12345, "tid":2, "ts":1682376183415927, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183415973, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.PackageManagerUIModule.dll_653CB7C2578CD58A.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183416066, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183416126, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_4FB697B2845ABFE3.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183416187, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183416235, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_1995F9C75FCB21B4.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183416292, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183416337, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_D65D47993EC216D0.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183416398, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183416456, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_377437F4532567A1.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183416509, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183416556, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_C45AD6F499D71C2C.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183416616, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183416672, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_2D8248E512D4EE43.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183416732, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183416788, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_5A15E65AC304F930.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183416842, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183416890, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_7C430270322B6A3B.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183416897, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183416945, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_718617AE74E2D2C4.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183417025, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183417095, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Burst.Unsafe.dll_101A915279CBC7DC.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183417149, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183417216, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipeline.Universal.ShaderLibrary.AdditionalFile.txt" }} +,{ "pid":12345, "tid":2, "ts":1682376183417221, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183417273, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Searcher.Editor.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183417332, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183417383, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183417477, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183417525, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Runtime.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183417585, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183417640, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183417728, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183417780, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamples.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183417838, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183417880, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183417934, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183417994, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Analytics.AdditionalFile.txt" }} +,{ "pid":12345, "tid":2, "ts":1682376183417999, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183418057, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183418116, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183418166, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/JBooth.ShaderPackager.Editor.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183418218, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183418265, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/com.unity.cinemachine.editor.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183418331, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183418375, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.Internal.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183418427, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183418474, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Editor.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183418533, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183418583, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsPlaymode.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183418636, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183418690, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2391771579636945191.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183418758, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183418821, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/1748161491239881818.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183418887, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183418944, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/6591615775254759062.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183419010, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183419072, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/13686715218353603589.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183419133, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183419191, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/7759033573704817190.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183419256, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183419302, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/12295599868861940527.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183419361, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183419412, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/8306353738322043485.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183419477, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183419531, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/3818794330681902346.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183419597, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183419640, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/10571807241835812913.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183419704, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183419751, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2157608619508796868.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183419808, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183419866, "dur":21, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183419887, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183419950, "dur":20, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183419970, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183420019, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183420030, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183420078, "dur":16, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183420094, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183420144, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Runtime.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183420157, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183420202, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183420213, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183420261, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.ShaderLibrary.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183420271, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183420335, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/SimpleJSON.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183420346, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183420392, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/PPv2URPConverters.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183420404, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183420458, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.DocCodeSamples.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183420471, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183420522, "dur":1178, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183421701, "dur":1489, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183423190, "dur":1090, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183424280, "dur":1034, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183425315, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Jobs.CodeGen.pdb" }} +,{ "pid":12345, "tid":2, "ts":1682376183425318, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183425379, "dur":1081, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183426461, "dur":1089, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183427550, "dur":1229, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183428780, "dur":1052, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183429832, "dur":1000, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183430833, "dur":1095, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183431928, "dur":2045, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183433974, "dur":1094, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183435069, "dur":1040, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183436109, "dur":1154, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183437263, "dur":1084, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183438347, "dur":973, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183439320, "dur":1063, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183440384, "dur":1000, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183441385, "dur":1125, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183442510, "dur":1043, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183443553, "dur":973, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183444527, "dur":1266, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183445794, "dur":958, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183446753, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEditor.TestRunner.dll" }} +,{ "pid":12345, "tid":2, "ts":1682376183446757, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183446825, "dur":1040, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183447865, "dur":10, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183447875, "dur":13, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183447888, "dur":16, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183447904, "dur":13, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183447917, "dur":22, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183447940, "dur":14, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183447954, "dur":10, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183447964, "dur":12, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183447976, "dur":21, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183447998, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183448009, "dur":12, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183448021, "dur":25, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183448046, "dur":18, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183448064, "dur":15, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183448079, "dur":24, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183448104, "dur":55, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183448159, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183448170, "dur":603, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183448774, "dur":748, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Runtime.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1682376183449522, "dur":224, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183449750, "dur":658, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1682376183450408, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183450529, "dur":1172, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1682376183451701, "dur":122, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183451826, "dur":874, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1682376183452700, "dur":198, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183452902, "dur":638, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1682376183453540, "dur":133, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183453676, "dur":649, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Monetization.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1682376183454326, "dur":827, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183455156, "dur":1589, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1682376183456745, "dur":165, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183456913, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Telemetry.ref.dll_FA20132DD923A4D2.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183456918, "dur":34, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183456953, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Configuration.ref.dll_9A0B0462DB47136F.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183456959, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183457001, "dur":999, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/AwesomeTechnologies.VegetationStudioPro.Runtime.dll (+pdb)" }} +,{ "pid":12345, "tid":2, "ts":1682376183458000, "dur":221, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183458224, "dur":1188, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Configuration.dll (+pdb)" }} +,{ "pid":12345, "tid":2, "ts":1682376183459412, "dur":121, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183459536, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.Editor.ref.dll_6AF951BE66A4493E.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183459542, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183459613, "dur":1042, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Registration.dll (+pdb)" }} +,{ "pid":12345, "tid":2, "ts":1682376183460656, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183460750, "dur":3564, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/NavMeshComponentsTestsEditmode.dll (+pdb)" }} +,{ "pid":12345, "tid":2, "ts":1682376183464315, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183464402, "dur":933, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Postprocessing.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":2, "ts":1682376183465335, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183465436, "dur":1033, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Collections.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":2, "ts":1682376183466469, "dur":180, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183466652, "dur":978, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/NavMeshComponentsEditor.dll (+pdb)" }} +,{ "pid":12345, "tid":2, "ts":1682376183467630, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183467727, "dur":997, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Timeline.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":2, "ts":1682376183468725, "dur":493, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183469221, "dur":967, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.RenderPipelines.Core.ShaderLibrary.dll (+pdb)" }} +,{ "pid":12345, "tid":2, "ts":1682376183470188, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183470285, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Core.ShaderLibrary.pdb" }} +,{ "pid":12345, "tid":2, "ts":1682376183470288, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183470338, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsEditor.dll" }} +,{ "pid":12345, "tid":2, "ts":1682376183470341, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183470386, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Editor.pdb" }} +,{ "pid":12345, "tid":2, "ts":1682376183470389, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183470442, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponents.pdb" }} +,{ "pid":12345, "tid":2, "ts":1682376183470445, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183470493, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.ShaderGraph.Utilities.dll" }} +,{ "pid":12345, "tid":2, "ts":1682376183470496, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183470542, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.pdb" }} +,{ "pid":12345, "tid":2, "ts":1682376183470545, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183470591, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Shared.Editor.dll" }} +,{ "pid":12345, "tid":2, "ts":1682376183470594, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183470642, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Postprocessing.Runtime.pdb" }} +,{ "pid":12345, "tid":2, "ts":1682376183470645, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183470696, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.State.Editor.pdb" }} +,{ "pid":12345, "tid":2, "ts":1682376183470699, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183470753, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Core.Editor.dll" }} +,{ "pid":12345, "tid":2, "ts":1682376183470756, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183470814, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Configuration.Editor.pdb" }} +,{ "pid":12345, "tid":2, "ts":1682376183470818, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183470871, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.ShaderGraph.Editor.dll" }} +,{ "pid":12345, "tid":2, "ts":1682376183470874, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183470921, "dur":271, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor-firstpass.dll.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183471192, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183471241, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEditor.UI.pdb" }} +,{ "pid":12345, "tid":2, "ts":1682376183471243, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183471289, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Networking.pdb" }} +,{ "pid":12345, "tid":2, "ts":1682376183471292, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183471338, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.State.pdb" }} +,{ "pid":12345, "tid":2, "ts":1682376183471341, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183471384, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.DocCodeSamples.dll" }} +,{ "pid":12345, "tid":2, "ts":1682376183471387, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183471433, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.BurstCompatibilityGen.pdb" }} +,{ "pid":12345, "tid":2, "ts":1682376183471438, "dur":165, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183471604, "dur":220, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183471824, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183471879, "dur":160, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Runtime.dll.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183472039, "dur":39, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183472079, "dur":154, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.dll.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183472234, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183472286, "dur":155, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Runtime.dll.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183472442, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183472535, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.CodeGen.pdb" }} +,{ "pid":12345, "tid":2, "ts":1682376183472539, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183472593, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Rider.Editor.pdb" }} +,{ "pid":12345, "tid":2, "ts":1682376183472595, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183472639, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualStudio.Editor.pdb" }} +,{ "pid":12345, "tid":2, "ts":1682376183472642, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183472689, "dur":280, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.InputSystem.dll.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183472970, "dur":244, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183473216, "dur":160, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183473376, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183473423, "dur":143, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Searcher.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183473566, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183473617, "dur":2488642, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183399593, "dur":7929, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183407524, "dur":1419, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183408943, "dur":1135, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183410078, "dur":1364, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183411443, "dur":1143, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183412586, "dur":1113, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183413699, "dur":1078, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183414777, "dur":1005, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183415783, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.AdditionalFile.txt" }} +,{ "pid":12345, "tid":3, "ts":1682376183415785, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183415840, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.AdditionalFile.txt" }} +,{ "pid":12345, "tid":3, "ts":1682376183415846, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183415901, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Runtime.AdditionalFile.txt" }} +,{ "pid":12345, "tid":3, "ts":1682376183415901, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183415947, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183416008, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183416057, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_1602D9835671722A.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1682376183416134, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183416186, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_B2AD9CCC85AE42D0.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1682376183416246, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183416295, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_BE990C7165D1D1F1.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1682376183416347, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183416398, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_C3E02E218094219F.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1682376183416457, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183416505, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_6B92C2897005B056.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1682376183416564, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183416614, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_16B146CB58B58B75.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1682376183416682, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183416748, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_FAC1618CDBA852AC.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1682376183416807, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183416859, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_3EC754A9EBA88566.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1682376183416917, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183416974, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.CodeGen.AdditionalFile.txt" }} +,{ "pid":12345, "tid":3, "ts":1682376183416974, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183417023, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Runtime.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183417083, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183417138, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_F93C4918FD9522C3.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1682376183417213, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183417272, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Searcher.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":3, "ts":1682376183417278, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183417321, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Internal.AdditionalFile.txt" }} +,{ "pid":12345, "tid":3, "ts":1682376183417322, "dur":38, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183417361, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Editor.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183417435, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183417496, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":3, "ts":1682376183417497, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183417550, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Editor.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183417649, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183417700, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Runtime.AdditionalFile.txt" }} +,{ "pid":12345, "tid":3, "ts":1682376183417700, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183417747, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/XNode.AdditionalFile.txt" }} +,{ "pid":12345, "tid":3, "ts":1682376183417752, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183417801, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.AdditionalFile.txt" }} +,{ "pid":12345, "tid":3, "ts":1682376183417805, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183417855, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsEditor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":3, "ts":1682376183417855, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183417900, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183417954, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183418006, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":3, "ts":1682376183418006, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183418058, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":3, "ts":1682376183418059, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183418108, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.Editor.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183418160, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183418206, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":3, "ts":1682376183418210, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183418256, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamplesEditor.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183418310, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183418358, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/PPv2URPConverters.AdditionalFile.txt" }} +,{ "pid":12345, "tid":3, "ts":1682376183418359, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183418410, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Networking.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183418463, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183418521, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183418597, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183418657, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.DevX.Editor.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183418709, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183418760, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/16880971569482824950.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183418824, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183418877, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/5803490648119114145.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183418943, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183418989, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/3648465134513896125.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183419053, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183419104, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/10678863128556690338.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183419181, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183419240, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/5678380843536809211.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183419310, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183419356, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/6638697812462351101.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183419422, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183419471, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2074369592318871490.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183419529, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183419574, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/16794585710609549488.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183419642, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183419694, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/12062543880932173298.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183419752, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183419797, "dur":20, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-firstpass.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183419817, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183419870, "dur":17, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183419887, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183419944, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Cinemachine.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183419958, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183420006, "dur":17, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183420023, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183420082, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.CodeGen.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183420092, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183420145, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Scheduler.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183420159, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183420207, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183420221, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183420279, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183420289, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183420344, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/JBooth.ShaderPackager.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183420355, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183420406, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183420416, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183420476, "dur":189, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.CodeGen.dll.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1682376183420665, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183420721, "dur":1185, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183421907, "dur":1505, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183423413, "dur":1215, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183424629, "dur":999, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183425629, "dur":1068, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183426697, "dur":1154, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183427852, "dur":1554, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183429407, "dur":1280, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183430688, "dur":1786, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183432474, "dur":1524, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183433999, "dur":1029, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183435029, "dur":1069, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183436099, "dur":1003, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183437102, "dur":1067, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183438170, "dur":1022, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183439192, "dur":1049, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183440242, "dur":1053, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183441295, "dur":1007, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183442302, "dur":1030, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183443332, "dur":1029, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183444361, "dur":920, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183445282, "dur":959, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183446242, "dur":1307, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183447550, "dur":1101, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183448652, "dur":524, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183449176, "dur":723, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Runtime.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1682376183449900, "dur":397, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183450300, "dur":820, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1682376183451121, "dur":1046, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183452171, "dur":852, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Runtime.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1682376183453023, "dur":131, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183453157, "dur":708, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1682376183453865, "dur":136, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183454005, "dur":536, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1682376183454541, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183454651, "dur":468, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/SimpleJSON.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1682376183455120, "dur":128, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183455251, "dur":1821, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1682376183457072, "dur":148, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183457226, "dur":2145, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1682376183459371, "dur":146, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183459523, "dur":854, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1682376183460378, "dur":139, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183460522, "dur":665, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1682376183461187, "dur":480, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183461673, "dur":716, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-firstpass.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1682376183462389, "dur":350, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183462744, "dur":1590, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1682376183465657, "dur":494, "ph":"X", "name": "StoreTimestampsOfNonGeneratedInputFiles", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183466775, "dur":1521869, "ph":"X", "name": "Csc", "args": { "detail":"Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1682376185008181, "dur":859, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1682376185009041, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376185009133, "dur":200301, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp-Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":3, "ts":1682376185210105, "dur":103, "ph":"X", "name": "StoreTimestampsOfNonGeneratedInputFiles", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376185210292, "dur":430114, "ph":"X", "name": "ILPostProcess", "args": { "detail":"Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp-Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":3, "ts":1682376185649302, "dur":251, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp-Editor.pdb" }} +,{ "pid":12345, "tid":3, "ts":1682376185649554, "dur":35, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376185649595, "dur":312661, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183399547, "dur":7965, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183407515, "dur":1369, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183408884, "dur":1100, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183409985, "dur":1158, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183411144, "dur":1223, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183412367, "dur":1044, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183413411, "dur":1074, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183414485, "dur":1017, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183415503, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.rsp" }} +,{ "pid":12345, "tid":4, "ts":1682376183415567, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183415621, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.AdditionalFile.txt" }} +,{ "pid":12345, "tid":4, "ts":1682376183415625, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183415683, "dur":14753, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1682376183430436, "dur":136, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183430585, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_08FEAA520A2EFD60.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183430591, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183430661, "dur":1524, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183432185, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.TestRunner.pdb" }} +,{ "pid":12345, "tid":4, "ts":1682376183432190, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183432238, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.TestRunner.dll" }} +,{ "pid":12345, "tid":4, "ts":1682376183432240, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183432281, "dur":1040, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183433322, "dur":1761, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183435083, "dur":1045, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183436128, "dur":1113, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183437241, "dur":1138, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183438379, "dur":1073, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183439453, "dur":1041, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183440494, "dur":1051, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183441545, "dur":998, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183442544, "dur":1140, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183443684, "dur":1010, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183444694, "dur":1239, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183445933, "dur":964, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183446898, "dur":964, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183447862, "dur":728, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183448590, "dur":182, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183448772, "dur":680, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1682376183449452, "dur":207, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183449666, "dur":755, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Internal.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1682376183450421, "dur":144, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183450569, "dur":773, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Runtime.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1682376183451342, "dur":328, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183451674, "dur":667, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1682376183452341, "dur":141, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183452486, "dur":590, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Analytics.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1682376183453076, "dur":348, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183453427, "dur":711, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.2D.Sprite.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1682376183454139, "dur":115, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183454258, "dur":543, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1682376183454801, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183454922, "dur":659, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Scheduler.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1682376183455581, "dur":155, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183455740, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.ref.dll_131AC9C5EC6E6517.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183455747, "dur":37, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183455793, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Burst.ref.dll_F30DFA20C0DD1968.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183455800, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183455847, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.InputSystem.ref.dll_FD2EC87C14EBE081.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183455855, "dur":38, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183455899, "dur":9, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.ref.dll_D75DF4EA1AFE54F4.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183455908, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183455978, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipelines.Core.Editor.ref.dll_46EB9B6930B27991.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183455988, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183456031, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Postprocessing.Editor.ref.dll_1C9CD17610FFA3F0.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183456039, "dur":37, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183456077, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Jobs.ref.dll_6319796B1FEE3FB4.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183456082, "dur":33, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183456116, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipeline.Universal.ShaderLibrary.ref.dll_5436F99F8BDCED8B.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183456122, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183456163, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.PlasticSCM.Editor.ref.dll_257AEB342BE77856.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183456169, "dur":189, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183456359, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.ref.dll_84A4293DBDD182DB.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183456365, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183456434, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TerrainTools.ref.dll_E38CD1BEC69E4F44.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183456442, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183456501, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Rider.Editor.ref.dll_9B5591808ABA37AF.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183456512, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183456556, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VSCode.Editor.ref.dll_3628369EB48E4C19.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183456564, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183456606, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.ref.dll_1A2083B43FB0BF18.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183456616, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183456667, "dur":609, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.DocCodeSamples.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1682376183457276, "dur":174, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183457452, "dur":982, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Collections.DocCodeSamples.dll (+pdb)" }} +,{ "pid":12345, "tid":4, "ts":1682376183458434, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183458521, "dur":965, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.RenderPipeline.Universal.ShaderLibrary.dll (+pdb)" }} +,{ "pid":12345, "tid":4, "ts":1682376183459487, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183459570, "dur":818, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Burst.dll (+pdb)" }} +,{ "pid":12345, "tid":4, "ts":1682376183460388, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183460487, "dur":1028, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Mathematics.dll (+pdb)" }} +,{ "pid":12345, "tid":4, "ts":1682376183461515, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183461616, "dur":998, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/UnityEngine.Monetization.dll (+pdb)" }} +,{ "pid":12345, "tid":4, "ts":1682376183462614, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183462737, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.ShaderGraph.Utilities.ref.dll_0524057423981A9D.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183462742, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183462795, "dur":873, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor-firstpass.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1682376183463668, "dur":155, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183463827, "dur":1388, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp-Editor-firstpass.dll (+pdb)" }} +,{ "pid":12345, "tid":4, "ts":1682376183465216, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183465320, "dur":1099, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.RenderPipelines.Core.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":4, "ts":1682376183466419, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183466530, "dur":1609, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/UnityEngine.Advertisements.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":4, "ts":1682376183468139, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183468226, "dur":886, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Timeline.dll (+pdb)" }} +,{ "pid":12345, "tid":4, "ts":1682376183469112, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183469183, "dur":978, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Analytics.dll (+pdb)" }} +,{ "pid":12345, "tid":4, "ts":1682376183470161, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183470250, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Analytics.pdb" }} +,{ "pid":12345, "tid":4, "ts":1682376183470254, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183470301, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Core.ShaderLibrary.dll" }} +,{ "pid":12345, "tid":4, "ts":1682376183470305, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183470351, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/JBooth.ShaderPackager.Editor.pdb" }} +,{ "pid":12345, "tid":4, "ts":1682376183470355, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183470404, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Universal.Runtime.dll" }} +,{ "pid":12345, "tid":4, "ts":1682376183470411, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183470491, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.ShaderGraph.Utilities.pdb" }} +,{ "pid":12345, "tid":4, "ts":1682376183470495, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183470544, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.pdb" }} +,{ "pid":12345, "tid":4, "ts":1682376183470548, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183470595, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Core.pdb" }} +,{ "pid":12345, "tid":4, "ts":1682376183470599, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183470647, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp-Editor-firstpass.dll" }} +,{ "pid":12345, "tid":4, "ts":1682376183470651, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183470697, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.CollabProxy.Editor.pdb" }} +,{ "pid":12345, "tid":4, "ts":1682376183470701, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183470750, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.SettingsProvider.Editor.dll" }} +,{ "pid":12345, "tid":4, "ts":1682376183470755, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183470811, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.Advertisements.DevX.Editor.pdb" }} +,{ "pid":12345, "tid":4, "ts":1682376183470815, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183470869, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.ShaderGraph.Editor.pdb" }} +,{ "pid":12345, "tid":4, "ts":1682376183470873, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183470928, "dur":204, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183471133, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183471182, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/AwesomeTechnologies.VegetationStudioPro.Editor.dll" }} +,{ "pid":12345, "tid":4, "ts":1682376183471185, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183471228, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Burst.pdb" }} +,{ "pid":12345, "tid":4, "ts":1682376183471230, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183471272, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Configuration.pdb" }} +,{ "pid":12345, "tid":4, "ts":1682376183471275, "dur":39, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183471315, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/XNodeEditor.dll" }} +,{ "pid":12345, "tid":4, "ts":1682376183471320, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183471362, "dur":305, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/com.unity.cinemachine.editor.dll.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183471667, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183471718, "dur":175, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Cinemachine.dll.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183471893, "dur":32, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183471926, "dur":156, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183472082, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183472124, "dur":154, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Networking.dll.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183472279, "dur":272, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183472552, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.CodeGen.dll" }} +,{ "pid":12345, "tid":4, "ts":1682376183472554, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183472602, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VSCode.Editor.dll" }} +,{ "pid":12345, "tid":4, "ts":1682376183472604, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183472647, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Burst.CodeGen.dll" }} +,{ "pid":12345, "tid":4, "ts":1682376183472649, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183472701, "dur":228, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.dll.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183472929, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183472993, "dur":180, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183473173, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183473217, "dur":174, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamples.dll.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183473391, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183473433, "dur":2175877, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376185649312, "dur":263919, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp-Editor.dll" }} +,{ "pid":12345, "tid":4, "ts":1682376185913232, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376185913299, "dur":48951, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183399630, "dur":7909, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183407541, "dur":1318, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183408860, "dur":1195, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183410056, "dur":1426, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183411482, "dur":1097, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183412580, "dur":1141, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183413721, "dur":1082, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183414804, "dur":1058, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183415863, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183415932, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183415977, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_0E48623D57FCC35A.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183416067, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183416140, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_F0818FF6EDA6FA42.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183416199, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183416249, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_8C3FC5EA38D8B6F7.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183416312, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183416364, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_F3B9433ACCF684E0.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183416427, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183416472, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_D5977E22A8AC4443.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183416523, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183416573, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_0E9E172FE6D46355.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183416624, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183416687, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_7D584FC05682CCF6.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183416776, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183416829, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_009C5F78367CD1A2.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183416882, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183416938, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.dll_A234DA0EF1216487.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183416947, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183417007, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Burst.Cecil.dll_8CDBB33055545F87.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183417065, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183417119, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_863A9CBBAA3082F4.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183417173, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183417239, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":5, "ts":1682376183417245, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183417295, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Internal.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183417363, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183417406, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183417465, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183417515, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Runtime.AdditionalFile.txt" }} +,{ "pid":12345, "tid":5, "ts":1682376183417520, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183417574, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183417645, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183417696, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Runtime.AdditionalFile.txt" }} +,{ "pid":12345, "tid":5, "ts":1682376183417696, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183417747, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamples.AdditionalFile.txt" }} +,{ "pid":12345, "tid":5, "ts":1682376183417748, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183417805, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183417903, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183417949, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Shaders.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183417999, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183418060, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183418114, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183418163, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Threading.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183418215, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183418261, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Scheduler.AdditionalFile.txt" }} +,{ "pid":12345, "tid":5, "ts":1682376183418262, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183418309, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Device.AdditionalFile.txt" }} +,{ "pid":12345, "tid":5, "ts":1682376183418310, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183418353, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":5, "ts":1682376183418354, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183418406, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":5, "ts":1682376183418407, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183418455, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Networking.AdditionalFile.txt" }} +,{ "pid":12345, "tid":5, "ts":1682376183418459, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183418512, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.AdditionalFile.txt" }} +,{ "pid":12345, "tid":5, "ts":1682376183418512, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183418576, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.DocCodeSamples.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183418634, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183418683, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/12540594754886937326.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183418750, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183418799, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/8899139255040401798.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183418867, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183418916, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/11609355203541698906.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183418983, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183419026, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/11368897008157290650.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183419093, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183419136, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/4345639507432806382.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183419202, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183419246, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/15183149355271759364.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183419313, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183419360, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/5249134988916615986.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183419417, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183419460, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/911446528535106498.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183419518, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183419562, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/13104283549428636260.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183419636, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183419685, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/1475724585155360059.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183419743, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183419789, "dur":17, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/com.unity.cinemachine.editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183419806, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183419857, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Monetization.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183419872, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183419921, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183419934, "dur":38, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183419973, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183419981, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183420036, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183420051, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183420113, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/MeshBakerEditor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183420124, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183420179, "dur":16, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183420195, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183420250, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183420260, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183420314, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183420325, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183420370, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183420381, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183420428, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183420439, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183420491, "dur":166, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183420657, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183420706, "dur":1054, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183421760, "dur":1548, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183423308, "dur":2750, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183426059, "dur":1286, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183427346, "dur":1205, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183428552, "dur":1114, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183429667, "dur":1008, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183430676, "dur":987, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183431663, "dur":1007, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183432670, "dur":1069, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183433739, "dur":1049, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183434789, "dur":1070, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183435859, "dur":1016, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183436876, "dur":1040, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183437917, "dur":1139, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183439056, "dur":2043, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183441100, "dur":979, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183442079, "dur":1013, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183443093, "dur":999, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183444092, "dur":938, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183445031, "dur":1061, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183446093, "dur":953, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183447047, "dur":985, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183448032, "dur":18, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183448050, "dur":19, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183448069, "dur":21, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183448090, "dur":18, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183448108, "dur":42, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183448150, "dur":12, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183448162, "dur":7, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183448170, "dur":603, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183448773, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_4C98D3F7040CD4F5.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183448781, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183448849, "dur":539, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/NavMeshComponents.dll (+2 others)" }} +,{ "pid":12345, "tid":5, "ts":1682376183449389, "dur":1486, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183450879, "dur":624, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamples.dll (+2 others)" }} +,{ "pid":12345, "tid":5, "ts":1682376183451503, "dur":137, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183451644, "dur":655, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsEditor.dll (+2 others)" }} +,{ "pid":12345, "tid":5, "ts":1682376183452299, "dur":3445, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183455749, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipelines.Core.Runtime.ref.dll_CE6A42C97D96EB0A.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183455755, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183455810, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Postprocessing.Runtime.ref.dll_3152B6A9836FBF3B.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183455815, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183455885, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Internal.ref.dll_A02B3542C15F550A.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183455891, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183455947, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Mathematics.ref.dll_E8EFDB1B8D5C174E.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183455954, "dur":234, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183456194, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Environments.ref.dll_7E0AC2CDE81D9C6D.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183456200, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183456246, "dur":9, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Burst.Editor.ref.dll_E2F92DAB6C167CC9.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183456255, "dur":37, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183456294, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Searcher.Editor.ref.dll_12B7E1785E41BE0E.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183456302, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183456345, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Mathematics.Editor.ref.dll_9A20CFD48BC11F43.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183456352, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183456416, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.ShaderGraph.Editor.ref.dll_0F50152946DB09D0.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183456421, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183456493, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipelines.Core.ShaderLibrary.ref.dll_7F2C410A434F5518.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183456499, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183456547, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Collections.Editor.ref.dll_E4491E98C71DB4B4.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183456552, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183456595, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TerrainTools.Editor.ref.dll_58444870EA97D8AD.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183456601, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183456643, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.Advertisements.Editor.ref.dll_95BDE7AB6BD0B967.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183456649, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183456691, "dur":635, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.BurstCompatibilityGen.dll (+2 others)" }} +,{ "pid":12345, "tid":5, "ts":1682376183457326, "dur":130, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183457458, "dur":886, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Collections.BurstCompatibilityGen.dll (+pdb)" }} +,{ "pid":12345, "tid":5, "ts":1682376183458345, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183458425, "dur":1019, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Networking.dll (+pdb)" }} +,{ "pid":12345, "tid":5, "ts":1682376183459444, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183459534, "dur":704, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":5, "ts":1682376183460238, "dur":128, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183460369, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.SettingsProvider.Editor.ref.dll_A1A44354E0B583A8.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183460375, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183460420, "dur":987, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/IngameDebugConsole.Runtime.dll (+pdb)" }} +,{ "pid":12345, "tid":5, "ts":1682376183461407, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183461487, "dur":898, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.PlasticSCM.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":5, "ts":1682376183462385, "dur":116, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183462503, "dur":1031, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Configuration.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":5, "ts":1682376183463534, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183463647, "dur":1193, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.VisualScripting.State.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":5, "ts":1682376183464840, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183464946, "dur":1571, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.ShaderGraph.Utilities.dll (+pdb)" }} +,{ "pid":12345, "tid":5, "ts":1682376183466518, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183466626, "dur":978, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/JBooth.ShaderPackager.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":5, "ts":1682376183467604, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183467691, "dur":945, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Collections.dll (+pdb)" }} +,{ "pid":12345, "tid":5, "ts":1682376183468637, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183468746, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Configuration.Editor.ref.dll_FF09FAD520872032.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183468756, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183468804, "dur":1101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp-firstpass.dll (+pdb)" }} +,{ "pid":12345, "tid":5, "ts":1682376183469905, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183469993, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp-firstpass.pdb" }} +,{ "pid":12345, "tid":5, "ts":1682376183469996, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470041, "dur":27, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.Advertisements.pdb" }} +,{ "pid":12345, "tid":5, "ts":1682376183470068, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470126, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Burst.Editor.dll" }} +,{ "pid":12345, "tid":5, "ts":1682376183470129, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470180, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.pdb" }} +,{ "pid":12345, "tid":5, "ts":1682376183470183, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470229, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TerrainTools.Editor.dll" }} +,{ "pid":12345, "tid":5, "ts":1682376183470232, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470276, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/MeshBakerEditor.pdb" }} +,{ "pid":12345, "tid":5, "ts":1682376183470278, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470332, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsEditor.pdb" }} +,{ "pid":12345, "tid":5, "ts":1682376183470335, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470384, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Editor.dll" }} +,{ "pid":12345, "tid":5, "ts":1682376183470387, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470432, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Core.Runtime.dll" }} +,{ "pid":12345, "tid":5, "ts":1682376183470435, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470480, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.Editor.pdb" }} +,{ "pid":12345, "tid":5, "ts":1682376183470483, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470524, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Core.Editor.pdb" }} +,{ "pid":12345, "tid":5, "ts":1682376183470527, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470576, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Threading.dll" }} +,{ "pid":12345, "tid":5, "ts":1682376183470580, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470628, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Universal.Editor.dll" }} +,{ "pid":12345, "tid":5, "ts":1682376183470632, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470680, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Telemetry.pdb" }} +,{ "pid":12345, "tid":5, "ts":1682376183470683, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470728, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsTestsEditmode.pdb" }} +,{ "pid":12345, "tid":5, "ts":1682376183470731, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470805, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.Advertisements.DevX.Editor.dll" }} +,{ "pid":12345, "tid":5, "ts":1682376183470809, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470867, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/XNode.pdb" }} +,{ "pid":12345, "tid":5, "ts":1682376183470870, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470919, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Environments.Internal.dll" }} +,{ "pid":12345, "tid":5, "ts":1682376183470924, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470970, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Internal.pdb" }} +,{ "pid":12345, "tid":5, "ts":1682376183470974, "dur":164, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183471138, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Registration.dll" }} +,{ "pid":12345, "tid":5, "ts":1682376183471142, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183471194, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Flow.pdb" }} +,{ "pid":12345, "tid":5, "ts":1682376183471198, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183471249, "dur":249, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183471498, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183471549, "dur":217, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183471766, "dur":38, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183471805, "dur":164, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183471969, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183472011, "dur":181, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183472192, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183472238, "dur":129, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.Internal.dll.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183472367, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183472480, "dur":141, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183472621, "dur":36, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183472658, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183472755, "dur":34, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183472790, "dur":154, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/SimpleJSON.dll.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183472944, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183472985, "dur":154, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.dll.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183473139, "dur":36, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183473176, "dur":135, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsEditmode.dll.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183473311, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183473367, "dur":174, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183473541, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183473590, "dur":2488677, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183399660, "dur":7915, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183407588, "dur":1460, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183409049, "dur":1145, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183410195, "dur":1299, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183411494, "dur":1341, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183412836, "dur":1169, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183414006, "dur":1055, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183415062, "dur":1083, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183416146, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_944BC2569F90E100.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183416212, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183416260, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_70CDE4D512829611.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183416323, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183416375, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_1923647CFBE66774.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183416441, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183416491, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_C81B7A5E094705A4.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183416544, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183416594, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_F0B71AE440A09198.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183416661, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183416709, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_A380F1B8FE419C0F.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183416804, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183416854, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_D44320C6A1B3C637.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183416913, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183416961, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.CodeGen.AdditionalFile.txt" }} +,{ "pid":12345, "tid":6, "ts":1682376183416966, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183417012, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Runtime.AdditionalFile.txt" }} +,{ "pid":12345, "tid":6, "ts":1682376183417017, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183417068, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_AAA96FFA2E5E32E2.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183417135, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183417199, "dur":132, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183417331, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183417383, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponents.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183417449, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183417498, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":6, "ts":1682376183417498, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183417544, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_3025156E42E53A65.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183417552, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183417605, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183417672, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183417732, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/MeshBakerCore.AdditionalFile.txt" }} +,{ "pid":12345, "tid":6, "ts":1682376183417738, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183417794, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183417847, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183417889, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":6, "ts":1682376183417890, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183417934, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.2D.Sprite.Editor.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183417990, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183418034, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183418092, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183418141, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Monetization.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183418201, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183418252, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamplesEditor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":6, "ts":1682376183418257, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183418311, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/JBooth.ShaderPackager.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":6, "ts":1682376183418311, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183418372, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/MeshBakerEditor.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183418428, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183418479, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor-firstpass.AdditionalFile.txt" }} +,{ "pid":12345, "tid":6, "ts":1682376183418480, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183418524, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsEditmode.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183418578, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183418644, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183418716, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183418763, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/7602468127534590235.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183418828, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183418879, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/18218310762646611085.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183418935, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183418981, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/1418726328684876121.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183419053, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183419102, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.CompilationPipeline.Common.dll_95A2D0A3BBEEE89C.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183419110, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183419162, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/11169949131693821681.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183419230, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183419276, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/15312589170787849123.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183419354, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183419404, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/1907345496941296335.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183419472, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183419519, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/6262281476893245489.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183419590, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183419637, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/17227893639732096016.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183419697, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183419744, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/14814235663552238418.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183419809, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183419869, "dur":19, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183419888, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183419961, "dur":15, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Runtime.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183419977, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183420030, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183420045, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183420093, "dur":15, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Telemetry.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183420108, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183420167, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/XNode.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183420181, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183420228, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183420238, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183420285, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183420298, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183420345, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Runtime.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183420356, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183420434, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.DevX.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183420444, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183420496, "dur":1137, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183421634, "dur":1461, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183423095, "dur":1901, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183424997, "dur":1494, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183426492, "dur":1261, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183427754, "dur":1013, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183428767, "dur":972, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183429740, "dur":1976, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183431717, "dur":1032, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183432750, "dur":1075, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183433825, "dur":1044, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183434870, "dur":1101, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183435971, "dur":1075, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183437046, "dur":1358, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183438405, "dur":1081, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183439486, "dur":3806, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183443292, "dur":970, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183444262, "dur":4146, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183448408, "dur":927, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183449335, "dur":793, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1682376183450129, "dur":510, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183450642, "dur":737, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/MeshBakerCore.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1682376183451379, "dur":719, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183452101, "dur":536, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1682376183452637, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183452746, "dur":549, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Telemetry.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1682376183453295, "dur":709, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183454009, "dur":583, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.ShaderLibrary.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1682376183454592, "dur":139, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183454735, "dur":638, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/JBooth.ShaderPackager.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1682376183455373, "dur":154, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183455531, "dur":890, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Device.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1682376183456421, "dur":230, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183456655, "dur":695, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Registration.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1682376183457350, "dur":195, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183457550, "dur":906, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1682376183458457, "dur":195, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183458656, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipelines.Universal.Editor.ref.dll_0FF7AC68384616B1.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183458663, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183458724, "dur":3120, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.DevX.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1682376183461844, "dur":125, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183461972, "dur":1311, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/UnityEngine.Advertisements.DevX.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":6, "ts":1682376183463284, "dur":420, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183463707, "dur":4882, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.TextMeshPro.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":6, "ts":1682376183468589, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183468697, "dur":1124, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/NavMeshComponentsExamplesEditor.dll (+pdb)" }} +,{ "pid":12345, "tid":6, "ts":1682376183469821, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183469919, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsExamplesEditor.dll" }} +,{ "pid":12345, "tid":6, "ts":1682376183469923, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183469971, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Jobs.dll" }} +,{ "pid":12345, "tid":6, "ts":1682376183469976, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183470023, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/AwesomeTechnologies.TouchReactSystemPro.Runtime.pdb" }} +,{ "pid":12345, "tid":6, "ts":1682376183470026, "dur":290, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183470318, "dur":189, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Registration.dll.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183470507, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183470556, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.dll" }} +,{ "pid":12345, "tid":6, "ts":1682376183470560, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183470606, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Core.dll" }} +,{ "pid":12345, "tid":6, "ts":1682376183470611, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183470656, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp-Editor-firstpass.pdb" }} +,{ "pid":12345, "tid":6, "ts":1682376183470660, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183470708, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll" }} +,{ "pid":12345, "tid":6, "ts":1682376183470712, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183470757, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Core.Editor.pdb" }} +,{ "pid":12345, "tid":6, "ts":1682376183470761, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183470814, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Configuration.Editor.dll" }} +,{ "pid":12345, "tid":6, "ts":1682376183470817, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183470875, "dur":196, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183471071, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183471116, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/IngameDebugConsole.Runtime.dll" }} +,{ "pid":12345, "tid":6, "ts":1682376183471119, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183471160, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/com.unity.cinemachine.editor.dll" }} +,{ "pid":12345, "tid":6, "ts":1682376183471163, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183471206, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Device.dll" }} +,{ "pid":12345, "tid":6, "ts":1682376183471208, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183471250, "dur":213, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183471464, "dur":1266, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183472731, "dur":154, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/NavMeshComponents.dll.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183472885, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183472928, "dur":162, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/MeshBakerEditor.dll.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183473091, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183473175, "dur":180, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/JBooth.ShaderPackager.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183473355, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183473400, "dur":159, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.2D.Sprite.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183473559, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183473609, "dur":2488671, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183399698, "dur":7898, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183407599, "dur":1287, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183408887, "dur":1166, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183410053, "dur":1133, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183411186, "dur":1257, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183412444, "dur":1133, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183413577, "dur":1135, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183414713, "dur":1007, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183415721, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.AdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1682376183415722, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183415779, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183415837, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183415899, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.InputSystem.AdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1682376183415900, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183415943, "dur":138, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183416081, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183416137, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_B6216DAA03B99B64.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1682376183416205, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183416255, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_F8EC2BAB266D80D9.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1682376183416315, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183416368, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_EB0D3C334BDFD6B1.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1682376183416447, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183416504, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_A7C57F018741676B.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1682376183416559, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183416611, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_7FBDC709600F6835.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1682376183416675, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183416730, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_0B794DA4DE561539.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1682376183416797, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183416845, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_D7B7213748405E75.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1682376183416898, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183416946, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.CodeGen.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183416998, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183417052, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Burst.Cecil.Rocks.dll_EAEC4A72F0696507.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1682376183417118, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183417170, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_905A726CBE6280BB.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1682376183417232, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183417283, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Utilities.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183417342, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183417391, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.AdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1682376183417392, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183417440, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1682376183417441, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183417492, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.AdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1682376183417492, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183417536, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183417588, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183417635, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.AdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1682376183417640, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183417687, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Runtime.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183417756, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183417808, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1682376183417813, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183417864, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1682376183417865, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183417918, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.ShaderLibrary.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183417970, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183418020, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1682376183418021, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183418079, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Telemetry.AdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1682376183418080, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183418127, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Monetization.AdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1682376183418128, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183418171, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Threading.AdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1682376183418172, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183418220, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Editor.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183418272, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183418316, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/SimpleJSON.AdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1682376183418317, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183418365, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/PPv2URPConverters.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183418421, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183418469, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1682376183418470, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183418522, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsEditmode.AdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1682376183418523, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183418573, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.DocCodeSamples.AdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1682376183418574, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183418627, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1682376183418628, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183418671, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/12248871281822510316.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183418733, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183418781, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/17471587741674112842.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183418853, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183418904, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/9870516708743257357.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183418967, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183419013, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/9835629327973270806.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183419067, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183419113, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/9347744537272444272.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183419181, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183419229, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/1723042715960067801.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183419301, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183419348, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/10010842633742469623.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183419403, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183419449, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/17833018831532810861.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183419508, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183419552, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/4425289655808235400.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183419612, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183419653, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/10292501669419677951.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183419717, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183419763, "dur":17, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183419780, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183419829, "dur":18, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183419847, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183419896, "dur":19, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183419915, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183419964, "dur":15, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Registration.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183419979, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183420034, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183420049, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183420106, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsPlaymode.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183420119, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183420178, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183420188, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183420243, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183420253, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183420298, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183420309, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183420355, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Device.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183420366, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183420413, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipeline.Universal.ShaderLibrary.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183420424, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183420477, "dur":194, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1682376183420671, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183420737, "dur":1150, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183421887, "dur":1503, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183423390, "dur":1384, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183424775, "dur":1046, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183425821, "dur":1220, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183427041, "dur":1174, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183428215, "dur":1468, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183429684, "dur":1127, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183430811, "dur":1588, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183432399, "dur":1656, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183434055, "dur":1183, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183435238, "dur":2333, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183437572, "dur":1231, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183438804, "dur":5603, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183444407, "dur":1200, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183445607, "dur":1338, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183446945, "dur":1588, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183448533, "dur":237, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183448773, "dur":1491, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.InputSystem.dll (+2 others)" }} +,{ "pid":12345, "tid":7, "ts":1682376183450264, "dur":154, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183450423, "dur":837, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Runtime.dll (+2 others)" }} +,{ "pid":12345, "tid":7, "ts":1682376183451260, "dur":153, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183451417, "dur":1265, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipeline.Universal.ShaderLibrary.dll (+2 others)" }} +,{ "pid":12345, "tid":7, "ts":1682376183452683, "dur":136, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183452823, "dur":852, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Runtime.dll (+2 others)" }} +,{ "pid":12345, "tid":7, "ts":1682376183453675, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183453799, "dur":746, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Cinemachine.dll (+2 others)" }} +,{ "pid":12345, "tid":7, "ts":1682376183454545, "dur":585, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183455133, "dur":656, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.Internal.dll (+2 others)" }} +,{ "pid":12345, "tid":7, "ts":1682376183455789, "dur":123, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183455916, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Collections.ref.dll_656D7410E7809ECD.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1682376183455923, "dur":36, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183455964, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipelines.Universal.Runtime.ref.dll_5400A10AF7CC6BEA.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1682376183455969, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183456013, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Timeline.ref.dll_621CDDF9C514DF8F.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1682376183456020, "dur":398, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183456422, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.Advertisements.ref.dll_324BF20D18302AEA.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1682376183456426, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183456478, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Analytics.ref.dll_EDA1682A714EA6BF.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1682376183456488, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183456536, "dur":9, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipelines.Universal.Shaders.ref.dll_9468B054363B0720.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1682376183456545, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183456592, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.Editor.ref.dll_159E061D77A10B86.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1682376183456600, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183456669, "dur":579, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsEditmode.dll (+2 others)" }} +,{ "pid":12345, "tid":7, "ts":1682376183457249, "dur":1434, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183458686, "dur":3555, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":7, "ts":1682376183462242, "dur":140, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183462386, "dur":2248, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.CollabProxy.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":7, "ts":1682376183464634, "dur":129, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183464766, "dur":969, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Threading.dll (+pdb)" }} +,{ "pid":12345, "tid":7, "ts":1682376183465735, "dur":507, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183466245, "dur":989, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/NavMeshComponentsExamples.dll (+pdb)" }} +,{ "pid":12345, "tid":7, "ts":1682376183467234, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183467324, "dur":2133, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/SimpleJSON.dll (+pdb)" }} +,{ "pid":12345, "tid":7, "ts":1682376183469458, "dur":305, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183469767, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/SimpleJSON.dll" }} +,{ "pid":12345, "tid":7, "ts":1682376183469770, "dur":127, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183469898, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Cinemachine.pdb" }} +,{ "pid":12345, "tid":7, "ts":1682376183469901, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183469947, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/SimpleJSON.pdb" }} +,{ "pid":12345, "tid":7, "ts":1682376183469950, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183469994, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll" }} +,{ "pid":12345, "tid":7, "ts":1682376183469997, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183470064, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Timeline.pdb" }} +,{ "pid":12345, "tid":7, "ts":1682376183470068, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183470118, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Scheduler.pdb" }} +,{ "pid":12345, "tid":7, "ts":1682376183470121, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183470171, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll" }} +,{ "pid":12345, "tid":7, "ts":1682376183470174, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183470216, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll" }} +,{ "pid":12345, "tid":7, "ts":1682376183470219, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183470259, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Analytics.dll" }} +,{ "pid":12345, "tid":7, "ts":1682376183470262, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183470308, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.Advertisements.Editor.dll" }} +,{ "pid":12345, "tid":7, "ts":1682376183470311, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183470356, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/JBooth.ShaderPackager.Editor.dll" }} +,{ "pid":12345, "tid":7, "ts":1682376183470359, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183470405, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Universal.Runtime.pdb" }} +,{ "pid":12345, "tid":7, "ts":1682376183470409, "dur":3162, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183473572, "dur":2488669, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183399733, "dur":7873, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183407609, "dur":1304, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183408914, "dur":1174, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183410088, "dur":1356, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183411445, "dur":1113, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183412558, "dur":1127, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183413686, "dur":1099, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183414786, "dur":1094, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183415881, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.InputSystem.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183415987, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183416039, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_903E9BDCD3D6A48A.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1682376183416115, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183416162, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_72708534F1C3695E.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1682376183416227, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183416277, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.dll_D4D920E74F94F16C.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1682376183416332, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183416399, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_E219927C3C9A2E98.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1682376183416470, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183416517, "dur":128, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_03B086CE8C9E1EAA.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1682376183416646, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183416720, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_A58D266661D75B4B.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1682376183416822, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183416870, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_6F3B06D3B7A3FF42.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1682376183416928, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183416976, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.CodeGen.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183417027, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183417082, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Burst.Cecil.Mdb.dll_465D9C127E35CC84.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1682376183417140, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183417209, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipeline.Universal.ShaderLibrary.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183417269, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183417322, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Runtime.AdditionalFile.txt" }} +,{ "pid":12345, "tid":8, "ts":1682376183417327, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183417382, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":8, "ts":1682376183417382, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183417435, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponents.AdditionalFile.txt" }} +,{ "pid":12345, "tid":8, "ts":1682376183417436, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183417494, "dur":156, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Editor.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183417650, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183417699, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Cinemachine.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183417760, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183417815, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183417867, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183417922, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.AdditionalFile.txt" }} +,{ "pid":12345, "tid":8, "ts":1682376183417923, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183417976, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.Editor.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183418032, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183418078, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.Editor.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183418152, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183418197, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/XNodeEditor.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183418254, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183418301, "dur":48, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Device.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183418349, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183418403, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.Editor.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183418455, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183418508, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor-firstpass.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183418581, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183418648, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.DevX.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":8, "ts":1682376183418649, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183418695, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/497035096193185419.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183418767, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183418817, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/9675442845102135732.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183418882, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183418939, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/18408091341978535793.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183419007, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183419065, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/12812556936427222528.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183419131, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183419188, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/6947401630772442630.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183419263, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183419310, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2282191090610319379.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183419372, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183419429, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/1379359308984453704.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183419489, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183419543, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2781082588993088484.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183419620, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183419671, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2296344399083059428.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183419733, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183419774, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Runtime.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183419788, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183419837, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/XNodeEditor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183419850, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183419897, "dur":17, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183419914, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183419968, "dur":15, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183419983, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183420039, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.2D.Sprite.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183420051, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183420106, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamples.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183420118, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183420168, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183420181, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183420233, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Searcher.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183420245, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183420291, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.InputSystem.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183420304, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183420350, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.Internal.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183420362, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183420438, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183420450, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183420499, "dur":1170, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183421670, "dur":1450, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183423120, "dur":1184, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183424304, "dur":1549, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183425853, "dur":1033, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183426887, "dur":1019, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183427907, "dur":1107, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183429015, "dur":1068, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183430084, "dur":1243, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183431327, "dur":1028, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183432356, "dur":996, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183433353, "dur":1089, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183434442, "dur":1017, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183435459, "dur":1031, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183436490, "dur":1094, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183437584, "dur":1062, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183438647, "dur":1032, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183439680, "dur":1008, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183440689, "dur":1081, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183441771, "dur":1010, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183442782, "dur":1174, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183443956, "dur":1228, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183445185, "dur":933, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183446119, "dur":1114, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183447233, "dur":1184, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183448418, "dur":351, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183448770, "dur":1052, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.dll (+2 others)" }} +,{ "pid":12345, "tid":8, "ts":1682376183449823, "dur":132, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183449962, "dur":670, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":8, "ts":1682376183450632, "dur":994, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183451629, "dur":1447, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":8, "ts":1682376183453077, "dur":155, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183453237, "dur":620, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Shaders.dll (+2 others)" }} +,{ "pid":12345, "tid":8, "ts":1682376183453858, "dur":623, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183454486, "dur":617, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Threading.dll (+2 others)" }} +,{ "pid":12345, "tid":8, "ts":1682376183455103, "dur":472, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183455579, "dur":697, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/XNodeEditor.dll (+2 others)" }} +,{ "pid":12345, "tid":8, "ts":1682376183456276, "dur":1275, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183457554, "dur":922, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/XNodeEditor.dll (+pdb)" }} +,{ "pid":12345, "tid":8, "ts":1682376183458476, "dur":690, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183459170, "dur":1014, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/UnityEditor.UI.dll (+pdb)" }} +,{ "pid":12345, "tid":8, "ts":1682376183460184, "dur":212, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183460400, "dur":2726, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.RenderPipelines.Universal.Shaders.dll (+pdb)" }} +,{ "pid":12345, "tid":8, "ts":1682376183463126, "dur":1566, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183464695, "dur":956, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.VisualScripting.Core.dll (+pdb)" }} +,{ "pid":12345, "tid":8, "ts":1682376183465651, "dur":529, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183466184, "dur":960, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.RenderPipelines.Universal.Runtime.dll (+pdb)" }} +,{ "pid":12345, "tid":8, "ts":1682376183467144, "dur":310, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183467460, "dur":1037, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.TerrainTools.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":8, "ts":1682376183468498, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183468613, "dur":1007, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Burst.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":8, "ts":1682376183469620, "dur":499, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183470121, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Burst.Editor.pdb" }} +,{ "pid":12345, "tid":8, "ts":1682376183470126, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183470173, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.dll" }} +,{ "pid":12345, "tid":8, "ts":1682376183470176, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183470223, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TerrainTools.Editor.pdb" }} +,{ "pid":12345, "tid":8, "ts":1682376183470226, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183470271, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/MeshBakerEditor.dll" }} +,{ "pid":12345, "tid":8, "ts":1682376183470274, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183470319, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.EditorCoroutines.Editor.dll" }} +,{ "pid":12345, "tid":8, "ts":1682376183470321, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183470362, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Environments.pdb" }} +,{ "pid":12345, "tid":8, "ts":1682376183470365, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183470410, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsExamples.pdb" }} +,{ "pid":12345, "tid":8, "ts":1682376183470415, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183470463, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponents.dll" }} +,{ "pid":12345, "tid":8, "ts":1682376183470467, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183470509, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Mathematics.Editor.dll" }} +,{ "pid":12345, "tid":8, "ts":1682376183470513, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183470559, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.UI.dll" }} +,{ "pid":12345, "tid":8, "ts":1682376183470562, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183470610, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Postprocessing.Editor.dll" }} +,{ "pid":12345, "tid":8, "ts":1682376183470614, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183470658, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TerrainTools.pdb" }} +,{ "pid":12345, "tid":8, "ts":1682376183470662, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183470711, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Universal.Shaders.pdb" }} +,{ "pid":12345, "tid":8, "ts":1682376183470715, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183470762, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Searcher.Editor.pdb" }} +,{ "pid":12345, "tid":8, "ts":1682376183470765, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183470820, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll" }} +,{ "pid":12345, "tid":8, "ts":1682376183470825, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183470878, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.Monetization.dll" }} +,{ "pid":12345, "tid":8, "ts":1682376183470882, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183470931, "dur":199, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1682376183471130, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183471176, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/com.unity.cinemachine.editor.pdb" }} +,{ "pid":12345, "tid":8, "ts":1682376183471178, "dur":36, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183471214, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Device.pdb" }} +,{ "pid":12345, "tid":8, "ts":1682376183471216, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183471259, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipeline.Universal.ShaderLibrary.dll" }} +,{ "pid":12345, "tid":8, "ts":1682376183471263, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183471311, "dur":161, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.DevX.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1682376183471472, "dur":501, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183471975, "dur":150, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.CodeGen.dll.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1682376183472125, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183472185, "dur":177, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Scheduler.dll.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1682376183472362, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183472403, "dur":120, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1682376183472523, "dur":35, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183472558, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Rider.Editor.dll" }} +,{ "pid":12345, "tid":8, "ts":1682376183472560, "dur":36, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183472597, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VSCode.Editor.pdb" }} +,{ "pid":12345, "tid":8, "ts":1682376183472599, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183472641, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Burst.CodeGen.pdb" }} +,{ "pid":12345, "tid":8, "ts":1682376183472644, "dur":381, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183473027, "dur":136, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Utilities.dll.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1682376183473163, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183473205, "dur":169, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1682376183473374, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183473425, "dur":1534762, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376185008189, "dur":201882, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp.dll (+pdb)" }} +,{ "pid":12345, "tid":8, "ts":1682376185210633, "dur":82, "ph":"X", "name": "StoreTimestampsOfNonGeneratedInputFiles", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376185210720, "dur":526001, "ph":"X", "name": "ILPostProcess", "args": { "detail":"Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp.dll (+pdb)" }} +,{ "pid":12345, "tid":8, "ts":1682376185745702, "dur":215158, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll" }} +,{ "pid":12345, "tid":8, "ts":1682376185960867, "dur":1, "ph":"X", "name": "StoreTimestampsOfNonGeneratedInputFiles", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376185960873, "dur":1329, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.dll" }} +,{ "pid":12345, "tid":8, "ts":1682376185962210, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ScriptAssemblies" }} +,{ "pid":12345, "tid":8, "ts":1682376185962211, "dur":0, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183399763, "dur":7852, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183407618, "dur":1254, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183408873, "dur":1156, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183410029, "dur":1150, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183411179, "dur":1337, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183412516, "dur":1203, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183413719, "dur":1068, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183414788, "dur":1231, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183416020, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_4856656B4452EB6C.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183416095, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183416164, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_A9F454FA4AC4590B.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183416227, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183416275, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_A35144EC0F52BD36.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183416339, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183416396, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_740AAD124CBD6123.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183416467, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183416514, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_27057285414B209C.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183416584, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183416674, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UNETModule.dll_8B927394737C7652.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183416741, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183416797, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_01A0F82DF7B79505.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183416859, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183416918, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_D5CB58587E6815AE.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183416925, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183416970, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.CodeGen.rsp" }} +,{ "pid":12345, "tid":9, "ts":1682376183417023, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183417080, "dur":7905, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.CodeGen.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1682376183424986, "dur":309, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183425302, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Jobs.CodeGen.dll" }} +,{ "pid":12345, "tid":9, "ts":1682376183425306, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183425366, "dur":1011, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183426377, "dur":1085, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183427463, "dur":1128, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183428591, "dur":2107, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183430698, "dur":1126, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183431825, "dur":962, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183432788, "dur":941, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183433730, "dur":1052, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183434782, "dur":1062, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183435844, "dur":1051, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183436895, "dur":1071, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183437967, "dur":1046, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183439013, "dur":1055, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183440069, "dur":1027, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183441096, "dur":984, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183442081, "dur":1032, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183443114, "dur":1163, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183444277, "dur":1644, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183445921, "dur":1138, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183447060, "dur":1510, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183448570, "dur":205, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183448776, "dur":677, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Searcher.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1682376183449453, "dur":255, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183449710, "dur":576, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1682376183450286, "dur":137, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183450426, "dur":4651, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1682376183455078, "dur":157, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183455240, "dur":1577, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1682376183456818, "dur":184, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183457006, "dur":659, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1682376183457665, "dur":131, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183457801, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.ref.dll_D91762B7076BE462.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183457807, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183457856, "dur":1061, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.VisualScripting.State.dll (+pdb)" }} +,{ "pid":12345, "tid":9, "ts":1682376183458917, "dur":235, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183459156, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Editor.ref.dll_CCD0CF61C5D7A10A.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183459162, "dur":228, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183459394, "dur":1071, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Device.dll (+pdb)" }} +,{ "pid":12345, "tid":9, "ts":1682376183460465, "dur":121, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183460589, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.Editor.ref.dll_E03858E727F23F6F.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183460595, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183460650, "dur":998, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Internal.dll (+pdb)" }} +,{ "pid":12345, "tid":9, "ts":1682376183461648, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183461737, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Shared.Editor.ref.dll_9669F6EBFF6DFFB7.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183461743, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183461804, "dur":15, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Scheduler.ref.dll_EE2AFA3B402F70E4.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183461819, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183461902, "dur":1182, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll (+pdb)" }} +,{ "pid":12345, "tid":9, "ts":1682376183463084, "dur":128, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183463216, "dur":887, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Searcher.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":9, "ts":1682376183464104, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183464200, "dur":950, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Telemetry.dll (+pdb)" }} +,{ "pid":12345, "tid":9, "ts":1682376183465150, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183465247, "dur":881, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.VisualScripting.Shared.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":9, "ts":1682376183466128, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183466209, "dur":934, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/NavMeshComponents.dll (+pdb)" }} +,{ "pid":12345, "tid":9, "ts":1682376183467143, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183467237, "dur":1029, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/MeshBakerEditor.dll (+pdb)" }} +,{ "pid":12345, "tid":9, "ts":1682376183468266, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183468385, "dur":989, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Jobs.dll (+pdb)" }} +,{ "pid":12345, "tid":9, "ts":1682376183469374, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183469485, "dur":942, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.TextMeshPro.dll (+pdb)" }} +,{ "pid":12345, "tid":9, "ts":1682376183470428, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183470534, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.dll" }} +,{ "pid":12345, "tid":9, "ts":1682376183470538, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183470584, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Shared.Editor.pdb" }} +,{ "pid":12345, "tid":9, "ts":1682376183470588, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183470636, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Postprocessing.Runtime.dll" }} +,{ "pid":12345, "tid":9, "ts":1682376183470641, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183470688, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Telemetry.dll" }} +,{ "pid":12345, "tid":9, "ts":1682376183470692, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183470747, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.SettingsProvider.Editor.pdb" }} +,{ "pid":12345, "tid":9, "ts":1682376183470751, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183470832, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/IngameDebugConsole.Editor.dll" }} +,{ "pid":12345, "tid":9, "ts":1682376183470836, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183470885, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll" }} +,{ "pid":12345, "tid":9, "ts":1682376183470888, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183470932, "dur":283, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-firstpass.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183471215, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183471262, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Configuration.dll" }} +,{ "pid":12345, "tid":9, "ts":1682376183471265, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183471310, "dur":160, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183471470, "dur":116, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183471587, "dur":183, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183471770, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183471825, "dur":163, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183471988, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183472047, "dur":156, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.BurstCompatibilityGen.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183472204, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183472262, "dur":155, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Runtime.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183472417, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183472469, "dur":161, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipeline.Universal.ShaderLibrary.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183472630, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183472684, "dur":154, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsEditor.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183472838, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183472895, "dur":117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183473012, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183473063, "dur":144, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183473207, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183473275, "dur":193, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183473468, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183473523, "dur":2272187, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376185745711, "dur":389, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb" }} +,{ "pid":12345, "tid":9, "ts":1682376185746106, "dur":1, "ph":"X", "name": "StoreTimestampsOfNonGeneratedInputFiles", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376185746149, "dur":1779, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.pdb" }} +,{ "pid":12345, "tid":9, "ts":1682376185747934, "dur":214313, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183399793, "dur":7829, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183407625, "dur":1450, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183409075, "dur":1165, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183410241, "dur":1330, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183411572, "dur":1144, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183412716, "dur":1149, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183413865, "dur":1043, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183414908, "dur":1047, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183415956, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.AdditionalFile.txt" }} +,{ "pid":12345, "tid":10, "ts":1682376183415961, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183416004, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_1B76D805F529511B.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183416094, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183416154, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_F831C39ABAFD6EEB.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183416231, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183416281, "dur":49, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_A8A2A65581B38E57.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183416330, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183416386, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_AE33CCD8F4DAD942.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183416443, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183416492, "dur":9, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_4E1C439CF59F78B8.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183416502, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183416551, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_51BAB36328E3B08F.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183416609, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183416668, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_EBF52E2449EDFFEE.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183416732, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183416790, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_09D0CB44C5F2096A.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183416845, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183416892, "dur":9, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_C6B5E0BE5750AA37.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183416901, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183416950, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.CodeGen.AdditionalFile.txt" }} +,{ "pid":12345, "tid":10, "ts":1682376183416956, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183417009, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Burst.Cecil.Pdb.dll_5DB01481FCEACE07.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183417065, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183417127, "dur":47, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_AE237261CA2DA2B1.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183417174, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183417232, "dur":150, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183417382, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183417436, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.Editor.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183417494, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183417540, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.AdditionalFile.txt" }} +,{ "pid":12345, "tid":10, "ts":1682376183417544, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183417587, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.AdditionalFile.txt" }} +,{ "pid":12345, "tid":10, "ts":1682376183417588, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183417636, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183417696, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183417740, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/MeshBakerCore.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183417795, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183417850, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsEditor.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183417909, "dur":39, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183417948, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Shaders.AdditionalFile.txt" }} +,{ "pid":12345, "tid":10, "ts":1682376183417949, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183417998, "dur":48, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Analytics.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183418047, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183418096, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":10, "ts":1682376183418097, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183418152, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183418203, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183418252, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Editor.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183418320, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183418370, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/MeshBakerEditor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":10, "ts":1682376183418375, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183418420, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Registration.AdditionalFile.txt" }} +,{ "pid":12345, "tid":10, "ts":1682376183418421, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183418467, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-firstpass.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183418520, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183418584, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.BurstCompatibilityGen.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183418638, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183418688, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/14494330292695847501.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183418756, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183418816, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2084921166946444769.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183418885, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183418939, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/5916180605834378387.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183419001, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183419061, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/3119559315184918665.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183419128, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183419184, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/3938377011463375229.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183419248, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183419293, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/6841316898876630997.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183419362, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183419415, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/3913888237084306484.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183419481, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183419534, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/17766336155681823506.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183419599, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183419644, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/4772145154433932943.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183419705, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183419753, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamplesEditor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183419767, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183419823, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.CodeGen.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183419833, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183419886, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Analytics.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183419900, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183420012, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Runtime.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183420023, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183420079, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183420093, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183420149, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Networking.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183420161, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183420211, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183420222, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183420276, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Runtime.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183420287, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183420336, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponents.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183420350, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183420398, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183420412, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183420465, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.CodeGen.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183420476, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183420544, "dur":1196, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183421741, "dur":1465, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183423206, "dur":1053, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183424260, "dur":1009, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183425270, "dur":1465, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183426736, "dur":1740, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183428476, "dur":2336, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183430812, "dur":1027, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183431840, "dur":998, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183432838, "dur":1077, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183433915, "dur":1132, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183435048, "dur":1046, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183436095, "dur":1032, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183437127, "dur":1136, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183438263, "dur":1030, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183439294, "dur":1069, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183440363, "dur":1008, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183441372, "dur":1000, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183442372, "dur":1054, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183443427, "dur":1008, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183444435, "dur":991, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183445427, "dur":949, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183446377, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_193EC4CE382CBFB3.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183446387, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183446448, "dur":230, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183446679, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183446732, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEditor.TestRunner.pdb" }} +,{ "pid":12345, "tid":10, "ts":1682376183446736, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183446797, "dur":970, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183447768, "dur":1110, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183448878, "dur":1129, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll (+2 others)" }} +,{ "pid":12345, "tid":10, "ts":1682376183450008, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183450128, "dur":601, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.CodeGen.dll (+2 others)" }} +,{ "pid":12345, "tid":10, "ts":1682376183450729, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183450864, "dur":617, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.dll (+2 others)" }} +,{ "pid":12345, "tid":10, "ts":1682376183451481, "dur":135, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183451619, "dur":906, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":10, "ts":1682376183452525, "dur":653, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183453182, "dur":1626, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":10, "ts":1682376183454808, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183454933, "dur":2979, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":10, "ts":1682376183457912, "dur":623, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183458540, "dur":780, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/com.unity.cinemachine.editor.dll (+2 others)" }} +,{ "pid":12345, "tid":10, "ts":1682376183459320, "dur":142, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183459467, "dur":1070, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/com.unity.cinemachine.editor.dll (+pdb)" }} +,{ "pid":12345, "tid":10, "ts":1682376183460537, "dur":132, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183460672, "dur":1192, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Environments.Internal.dll (+pdb)" }} +,{ "pid":12345, "tid":10, "ts":1682376183461865, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183461949, "dur":1126, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/IngameDebugConsole.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":10, "ts":1682376183463075, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183463173, "dur":1049, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.VisualScripting.SettingsProvider.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":10, "ts":1682376183464222, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183464313, "dur":952, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Postprocessing.Runtime.dll (+pdb)" }} +,{ "pid":12345, "tid":10, "ts":1682376183465265, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183465341, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Threading.ref.dll_F1D7894C57B2A611.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183465346, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183465389, "dur":968, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.dll (+pdb)" }} +,{ "pid":12345, "tid":10, "ts":1682376183466357, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183466451, "dur":991, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Environments.dll (+pdb)" }} +,{ "pid":12345, "tid":10, "ts":1682376183467442, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183467537, "dur":1269, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Scheduler.dll (+pdb)" }} +,{ "pid":12345, "tid":10, "ts":1682376183468806, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183468914, "dur":1012, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/AwesomeTechnologies.TouchReactSystemPro.Runtime.dll (+pdb)" }} +,{ "pid":12345, "tid":10, "ts":1682376183469926, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183470022, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/AwesomeTechnologies.TouchReactSystemPro.Runtime.dll" }} +,{ "pid":12345, "tid":10, "ts":1682376183470026, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183470079, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Timeline.dll" }} +,{ "pid":12345, "tid":10, "ts":1682376183470083, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183470127, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Scheduler.dll" }} +,{ "pid":12345, "tid":10, "ts":1682376183470130, "dur":385, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183470516, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Mathematics.Editor.pdb" }} +,{ "pid":12345, "tid":10, "ts":1682376183470522, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183470570, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.UI.pdb" }} +,{ "pid":12345, "tid":10, "ts":1682376183470574, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183470625, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Postprocessing.Editor.pdb" }} +,{ "pid":12345, "tid":10, "ts":1682376183470629, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183470675, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TerrainTools.dll" }} +,{ "pid":12345, "tid":10, "ts":1682376183470679, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183470722, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Universal.Shaders.dll" }} +,{ "pid":12345, "tid":10, "ts":1682376183470726, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183470774, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Searcher.Editor.dll" }} +,{ "pid":12345, "tid":10, "ts":1682376183470778, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183470821, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.pdb" }} +,{ "pid":12345, "tid":10, "ts":1682376183470826, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183470881, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.Monetization.pdb" }} +,{ "pid":12345, "tid":10, "ts":1682376183470885, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183470944, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/PPv2URPConverters.dll" }} +,{ "pid":12345, "tid":10, "ts":1682376183470947, "dur":180, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183471128, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/AwesomeTechnologies.TouchReactSystemPro.Editor.pdb" }} +,{ "pid":12345, "tid":10, "ts":1682376183471131, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183471181, "dur":199, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183471380, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183471424, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.InputSystem.pdb" }} +,{ "pid":12345, "tid":10, "ts":1682376183471427, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183471469, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/AwesomeTechnologies.VegetationStudioPro.Runtime.dll" }} +,{ "pid":12345, "tid":10, "ts":1682376183471524, "dur":134, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183471660, "dur":174, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Monetization.dll.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183471834, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183471930, "dur":154, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183472085, "dur":39, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183472126, "dur":194, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.dll.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183472320, "dur":36, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183472358, "dur":123, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183472481, "dur":36, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183472518, "dur":170, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Analytics.dll.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183472688, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183472733, "dur":147, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Runtime.dll.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183472880, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183472939, "dur":180, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/XNodeEditor.dll.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183473119, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183473165, "dur":206, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183473372, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183473425, "dur":118, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Runtime.dll.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183473544, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183473592, "dur":2488673, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183399831, "dur":7800, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183407634, "dur":1407, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183409042, "dur":1120, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183410162, "dur":1234, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183411397, "dur":1054, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183412451, "dur":1060, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183413511, "dur":1141, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183414653, "dur":1020, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183415673, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183415746, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183415790, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.AdditionalFile.txt" }} +,{ "pid":12345, "tid":11, "ts":1682376183415797, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183415854, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.AdditionalFile.txt" }} +,{ "pid":12345, "tid":11, "ts":1682376183415854, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183415910, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Runtime.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183415992, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183416049, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_F873B6288A1F0DEC.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183416124, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183416169, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_5231952EBA63784C.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183416256, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183416309, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_88BDD9048955E25C.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183416364, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183416414, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_BF16752592C060F3.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183416475, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183416525, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_1272E56355894F7E.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183416595, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183416655, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsNativeModule.dll_AFB66C57C90545AC.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183416716, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183416808, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_D9605C8BD6941FC1.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183416873, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183416936, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_8338E12FFF25C701.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183416942, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183416994, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_A2718EADF8CB71E0.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183416999, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183417066, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Collections.LowLevel.ILSupport.dll_7CAE04E2593369CB.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183417131, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183417187, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.AdditionalFile.txt" }} +,{ "pid":12345, "tid":11, "ts":1682376183417188, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183417240, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":11, "ts":1682376183417245, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183417289, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Utilities.AdditionalFile.txt" }} +,{ "pid":12345, "tid":11, "ts":1682376183417295, "dur":39, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183417335, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Runtime.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183417421, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183417466, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183417521, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183417575, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":11, "ts":1682376183417576, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183417622, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.AdditionalFile.txt" }} +,{ "pid":12345, "tid":11, "ts":1682376183417623, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183417667, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":11, "ts":1682376183417668, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183417716, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Runtime.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183417772, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183417818, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.AdditionalFile.txt" }} +,{ "pid":12345, "tid":11, "ts":1682376183417819, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183417867, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183417922, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183417967, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":11, "ts":1682376183417968, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183418014, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":11, "ts":1682376183418019, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183418076, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Telemetry.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183418139, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183418187, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Scheduler.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183418249, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183418298, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.Internal.AdditionalFile.txt" }} +,{ "pid":12345, "tid":11, "ts":1682376183418304, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183418354, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Editor.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183418406, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183418460, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-firstpass.AdditionalFile.txt" }} +,{ "pid":12345, "tid":11, "ts":1682376183418461, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183418519, "dur":147, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183418666, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183418717, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/5689786774259947410.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183418785, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183418827, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/15394042617203071315.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183418890, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183418940, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/17346584914308636752.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183419002, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183419056, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/1687297622542971368.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183419120, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183419163, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2240406767038398906.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183419225, "dur":39, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183419265, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/4691676790321305727.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183419341, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183419387, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/3388064732626934676.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183419458, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183419498, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/17525389461119239690.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183419565, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183419606, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2820980864601610537.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183419665, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183419709, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/4014436084419441659.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183419766, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183419813, "dur":25, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor-firstpass.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183419838, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183419885, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183419899, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183419964, "dur":17, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183419981, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183420043, "dur":16, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsEditmode.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183420059, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183420109, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsEditor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183420123, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183420177, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183420190, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183420244, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Shaders.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183420258, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183420306, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183420317, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183420361, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183420374, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183420423, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183420436, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183420480, "dur":1164, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183421644, "dur":1492, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183423136, "dur":1352, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183424490, "dur":1048, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183425539, "dur":977, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183426516, "dur":1061, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183427577, "dur":1035, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183428612, "dur":1010, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183429623, "dur":1004, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183430628, "dur":1073, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183431701, "dur":1571, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183433272, "dur":1027, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183434299, "dur":1061, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183435360, "dur":1067, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183436427, "dur":1066, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183437494, "dur":1104, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183438599, "dur":1058, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183439657, "dur":1009, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183440667, "dur":1051, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183441718, "dur":1016, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183442734, "dur":1139, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183443874, "dur":1088, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183444962, "dur":952, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183445914, "dur":1012, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183446927, "dur":996, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183447923, "dur":14, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183447937, "dur":21, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183447958, "dur":31, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183447990, "dur":23, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183448014, "dur":20, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183448034, "dur":14, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183448048, "dur":39, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183448087, "dur":16, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183448103, "dur":15, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183448118, "dur":13, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183448131, "dur":10, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183448141, "dur":9, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183448150, "dur":15, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183448165, "dur":611, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183448776, "dur":687, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Utilities.dll (+2 others)" }} +,{ "pid":12345, "tid":11, "ts":1682376183449463, "dur":229, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183449695, "dur":630, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.dll (+2 others)" }} +,{ "pid":12345, "tid":11, "ts":1682376183450325, "dur":160, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183450487, "dur":1102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll (+2 others)" }} +,{ "pid":12345, "tid":11, "ts":1682376183451590, "dur":393, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183451986, "dur":4252, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.dll (+2 others)" }} +,{ "pid":12345, "tid":11, "ts":1682376183456238, "dur":127, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183456369, "dur":723, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":11, "ts":1682376183457092, "dur":150, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183457245, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.ref.dll_1E6ED5409D07C9A3.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183457252, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183457301, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.Editor.ref.dll_EDC8690F57C5BDFD.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183457306, "dur":39, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183457348, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Environments.Internal.ref.dll_E1932F3567E8EA54.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183457356, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183457399, "dur":970, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.InputSystem.dll (+pdb)" }} +,{ "pid":12345, "tid":11, "ts":1682376183458369, "dur":129, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183458501, "dur":9, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Networking.ref.dll_9223E05EC4657081.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183458510, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183458555, "dur":752, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/PPv2URPConverters.dll (+2 others)" }} +,{ "pid":12345, "tid":11, "ts":1682376183459307, "dur":1039, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183460350, "dur":1220, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/PPv2URPConverters.dll (+pdb)" }} +,{ "pid":12345, "tid":11, "ts":1682376183461571, "dur":183, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183461757, "dur":1016, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/XNode.dll (+pdb)" }} +,{ "pid":12345, "tid":11, "ts":1682376183462774, "dur":212, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183462990, "dur":1046, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/MeshBakerCore.dll (+pdb)" }} +,{ "pid":12345, "tid":11, "ts":1682376183464036, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183464125, "dur":1024, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.RenderPipelines.Universal.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":11, "ts":1682376183465149, "dur":205, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183465358, "dur":1104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Mathematics.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":11, "ts":1682376183466462, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183466574, "dur":1106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.EditorCoroutines.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":11, "ts":1682376183467680, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183467803, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Registration.ref.dll_0EE1D1878B496356.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183467813, "dur":39, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183467853, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Device.ref.dll_EC89AF6B778C7413.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183467859, "dur":36, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183467898, "dur":1018, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.VisualScripting.Flow.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":11, "ts":1682376183468916, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183469014, "dur":911, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/UnityEngine.Advertisements.dll (+pdb)" }} +,{ "pid":12345, "tid":11, "ts":1682376183469925, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183470013, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.Advertisements.dll" }} +,{ "pid":12345, "tid":11, "ts":1682376183470015, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183470057, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Timeline.Editor.dll" }} +,{ "pid":12345, "tid":11, "ts":1682376183470059, "dur":39, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183470098, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Flow.Editor.dll" }} +,{ "pid":12345, "tid":11, "ts":1682376183470102, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183470148, "dur":224, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183470372, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183470413, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsExamples.dll" }} +,{ "pid":12345, "tid":11, "ts":1682376183470423, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183470466, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.Editor.dll" }} +,{ "pid":12345, "tid":11, "ts":1682376183470468, "dur":317, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183470786, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/MeshBakerCore.pdb" }} +,{ "pid":12345, "tid":11, "ts":1682376183470789, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183470840, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/IngameDebugConsole.Editor.pdb" }} +,{ "pid":12345, "tid":11, "ts":1682376183470843, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183470892, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.PlasticSCM.Editor.pdb" }} +,{ "pid":12345, "tid":11, "ts":1682376183470895, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183470945, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/PPv2URPConverters.pdb" }} +,{ "pid":12345, "tid":11, "ts":1682376183470949, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183471002, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Mathematics.dll" }} +,{ "pid":12345, "tid":11, "ts":1682376183471005, "dur":34, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183471039, "dur":9, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Mathematics.pdb" }} +,{ "pid":12345, "tid":11, "ts":1682376183471048, "dur":28, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183471076, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/IngameDebugConsole.Runtime.pdb" }} +,{ "pid":12345, "tid":11, "ts":1682376183471078, "dur":39, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183471118, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/AwesomeTechnologies.TouchReactSystemPro.Editor.dll" }} +,{ "pid":12345, "tid":11, "ts":1682376183471120, "dur":38, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183471158, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Registration.pdb" }} +,{ "pid":12345, "tid":11, "ts":1682376183471162, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183471205, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/AwesomeTechnologies.VegetationStudioPro.Editor.pdb" }} +,{ "pid":12345, "tid":11, "ts":1682376183471209, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183471255, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipeline.Universal.ShaderLibrary.pdb" }} +,{ "pid":12345, "tid":11, "ts":1682376183471259, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183471303, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsTestsPlaymode.pdb" }} +,{ "pid":12345, "tid":11, "ts":1682376183471306, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183471347, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.State.dll" }} +,{ "pid":12345, "tid":11, "ts":1682376183471349, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183471391, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.InputSystem.dll" }} +,{ "pid":12345, "tid":11, "ts":1682376183471394, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183471439, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.BurstCompatibilityGen.dll" }} +,{ "pid":12345, "tid":11, "ts":1682376183471441, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183471501, "dur":198, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183471699, "dur":132, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183471833, "dur":170, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.dll.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183472003, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183472050, "dur":158, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Device.dll.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183472208, "dur":212, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183472422, "dur":116, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.CodeGen.dll.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183472539, "dur":242, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183472782, "dur":134, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183472916, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183472960, "dur":175, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.dll.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183473135, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183473178, "dur":149, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsPlaymode.dll.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183473327, "dur":38, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183473366, "dur":152, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamplesEditor.dll.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183473519, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183473565, "dur":2488679, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183399855, "dur":7786, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183407642, "dur":1268, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183408910, "dur":1186, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183410096, "dur":1275, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183411372, "dur":1145, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183412518, "dur":1127, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183413645, "dur":1146, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183414792, "dur":1051, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183415844, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183415914, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183415969, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_A3EB090C176694B8.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183416066, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183416134, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIServiceModule.dll_3165C78B73565E06.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183416195, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183416248, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_35BDE2BFB5416E2A.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183416327, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183416374, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_E376B04D52552E3D.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183416440, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183416489, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_EBA8B3C420D837BC.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183416543, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183416593, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_F15AEC68C07E8599.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183416657, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183416702, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_E37F9EEB2CBB739B.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183416759, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183416813, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_1B143E6B897C8CD1.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183416874, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183416935, "dur":9, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_86930378C91DA973.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183416944, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183417000, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_AE1AD5A12B4FF4D2.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183417064, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183417136, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_CF5227D341231F89.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183417208, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183417264, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Editor.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183417347, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183417394, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":12, "ts":1682376183417395, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183417445, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.Editor.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183417505, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183417551, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":12, "ts":1682376183417559, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183417606, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183417669, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183417723, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Cinemachine.AdditionalFile.txt" }} +,{ "pid":12345, "tid":12, "ts":1682376183417724, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183417768, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/XNode.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183417821, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183417874, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":12, "ts":1682376183417875, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183417928, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183417990, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183418042, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":12, "ts":1682376183418043, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183418090, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.ShaderLibrary.AdditionalFile.txt" }} +,{ "pid":12345, "tid":12, "ts":1682376183418095, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183418146, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.2D.Sprite.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":12, "ts":1682376183418147, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183418194, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/XNodeEditor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":12, "ts":1682376183418195, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183418236, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":12, "ts":1682376183418241, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183418293, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/com.unity.cinemachine.editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":12, "ts":1682376183418294, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183418339, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/SimpleJSON.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183418391, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183418438, "dur":48, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Registration.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183418486, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183418529, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.BurstCompatibilityGen.AdditionalFile.txt" }} +,{ "pid":12345, "tid":12, "ts":1682376183418530, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183418579, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsPlaymode.AdditionalFile.txt" }} +,{ "pid":12345, "tid":12, "ts":1682376183418579, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183418635, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":12, "ts":1682376183418635, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183418684, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/320441126896875025.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183418759, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183418810, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/5546506141355401238.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183418877, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183418924, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/9111662996337956171.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183418986, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183419030, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/4059091172732495669.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183419095, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183419140, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/9321109326917711913.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183419211, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183419256, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/8654950501350094070.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183419340, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183419388, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/4494907431374462528.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183419450, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183419493, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/9703144790800738880.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183419553, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183419606, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/8029443090779585774.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183419665, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183419709, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/17242669345997350737.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183419769, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183419816, "dur":16, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183419832, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183419884, "dur":16, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Internal.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183419900, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183419957, "dur":18, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183419975, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183420029, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183420040, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183420085, "dur":17, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Threading.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183420102, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183420152, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183420163, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183420217, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Utilities.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183420228, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183420280, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183420291, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183420341, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/MeshBakerCore.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183420353, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183420403, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183420414, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183420472, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.BurstCompatibilityGen.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183420484, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183420535, "dur":1157, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183421692, "dur":1465, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183423158, "dur":1045, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183424204, "dur":1086, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183425290, "dur":1725, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183427015, "dur":1309, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183428325, "dur":1115, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183429440, "dur":1512, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183430952, "dur":1210, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183432163, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_E55D0F7C63F01D9E.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183432171, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183432232, "dur":206, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183432438, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183432487, "dur":1492, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183433979, "dur":1138, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183435118, "dur":1082, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183436200, "dur":1052, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183437253, "dur":1085, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183438339, "dur":1694, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183440034, "dur":1076, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183441111, "dur":3918, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183445030, "dur":5789, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183450820, "dur":671, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/XNode.dll (+2 others)" }} +,{ "pid":12345, "tid":12, "ts":1682376183451491, "dur":683, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183452178, "dur":1361, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":12, "ts":1682376183453540, "dur":227, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183453772, "dur":680, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":12, "ts":1682376183454452, "dur":323, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183454779, "dur":4447, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":12, "ts":1682376183459226, "dur":237, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183459471, "dur":1033, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/AwesomeTechnologies.VegetationStudioPro.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":12, "ts":1682376183460504, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183460601, "dur":3251, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":12, "ts":1682376183463852, "dur":3603, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183467462, "dur":3625, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.VisualScripting.Flow.dll (+pdb)" }} +,{ "pid":12345, "tid":12, "ts":1682376183471088, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183471189, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Flow.dll" }} +,{ "pid":12345, "tid":12, "ts":1682376183471191, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183471238, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Burst.dll" }} +,{ "pid":12345, "tid":12, "ts":1682376183471241, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183471288, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Networking.dll" }} +,{ "pid":12345, "tid":12, "ts":1682376183471291, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183471333, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/XNodeEditor.pdb" }} +,{ "pid":12345, "tid":12, "ts":1682376183471336, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183471385, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.DocCodeSamples.pdb" }} +,{ "pid":12345, "tid":12, "ts":1682376183471388, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183471451, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/AwesomeTechnologies.VegetationStudioPro.Runtime.pdb" }} +,{ "pid":12345, "tid":12, "ts":1682376183471455, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183471551, "dur":247, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183471798, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183471851, "dur":166, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183472017, "dur":115, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183472133, "dur":148, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Telemetry.dll.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183472281, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183472338, "dur":140, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183472478, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183472532, "dur":132, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Internal.dll.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183472664, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183472712, "dur":140, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183472852, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183472897, "dur":141, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183473038, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183473089, "dur":158, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.ShaderLibrary.dll.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183473247, "dur":115, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183473364, "dur":167, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183473532, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183473582, "dur":2488691, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185980522, "dur":6577, "ph":"X", "name": "ProfilerWriteOutput" } , \ No newline at end of file diff --git a/Library/Bee/fullprofile.json b/Library/Bee/fullprofile.json index b9723ac3af..5bf3316062 100644 --- a/Library/Bee/fullprofile.json +++ b/Library/Bee/fullprofile.json @@ -9,2522 +9,2420 @@ { "pid": 0, "tid": -1, "ph": "M", "name": "process_name", "args": { "name": "BeeDriver" } }, { "pid": 0, "tid": -1, "ph": "M", "name": "process_sort_index", "args": { "sort_index": "-2" } }, { "pid": 0, "tid": 1, "ph": "M", "name": "thread_name", "args": { "name": "" } }, -{ "pid": 0, "tid": 1, "ts": 1682192856685326, "dur": 10424281, "ph": "X", "name": "Build ScriptAssemblies", "args": {} }, -{ "pid": 0, "tid": 1, "ts": 1682192856686882, "dur": 111978, "ph": "X", "name": "WriteBuildProgramData", "args": {} }, -{ "pid": 0, "tid": 1, "ts": 1682192856799018, "dur": 10210256, "ph": "X", "name": "Run Backend", "args": {} }, -{ "pid": 0, "tid": 1, "ts": 1682192867009293, "dur": 100314, "ph": "X", "name": "Finish", "args": {} }, -{ "pid": 0, "tid": 1, "ts": 1682192867111529, "dur": 1006, "ph": "X", "name": "ChromeTraceHeader", "args": {} }, -{ "pid": 0, "tid": 1, "ts": 1682192867115635, "dur": 1008, "ph": "X", "name": "", "args": {} }, +{ "pid": 0, "tid": 1, "ts": 1682376183244755, "dur": 2858444, "ph": "X", "name": "Build ScriptAssemblies", "args": {} }, +{ "pid": 0, "tid": 1, "ts": 1682376183246173, "dur": 109951, "ph": "X", "name": "WriteBuildProgramData", "args": {} }, +{ "pid": 0, "tid": 1, "ts": 1682376183356361, "dur": 2646218, "ph": "X", "name": "Run Backend", "args": {} }, +{ "pid": 0, "tid": 1, "ts": 1682376186002597, "dur": 100602, "ph": "X", "name": "Finish", "args": {} }, +{ "pid": 0, "tid": 1, "ts": 1682376186105187, "dur": 1038, "ph": "X", "name": "ChromeTraceHeader", "args": {} }, +{ "pid": 0, "tid": 1, "ts": 1682376186109426, "dur": 978, "ph": "X", "name": "", "args": {} }, { "cat":"", "pid":12345, "tid":0, "ts":0, "ph":"M", "name":"process_name", "args": { "name":"bee_backend" } } -,{ "pid":12345, "tid":0, "ts":1682192856849167, "dur":1912, "ph":"X", "name": "DriverInitData", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192856851092, "dur":2733, "ph":"X", "name": "Tundra", "args": { "detail":"RemoveStaleOutputs" }} -,{ "pid":12345, "tid":0, "ts":1682192856854044, "dur":292, "ph":"X", "name": "Tundra", "args": { "detail":"PrepareNodes" }} -,{ "pid":12345, "tid":0, "ts":1682192856854336, "dur":423, "ph":"X", "name": "Tundra", "args": { "detail":"BuildQueueInit" }} -,{ "pid":12345, "tid":0, "ts":1682192856854779, "dur":9854, "ph":"X", "name": "EnqueueRequestedNodes", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192856864634, "dur":14, "ph":"X", "name": "SortWorkingStack", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947020, "dur":314, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947334, "dur":61, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947395, "dur":11, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947406, "dur":27, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947433, "dur":3, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947436, "dur":8, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947444, "dur":2, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947446, "dur":5, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947451, "dur":3, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947454, "dur":9, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947463, "dur":2, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947465, "dur":14, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947479, "dur":48, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947527, "dur":7, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947534, "dur":2, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947536, "dur":7, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947543, "dur":3, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947546, "dur":6, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947552, "dur":5, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947557, "dur":6, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947563, "dur":3, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947566, "dur":7, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947573, "dur":3, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947576, "dur":6, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947582, "dur":0, "ph":"X", "name": "SharedResourceDestroy", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947597, "dur":89, "ph":"X", "name": "BuildQueueDestroyTail", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866947730, "dur":13870, "ph":"X", "name": "Tundra", "args": { "detail":"Write AllBuiltNodes" }} -,{ "pid":12345, "tid":1, "ts":1682192856855027, "dur":9633, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856864663, "dur":9605, "ph":"X", "name": "CheckDagSignatures", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856874279, "dur":9, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.AdditionalFile.txt" }} -,{ "pid":12345, "tid":1, "ts":1682192856874291, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856874413, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.AdditionalFile.txt" }} -,{ "pid":12345, "tid":1, "ts":1682192856874414, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856874523, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.AdditionalFile.txt" }} -,{ "pid":12345, "tid":1, "ts":1682192856874524, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856874607, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.AdditionalFile.txt" }} -,{ "pid":12345, "tid":1, "ts":1682192856874612, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856874700, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.AdditionalFile.txt" }} -,{ "pid":12345, "tid":1, "ts":1682192856874701, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856874779, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.InputSystem.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856874866, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856874955, "dur":134, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856875089, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856875183, "dur":196, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_0E48623D57FCC35A.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1682192856875380, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856875479, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIServiceModule.dll_3165C78B73565E06.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1682192856875562, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856875658, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_A9F454FA4AC4590B.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1682192856875729, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856875817, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_70CDE4D512829611.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1682192856875895, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856875983, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_F3B9433ACCF684E0.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1682192856876052, "dur":112, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856876166, "dur":175, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_377437F4532567A1.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1682192856876342, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856876433, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_C45AD6F499D71C2C.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1682192856876530, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856876629, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_EBF52E2449EDFFEE.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1682192856876686, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856876770, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_A58D266661D75B4B.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1682192856876824, "dur":370, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856877197, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_8338E12FFF25C701.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1682192856877202, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856877289, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.CodeGen.AdditionalFile.txt" }} -,{ "pid":12345, "tid":1, "ts":1682192856877290, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856877375, "dur":1271, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Burst.Cecil.dll_8CDBB33055545F87.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1682192856878646, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856878776, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.AdditionalFile.txt" }} -,{ "pid":12345, "tid":1, "ts":1682192856878782, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856878868, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Runtime.AdditionalFile.txt" }} -,{ "pid":12345, "tid":1, "ts":1682192856878870, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856878965, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Runtime.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856879017, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856879100, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamples.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856879158, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856879253, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.AdditionalFile.txt" }} -,{ "pid":12345, "tid":1, "ts":1682192856879254, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856879339, "dur":49, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856879389, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856879467, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856879525, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856879607, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.Editor.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856879658, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856879738, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":1, "ts":1682192856879739, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856879813, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856879867, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856879947, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":1, "ts":1682192856879951, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856880041, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.2D.Sprite.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":1, "ts":1682192856880042, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856880121, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Scheduler.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856880173, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856880260, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamplesEditor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":1, "ts":1682192856880265, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856880353, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.Internal.AdditionalFile.txt" }} -,{ "pid":12345, "tid":1, "ts":1682192856880358, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856880458, "dur":45, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/SimpleJSON.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856880503, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856880581, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.Editor.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856880633, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856880717, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":1, "ts":1682192856880718, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856880798, "dur":114, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856880912, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856880979, "dur":47, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsPlaymode.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856881026, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856881122, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/12540594754886937326.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856881212, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856881318, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/17471587741674112842.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856881385, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856881468, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/15394042617203071315.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856881527, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856881622, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/6591615775254759062.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856881687, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856881780, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/1687297622542971368.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856881847, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856881935, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/9347744537272444272.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856882004, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856882105, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/1723042715960067801.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856882179, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856882266, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/4691676790321305727.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856882328, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856882400, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/10010842633742469623.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856882454, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856882533, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/1907345496941296335.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856882588, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856882666, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/9703144790800738880.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856882730, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856882850, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/4425289655808235400.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856882912, "dur":506, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856883419, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.CodeGen.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856883429, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856883530, "dur":15, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856883546, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856883659, "dur":183, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856883842, "dur":688, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856884531, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponents.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":1, "ts":1682192856884543, "dur":1274, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856885818, "dur":3850, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856889669, "dur":1567, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856891237, "dur":3793, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856895031, "dur":4175, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856899206, "dur":1961, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856901168, "dur":2667, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856903835, "dur":3105, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856906940, "dur":1648, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856908589, "dur":2934, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856911523, "dur":1961, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856913485, "dur":1932, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856915417, "dur":1796, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856917214, "dur":2726, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856919940, "dur":2263, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856922204, "dur":2206, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856924411, "dur":2081, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856926492, "dur":7160, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856933653, "dur":1857, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856935510, "dur":1888, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856937398, "dur":2076, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856939475, "dur":1724, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856941200, "dur":1540, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856942741, "dur":2701, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856945443, "dur":14752, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.dll (+2 others)" }} -,{ "pid":12345, "tid":1, "ts":1682192856960196, "dur":224, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856960434, "dur":6117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.dll (+2 others)" }} -,{ "pid":12345, "tid":1, "ts":1682192856966552, "dur":166, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856966733, "dur":735, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.CodeGen.dll (+2 others)" }} -,{ "pid":12345, "tid":1, "ts":1682192856967468, "dur":207, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856967696, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Collections.ref.dll_656D7410E7809ECD.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1682192856967703, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856967794, "dur":512, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.DocCodeSamples.dll (+2 others)" }} -,{ "pid":12345, "tid":1, "ts":1682192856968306, "dur":245, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856968553, "dur":826, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Collections.DocCodeSamples.dll (+pdb)" }} -,{ "pid":12345, "tid":1, "ts":1682192856969379, "dur":180, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856969561, "dur":804, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.TerrainTools.dll (+pdb)" }} -,{ "pid":12345, "tid":1, "ts":1682192856970365, "dur":169, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856970537, "dur":885, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/UnityEngine.Advertisements.dll (+pdb)" }} -,{ "pid":12345, "tid":1, "ts":1682192856971423, "dur":163, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856971589, "dur":1084, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/SimpleJSON.dll (+pdb)" }} -,{ "pid":12345, "tid":1, "ts":1682192856972674, "dur":151, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856972828, "dur":1147, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Networking.dll (+pdb)" }} -,{ "pid":12345, "tid":1, "ts":1682192856973976, "dur":165, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856974143, "dur":1006, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Threading.dll (+pdb)" }} -,{ "pid":12345, "tid":1, "ts":1682192856975149, "dur":161, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856975312, "dur":948, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Telemetry.dll (+pdb)" }} -,{ "pid":12345, "tid":1, "ts":1682192856976261, "dur":1483, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856977748, "dur":987, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/UnityEngine.UI.dll (+pdb)" }} -,{ "pid":12345, "tid":1, "ts":1682192856978735, "dur":140, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856978877, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.UI.pdb" }} -,{ "pid":12345, "tid":1, "ts":1682192856978880, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856978931, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.Advertisements.Editor.pdb" }} -,{ "pid":12345, "tid":1, "ts":1682192856978934, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856979008, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/JBooth.ShaderPackager.Editor.dll" }} -,{ "pid":12345, "tid":1, "ts":1682192856979012, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856979058, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Analytics.pdb" }} -,{ "pid":12345, "tid":1, "ts":1682192856979063, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856979115, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Editor.pdb" }} -,{ "pid":12345, "tid":1, "ts":1682192856979120, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856979171, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Configuration.dll" }} -,{ "pid":12345, "tid":1, "ts":1682192856979175, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856979227, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/XNodeEditor.dll" }} -,{ "pid":12345, "tid":1, "ts":1682192856979231, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856979285, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.2D.Sprite.Editor.pdb" }} -,{ "pid":12345, "tid":1, "ts":1682192856979289, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856979342, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Mathematics.Editor.dll" }} -,{ "pid":12345, "tid":1, "ts":1682192856979346, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856979399, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Mathematics.dll" }} -,{ "pid":12345, "tid":1, "ts":1682192856979403, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856979449, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Core.ShaderLibrary.dll" }} -,{ "pid":12345, "tid":1, "ts":1682192856979454, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856979501, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.Advertisements.DevX.Editor.pdb" }} -,{ "pid":12345, "tid":1, "ts":1682192856979505, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856979552, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.Advertisements.dll" }} -,{ "pid":12345, "tid":1, "ts":1682192856979556, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856979599, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/XNode.pdb" }} -,{ "pid":12345, "tid":1, "ts":1682192856979603, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856979646, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.BurstCompatibilityGen.pdb" }} -,{ "pid":12345, "tid":1, "ts":1682192856979650, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856979693, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.Editor.pdb" }} -,{ "pid":12345, "tid":1, "ts":1682192856979697, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856979738, "dur":147, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.CodeGen.dll.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1682192856979885, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856979976, "dur":2143, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856982120, "dur":2097, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856984218, "dur":291, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856984510, "dur":124, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856984634, "dur":940, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856985575, "dur":944, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856986520, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/IngameDebugConsole.Runtime.dll" }} -,{ "pid":12345, "tid":1, "ts":1682192856986524, "dur":284, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856986810, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/IngameDebugConsole.Runtime.pdb" }} -,{ "pid":12345, "tid":1, "ts":1682192856986818, "dur":158, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856986979, "dur":148, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856987128, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipelines.Core.Editor.ref.dll_46EB9B6930B27991.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1682192856987137, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856987243, "dur":159, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1682192856987402, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856987496, "dur":287, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856987783, "dur":980, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.RenderPipelines.Universal.Runtime.dll (+pdb)" }} -,{ "pid":12345, "tid":1, "ts":1682192856988763, "dur":170, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856988937, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Universal.Runtime.dll" }} -,{ "pid":12345, "tid":1, "ts":1682192856988942, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856988994, "dur":940, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.VisualScripting.Core.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":1, "ts":1682192856989934, "dur":220, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856990157, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Core.Editor.pdb" }} -,{ "pid":12345, "tid":1, "ts":1682192856990162, "dur":498, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856990661, "dur":217, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856990878, "dur":943, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.VisualScripting.SettingsProvider.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":1, "ts":1682192856991821, "dur":169, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856991992, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.SettingsProvider.Editor.dll" }} -,{ "pid":12345, "tid":1, "ts":1682192856991995, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856992044, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.SettingsProvider.Editor.pdb" }} -,{ "pid":12345, "tid":1, "ts":1682192856992047, "dur":218, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856992267, "dur":342, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856992610, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/com.unity.cinemachine.editor.dll" }} -,{ "pid":12345, "tid":1, "ts":1682192856992612, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856992655, "dur":220, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1682192856992875, "dur":9954200, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856855118, "dur":9571, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856864692, "dur":2860, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856867552, "dur":1076, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856868629, "dur":2510, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856871140, "dur":3211, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856874352, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.AdditionalFile.txt" }} -,{ "pid":12345, "tid":2, "ts":1682192856874359, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856874453, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856874509, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856874595, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856874651, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856874729, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856874787, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856874872, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Runtime.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856874943, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856875032, "dur":543, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_A3EB090C176694B8.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856875575, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856875667, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_1995F9C75FCB21B4.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856875733, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856875822, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.dll_D4D920E74F94F16C.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856875897, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856875992, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_E376B04D52552E3D.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856876057, "dur":117, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856876177, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_EBA8B3C420D837BC.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856876283, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856876397, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_1272E56355894F7E.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856876462, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856876563, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_16B146CB58B58B75.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856876628, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856876720, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_E37F9EEB2CBB739B.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856876801, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856876918, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_09D0CB44C5F2096A.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856876984, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856877082, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_3EC754A9EBA88566.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856877142, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856877232, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_718617AE74E2D2C4.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856877304, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856877391, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Burst.Cecil.Pdb.dll_5DB01481FCEACE07.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856877446, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856877536, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Burst.Unsafe.dll_101A915279CBC7DC.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856877587, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856877691, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_905A726CBE6280BB.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856877753, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856877843, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":2, "ts":1682192856877849, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856877934, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Searcher.Editor.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856877994, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856878092, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":2, "ts":1682192856878093, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856878184, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":2, "ts":1682192856878185, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856878289, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856878346, "dur":145, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856878492, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_3025156E42E53A65.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856878500, "dur":156, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856878662, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856878719, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856878820, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":2, "ts":1682192856878822, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856878905, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Cinemachine.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856878963, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856879047, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/XNode.AdditionalFile.txt" }} -,{ "pid":12345, "tid":2, "ts":1682192856879053, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856879138, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856879196, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856879283, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsEditor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":2, "ts":1682192856879284, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856879372, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":2, "ts":1682192856879373, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856879455, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.ShaderLibrary.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856879511, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856879606, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":2, "ts":1682192856879607, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856879704, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":2, "ts":1682192856879705, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856879799, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856879856, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856879939, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.ShaderLibrary.AdditionalFile.txt" }} -,{ "pid":12345, "tid":2, "ts":1682192856879946, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856880032, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Monetization.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856880086, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856880166, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/XNodeEditor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":2, "ts":1682192856880167, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856880242, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Editor.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856880304, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856880460, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/SimpleJSON.AdditionalFile.txt" }} -,{ "pid":12345, "tid":2, "ts":1682192856880461, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856880558, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/MeshBakerEditor.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856880614, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856880711, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-firstpass.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856880765, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856880855, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsEditmode.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856880906, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856881000, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":2, "ts":1682192856881001, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856881076, "dur":47, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.DevX.Editor.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856881123, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856881232, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/16880971569482824950.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856881293, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856881371, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2084921166946444769.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856881434, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856881510, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/9870516708743257357.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856881570, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856881640, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/1418726328684876121.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856881701, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856881785, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/3119559315184918665.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856881850, "dur":252, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856882103, "dur":162, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/6947401630772442630.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856882265, "dur":377, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856882643, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/911446528535106498.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856882704, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856882840, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/17766336155681823506.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856882907, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856882998, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2820980864601610537.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856883057, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856883146, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/12062543880932173298.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856883201, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856883297, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamplesEditor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856883311, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856883392, "dur":24, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor-firstpass.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856883416, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856883493, "dur":19, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856883512, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856883588, "dur":18, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856883606, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856883691, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.2D.Sprite.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856883701, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856883789, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Runtime.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856883803, "dur":185, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856883990, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.CodeGen.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856884001, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856884103, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/MeshBakerEditor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856884117, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856884202, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856884217, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856884313, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Utilities.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856884324, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856884412, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Runtime.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856884424, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856884508, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856884520, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856884598, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/JBooth.ShaderPackager.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856884609, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856884690, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856884704, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856884786, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":2, "ts":1682192856884798, "dur":149, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856884949, "dur":3391, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856888341, "dur":6030, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856894372, "dur":2417, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856896790, "dur":5219, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856902010, "dur":1991, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856904002, "dur":4511, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856908514, "dur":3748, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856912263, "dur":5846, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856918110, "dur":2237, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856920348, "dur":1709, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856922058, "dur":13915, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856935974, "dur":5549, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856941524, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_193EC4CE382CBFB3.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856941532, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856941642, "dur":157, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856941799, "dur":128, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856941930, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEditor.TestRunner.pdb" }} -,{ "pid":12345, "tid":2, "ts":1682192856941933, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856942039, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEditor.TestRunner.dll" }} -,{ "pid":12345, "tid":2, "ts":1682192856942042, "dur":160, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856942204, "dur":2029, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856944233, "dur":1962, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856946196, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_4C98D3F7040CD4F5.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856946202, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856946324, "dur":531, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Searcher.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1682192856946856, "dur":234, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856947096, "dur":489, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Utilities.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1682192856947585, "dur":265, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856947854, "dur":469, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Runtime.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1682192856948323, "dur":236, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856948563, "dur":7073, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1682192856955637, "dur":209, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856955849, "dur":2044, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Monetization.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1682192856957894, "dur":1967, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856959865, "dur":17, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.Monetization.ref.dll_94F72C9EDBE6DB25.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856959882, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856959980, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856960090, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856960174, "dur":111, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Runtime.dll.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856960285, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856960385, "dur":578, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Threading.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1682192856960963, "dur":252, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856961218, "dur":793, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Networking.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1682192856962012, "dur":305, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856962319, "dur":9, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Networking.ref.dll_9223E05EC4657081.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856962328, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856962420, "dur":131, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/XNode.dll.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856962551, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856962636, "dur":133, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.dll.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856962769, "dur":221, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856962991, "dur":141, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsEditmode.dll.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856963132, "dur":290, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856963424, "dur":161, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Searcher.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856963585, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856963684, "dur":2205, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856965890, "dur":2101, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856967992, "dur":1180, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/AwesomeTechnologies.VegetationStudioPro.Runtime.dll (+pdb)" }} -,{ "pid":12345, "tid":2, "ts":1682192856969173, "dur":160, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856969335, "dur":906, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/NavMeshComponentsTestsEditmode.dll (+pdb)" }} -,{ "pid":12345, "tid":2, "ts":1682192856970241, "dur":151, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856970394, "dur":909, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.TextMeshPro.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":2, "ts":1682192856971304, "dur":142, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856971448, "dur":1195, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.TerrainTools.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":2, "ts":1682192856972643, "dur":133, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856972779, "dur":1242, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Mathematics.dll (+pdb)" }} -,{ "pid":12345, "tid":2, "ts":1682192856974021, "dur":160, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856974184, "dur":1037, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/NavMeshComponents.dll (+pdb)" }} -,{ "pid":12345, "tid":2, "ts":1682192856975221, "dur":383, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856975606, "dur":966, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/NavMeshComponentsExamplesEditor.dll (+pdb)" }} -,{ "pid":12345, "tid":2, "ts":1682192856976572, "dur":215, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856976790, "dur":1153, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Environments.dll (+pdb)" }} -,{ "pid":12345, "tid":2, "ts":1682192856977944, "dur":148, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856978094, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Environments.pdb" }} -,{ "pid":12345, "tid":2, "ts":1682192856978098, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856978148, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Environments.dll" }} -,{ "pid":12345, "tid":2, "ts":1682192856978151, "dur":644, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856978796, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Telemetry.pdb" }} -,{ "pid":12345, "tid":2, "ts":1682192856978799, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856978858, "dur":962, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Timeline.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":2, "ts":1682192856979820, "dur":158, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856979979, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Timeline.Editor.dll" }} -,{ "pid":12345, "tid":2, "ts":1682192856979982, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856980038, "dur":2078, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856982117, "dur":1882, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856983999, "dur":508, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856984508, "dur":120, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856984629, "dur":154, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Runtime.dll.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1682192856984783, "dur":151, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856984936, "dur":613, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856985549, "dur":457, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856986006, "dur":439, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856986446, "dur":2294, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1682192856988740, "dur":230, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856988981, "dur":860, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1682192856989842, "dur":224, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856990082, "dur":739, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1682192856990821, "dur":221, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856991056, "dur":536, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1682192856991593, "dur":226, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856991837, "dur":793, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-firstpass.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1682192856992630, "dur":198, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856992854, "dur":1135, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1682192856995256, "dur":163, "ph":"X", "name": "StoreTimestampsOfNonGeneratedInputFiles", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192856996572, "dur":8222677, "ph":"X", "name": "Csc", "args": { "detail":"Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1682192865240202, "dur":1195, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1682192865241398, "dur":125, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192865241525, "dur":230017, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp-Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":2, "ts":1682192865472141, "dur":92, "ph":"X", "name": "StoreTimestampsOfNonGeneratedInputFiles", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192865472309, "dur":1139997, "ph":"X", "name": "ILPostProcess", "args": { "detail":"Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp-Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":2, "ts":1682192866621416, "dur":259, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp-Editor.pdb" }} -,{ "pid":12345, "tid":2, "ts":1682192866621676, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1682192866621722, "dur":325313, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856855063, "dur":9607, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856864673, "dur":3170, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856867844, "dur":1291, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856869135, "dur":2082, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856871218, "dur":3102, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856874321, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.rsp" }} -,{ "pid":12345, "tid":3, "ts":1682192856874407, "dur":125, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856874544, "dur":34641, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll (+2 others)" }} -,{ "pid":12345, "tid":3, "ts":1682192856909186, "dur":243, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856909447, "dur":28955, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll (+2 others)" }} -,{ "pid":12345, "tid":3, "ts":1682192856938403, "dur":2830, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856941252, "dur":3750, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll (+2 others)" }} -,{ "pid":12345, "tid":3, "ts":1682192856945003, "dur":266, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856945295, "dur":6842, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.dll (+2 others)" }} -,{ "pid":12345, "tid":3, "ts":1682192856952138, "dur":173, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856952326, "dur":854, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.CodeGen.dll (+2 others)" }} -,{ "pid":12345, "tid":3, "ts":1682192856953180, "dur":219, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856953410, "dur":869, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsEditor.dll (+2 others)" }} -,{ "pid":12345, "tid":3, "ts":1682192856954280, "dur":207, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856954491, "dur":684, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll (+2 others)" }} -,{ "pid":12345, "tid":3, "ts":1682192856955175, "dur":333, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856955511, "dur":2999, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":3, "ts":1682192856958511, "dur":1869, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856960384, "dur":605, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Device.dll (+2 others)" }} -,{ "pid":12345, "tid":3, "ts":1682192856960989, "dur":252, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856961242, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Mathematics.ref.dll_E8EFDB1B8D5C174E.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1682192856961248, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856961332, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.Advertisements.Editor.ref.dll_95BDE7AB6BD0B967.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1682192856961338, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856961415, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Telemetry.ref.dll_FA20132DD923A4D2.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1682192856961421, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856961501, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Threading.ref.dll_F1D7894C57B2A611.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1682192856961506, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856961583, "dur":137, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1682192856961721, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856961809, "dur":205, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.dll.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1682192856962014, "dur":423, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856962438, "dur":190, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/MeshBakerEditor.dll.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1682192856962629, "dur":184, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856962815, "dur":24, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Scheduler.ref.dll_EE2AFA3B402F70E4.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1682192856962840, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856962939, "dur":189, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Registration.dll.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1682192856963128, "dur":299, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856963428, "dur":162, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Runtime.dll.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1682192856963590, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856963684, "dur":2009, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856965694, "dur":3367, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856969062, "dur":956, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Burst.dll (+pdb)" }} -,{ "pid":12345, "tid":3, "ts":1682192856970018, "dur":163, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856970183, "dur":946, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.PlasticSCM.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":3, "ts":1682192856971129, "dur":186, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856971319, "dur":995, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/UnityEngine.Advertisements.DevX.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":3, "ts":1682192856972314, "dur":175, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856972492, "dur":1782, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/NavMeshComponentsExamples.dll (+pdb)" }} -,{ "pid":12345, "tid":3, "ts":1682192856974274, "dur":140, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856974417, "dur":1053, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Configuration.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":3, "ts":1682192856975470, "dur":134, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856975608, "dur":966, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Device.dll (+pdb)" }} -,{ "pid":12345, "tid":3, "ts":1682192856976574, "dur":1356, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856977933, "dur":954, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":3, "ts":1682192856978887, "dur":225, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856979114, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Editor.dll" }} -,{ "pid":12345, "tid":3, "ts":1682192856979116, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856979171, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/AwesomeTechnologies.TouchReactSystemPro.Runtime.pdb" }} -,{ "pid":12345, "tid":3, "ts":1682192856979174, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856979228, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/XNodeEditor.pdb" }} -,{ "pid":12345, "tid":3, "ts":1682192856979230, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856979281, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll" }} -,{ "pid":12345, "tid":3, "ts":1682192856979283, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856979329, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Mathematics.Editor.pdb" }} -,{ "pid":12345, "tid":3, "ts":1682192856979332, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856979376, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll" }} -,{ "pid":12345, "tid":3, "ts":1682192856979379, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856979424, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/MeshBakerEditor.pdb" }} -,{ "pid":12345, "tid":3, "ts":1682192856979426, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856979476, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.pdb" }} -,{ "pid":12345, "tid":3, "ts":1682192856979478, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856979529, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Postprocessing.Runtime.dll" }} -,{ "pid":12345, "tid":3, "ts":1682192856979532, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856979576, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.PlasticSCM.Editor.pdb" }} -,{ "pid":12345, "tid":3, "ts":1682192856979579, "dur":393, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856979973, "dur":5478, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856985451, "dur":96, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856985548, "dur":1616, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.RenderPipelines.Core.Runtime.dll (+pdb)" }} -,{ "pid":12345, "tid":3, "ts":1682192856987164, "dur":155, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856987322, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Core.Runtime.dll" }} -,{ "pid":12345, "tid":3, "ts":1682192856987325, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856987375, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/IngameDebugConsole.Editor.dll" }} -,{ "pid":12345, "tid":3, "ts":1682192856987378, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856987419, "dur":469, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856987888, "dur":236, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856988124, "dur":815, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856988940, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Universal.Runtime.pdb" }} -,{ "pid":12345, "tid":3, "ts":1682192856988945, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856989001, "dur":228, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856989229, "dur":857, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856990086, "dur":110, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856990196, "dur":171, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1682192856990367, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856990457, "dur":162, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/PPv2URPConverters.dll.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1682192856990620, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856990712, "dur":354, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856991066, "dur":511, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856991577, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Universal.Editor.dll" }} -,{ "pid":12345, "tid":3, "ts":1682192856991580, "dur":201, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856991782, "dur":54, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856991836, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Shared.Editor.ref.dll_9669F6EBFF6DFFB7.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1682192856991843, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856991933, "dur":329, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-firstpass.dll.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1682192856992262, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856992377, "dur":474, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856992854, "dur":603, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp-firstpass.dll (+pdb)" }} -,{ "pid":12345, "tid":3, "ts":1682192856993457, "dur":121, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856993581, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp-firstpass.pdb" }} -,{ "pid":12345, "tid":3, "ts":1682192856993583, "dur":33, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1682192856993617, "dur":9953435, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856855101, "dur":9579, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856864683, "dur":2317, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856867000, "dur":1030, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856868031, "dur":1084, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856869116, "dur":2542, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856871659, "dur":2684, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856874344, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.rsp" }} -,{ "pid":12345, "tid":4, "ts":1682192856874414, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856874511, "dur":20642, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll (+2 others)" }} -,{ "pid":12345, "tid":4, "ts":1682192856895154, "dur":234, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856895405, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_08FEAA520A2EFD60.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1682192856895414, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856895533, "dur":3406, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856898940, "dur":2071, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856901011, "dur":2341, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856903353, "dur":2217, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856905570, "dur":4790, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856910360, "dur":5153, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856915514, "dur":4206, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856919721, "dur":2730, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856922452, "dur":2221, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856924674, "dur":7083, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856931758, "dur":1842, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856933600, "dur":7264, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856940865, "dur":2117, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856942983, "dur":1869, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856944853, "dur":2290, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856947144, "dur":523, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/NavMeshComponents.dll (+2 others)" }} -,{ "pid":12345, "tid":4, "ts":1682192856947668, "dur":242, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856947915, "dur":712, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.dll (+2 others)" }} -,{ "pid":12345, "tid":4, "ts":1682192856948628, "dur":1536, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856950169, "dur":763, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamples.dll (+2 others)" }} -,{ "pid":12345, "tid":4, "ts":1682192856950932, "dur":210, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856951146, "dur":1760, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":4, "ts":1682192856952906, "dur":208, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856953118, "dur":705, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":4, "ts":1682192856953823, "dur":193, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856954020, "dur":675, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":4, "ts":1682192856954695, "dur":188, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856954886, "dur":722, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.2D.Sprite.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":4, "ts":1682192856955608, "dur":185, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856955796, "dur":1642, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/XNodeEditor.dll (+2 others)" }} -,{ "pid":12345, "tid":4, "ts":1682192856957438, "dur":206, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856957646, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.Advertisements.ref.dll_324BF20D18302AEA.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1682192856957653, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856957743, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Searcher.Editor.ref.dll_12B7E1785E41BE0E.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1682192856957748, "dur":222, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856957973, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.ref.dll_1A2083B43FB0BF18.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1682192856957980, "dur":165, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856958148, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VSCode.Editor.ref.dll_3628369EB48E4C19.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1682192856958154, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856958242, "dur":756, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsPlaymode.dll (+2 others)" }} -,{ "pid":12345, "tid":4, "ts":1682192856958999, "dur":278, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856959279, "dur":165, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.CodeGen.dll.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1682192856959444, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856959529, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VSCode.Editor.dll" }} -,{ "pid":12345, "tid":4, "ts":1682192856959532, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856959584, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VSCode.Editor.pdb" }} -,{ "pid":12345, "tid":4, "ts":1682192856959587, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856959636, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualStudio.Editor.pdb" }} -,{ "pid":12345, "tid":4, "ts":1682192856959638, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856959685, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Burst.CodeGen.dll" }} -,{ "pid":12345, "tid":4, "ts":1682192856959687, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856959731, "dur":423, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/MeshBakerCore.dll.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1682192856960154, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856960242, "dur":580, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.dll (+2 others)" }} -,{ "pid":12345, "tid":4, "ts":1682192856960822, "dur":457, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856961282, "dur":593, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":4, "ts":1682192856961876, "dur":376, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856962255, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Configuration.Editor.ref.dll_FF09FAD520872032.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1682192856962261, "dur":112, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856962376, "dur":160, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Telemetry.dll.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1682192856962536, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856962633, "dur":144, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.dll.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1682192856962777, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856962876, "dur":175, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Shaders.dll.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1682192856963051, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856963147, "dur":174, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1682192856963321, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856963417, "dur":190, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1682192856963607, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856963703, "dur":9960, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856973664, "dur":1118, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.ShaderGraph.Utilities.dll (+pdb)" }} -,{ "pid":12345, "tid":4, "ts":1682192856974783, "dur":257, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856975043, "dur":978, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/XNodeEditor.dll (+pdb)" }} -,{ "pid":12345, "tid":4, "ts":1682192856976021, "dur":151, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856976174, "dur":963, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Environments.Internal.dll (+pdb)" }} -,{ "pid":12345, "tid":4, "ts":1682192856977137, "dur":330, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856977470, "dur":995, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.CollabProxy.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":4, "ts":1682192856978465, "dur":3308, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856981775, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll" }} -,{ "pid":12345, "tid":4, "ts":1682192856981780, "dur":893, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856982675, "dur":704, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983379, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983391, "dur":15, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983407, "dur":12, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983419, "dur":12, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983431, "dur":15, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983446, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983457, "dur":12, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983469, "dur":19, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983489, "dur":14, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983503, "dur":14, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983517, "dur":22, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983539, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983550, "dur":16, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983566, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983577, "dur":14, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983591, "dur":10, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983602, "dur":8, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983610, "dur":10, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983620, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856983631, "dur":871, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856984503, "dur":594, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Runtime.dll (+2 others)" }} -,{ "pid":12345, "tid":4, "ts":1682192856985097, "dur":229, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856985333, "dur":630, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":4, "ts":1682192856985963, "dur":201, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856986167, "dur":1009, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/IngameDebugConsole.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":4, "ts":1682192856987177, "dur":171, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856987349, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/IngameDebugConsole.Editor.pdb" }} -,{ "pid":12345, "tid":4, "ts":1682192856987353, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856987398, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Core.Runtime.pdb" }} -,{ "pid":12345, "tid":4, "ts":1682192856987403, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856987456, "dur":419, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856987875, "dur":297, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856988172, "dur":868, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856989040, "dur":77, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856989117, "dur":43, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856989160, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Flow.pdb" }} -,{ "pid":12345, "tid":4, "ts":1682192856989165, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856989229, "dur":863, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856990092, "dur":585, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856990677, "dur":381, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856991062, "dur":818, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.VisualScripting.State.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":4, "ts":1682192856991880, "dur":273, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856992157, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.State.Editor.pdb" }} -,{ "pid":12345, "tid":4, "ts":1682192856992162, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856992225, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.State.Editor.dll" }} -,{ "pid":12345, "tid":4, "ts":1682192856992228, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856992273, "dur":519, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856992793, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Shared.Editor.pdb" }} -,{ "pid":12345, "tid":4, "ts":1682192856992796, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1682192856992864, "dur":9954150, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856855150, "dur":9587, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856864741, "dur":2653, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856867394, "dur":1070, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856868465, "dur":2272, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856870738, "dur":1859, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856872598, "dur":1756, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856874355, "dur":86, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856874441, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856874546, "dur":9, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.AdditionalFile.txt" }} -,{ "pid":12345, "tid":5, "ts":1682192856874555, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856874663, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856874724, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856874817, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.InputSystem.AdditionalFile.txt" }} -,{ "pid":12345, "tid":5, "ts":1682192856874818, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856874900, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.AdditionalFile.txt" }} -,{ "pid":12345, "tid":5, "ts":1682192856874906, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856874990, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.AdditionalFile.txt" }} -,{ "pid":12345, "tid":5, "ts":1682192856874995, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856875080, "dur":151, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.PackageManagerUIModule.dll_653CB7C2578CD58A.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856875232, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856875355, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_F873B6288A1F0DEC.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856875412, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856875507, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_F0818FF6EDA6FA42.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856875564, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856875665, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_B2AD9CCC85AE42D0.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856875749, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856875838, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_A8A2A65581B38E57.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856875897, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856875989, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_EB0D3C334BDFD6B1.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856876057, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856876168, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_D5977E22A8AC4443.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856876245, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856876339, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_6B92C2897005B056.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856876398, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856876482, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_F15AEC68C07E8599.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856876537, "dur":139, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856876679, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_2D8248E512D4EE43.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856876738, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856876824, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_0B794DA4DE561539.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856876915, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856877008, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_D7B7213748405E75.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856877060, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856877163, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_86930378C91DA973.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856877169, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856877262, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.CodeGen.AdditionalFile.txt" }} -,{ "pid":12345, "tid":5, "ts":1682192856877268, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856877352, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_AE1AD5A12B4FF4D2.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856877408, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856877508, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Burst.Cecil.Mdb.dll_465D9C127E35CC84.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856877583, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856877684, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_F93C4918FD9522C3.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856877748, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856877850, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":5, "ts":1682192856877851, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856877942, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Utilities.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856877998, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856878089, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Editor.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856878162, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856878242, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponents.AdditionalFile.txt" }} -,{ "pid":12345, "tid":5, "ts":1682192856878243, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856878319, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.AdditionalFile.txt" }} -,{ "pid":12345, "tid":5, "ts":1682192856878320, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856878397, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":5, "ts":1682192856878403, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856878479, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.AdditionalFile.txt" }} -,{ "pid":12345, "tid":5, "ts":1682192856878484, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856878571, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856878628, "dur":1437, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856880066, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Threading.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856880117, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856880221, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":5, "ts":1682192856880226, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856880312, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/com.unity.cinemachine.editor.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856880381, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856880464, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Editor.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856880516, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856880600, "dur":48, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Networking.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856880648, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856880733, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Editor.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856880790, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856880873, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.BurstCompatibilityGen.AdditionalFile.txt" }} -,{ "pid":12345, "tid":5, "ts":1682192856880874, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856880960, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsPlaymode.AdditionalFile.txt" }} -,{ "pid":12345, "tid":5, "ts":1682192856880961, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856881038, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856881098, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856881181, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/497035096193185419.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856881248, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856881334, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/8899139255040401798.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856881397, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856881472, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/5803490648119114145.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856881533, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856881609, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/18408091341978535793.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856881671, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856881754, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/11368897008157290650.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856881813, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856881890, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.CompilationPipeline.Common.dll_95A2D0A3BBEEE89C.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856881897, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856881981, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/11169949131693821681.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856882042, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856882126, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/5678380843536809211.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856882210, "dur":270, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856882482, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/3388064732626934676.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856882549, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856882636, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/17833018831532810861.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856882699, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856882831, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/3818794330681902346.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856882897, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856882981, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/16794585710609549488.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856883040, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856883134, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/1475724585155360059.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856883195, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856883291, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2157608619508796868.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856883350, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856883423, "dur":17, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856883440, "dur":142, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856883583, "dur":16, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856883599, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856883682, "dur":16, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856883698, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856883791, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856883802, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856883890, "dur":15, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856883905, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856884007, "dur":17, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Telemetry.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856884025, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856884132, "dur":15, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/XNode.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856884148, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856884234, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856884248, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856884325, "dur":17, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Searcher.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856884343, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856884422, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856884433, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856884522, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856884534, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856884635, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856884648, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856884733, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipeline.Universal.ShaderLibrary.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856884745, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856884836, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.BurstCompatibilityGen.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":5, "ts":1682192856884848, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856884925, "dur":1797, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856886722, "dur":3927, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856890650, "dur":3934, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856894585, "dur":2369, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856896955, "dur":4815, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856901770, "dur":1731, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856903501, "dur":8896, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856912398, "dur":3453, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856915851, "dur":2641, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856918492, "dur":1916, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856920408, "dur":6095, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856926503, "dur":2325, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856928829, "dur":3517, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856932347, "dur":2101, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856934448, "dur":5385, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856939833, "dur":17070, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856956904, "dur":3192, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/JBooth.ShaderPackager.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":5, "ts":1682192856960096, "dur":242, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856960340, "dur":579, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.Internal.dll (+2 others)" }} -,{ "pid":12345, "tid":5, "ts":1682192856960920, "dur":291, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856961214, "dur":551, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Scheduler.dll (+2 others)" }} -,{ "pid":12345, "tid":5, "ts":1682192856961765, "dur":1026, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856962793, "dur":565, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Registration.dll (+2 others)" }} -,{ "pid":12345, "tid":5, "ts":1682192856963358, "dur":235, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856963595, "dur":803, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":5, "ts":1682192856964398, "dur":244, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856964645, "dur":743, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":5, "ts":1682192856965388, "dur":253, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856965643, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Editor.ref.dll_CCD0CF61C5D7A10A.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856965648, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856965729, "dur":116, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.DevX.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856965845, "dur":130, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856965976, "dur":8019, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856973996, "dur":973, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Mathematics.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":5, "ts":1682192856974969, "dur":152, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856975124, "dur":880, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/MeshBakerCore.dll (+pdb)" }} -,{ "pid":12345, "tid":5, "ts":1682192856976004, "dur":274, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856976282, "dur":901, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Scheduler.dll (+pdb)" }} -,{ "pid":12345, "tid":5, "ts":1682192856977183, "dur":182, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856977367, "dur":987, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Internal.dll (+pdb)" }} -,{ "pid":12345, "tid":5, "ts":1682192856978354, "dur":895, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856979251, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Internal.pdb" }} -,{ "pid":12345, "tid":5, "ts":1682192856979255, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856979305, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Threading.dll" }} -,{ "pid":12345, "tid":5, "ts":1682192856979309, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856979355, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/AwesomeTechnologies.TouchReactSystemPro.Editor.pdb" }} -,{ "pid":12345, "tid":5, "ts":1682192856979360, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856979411, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Networking.pdb" }} -,{ "pid":12345, "tid":5, "ts":1682192856979415, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856979462, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/SimpleJSON.dll" }} -,{ "pid":12345, "tid":5, "ts":1682192856979466, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856979512, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.dll" }} -,{ "pid":12345, "tid":5, "ts":1682192856979516, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856979566, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll" }} -,{ "pid":12345, "tid":5, "ts":1682192856979569, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856979615, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TerrainTools.pdb" }} -,{ "pid":12345, "tid":5, "ts":1682192856979619, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856979667, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/AwesomeTechnologies.VegetationStudioPro.Editor.dll" }} -,{ "pid":12345, "tid":5, "ts":1682192856979672, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856979716, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.Editor.dll" }} -,{ "pid":12345, "tid":5, "ts":1682192856979720, "dur":137, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856979858, "dur":164, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.BurstCompatibilityGen.dll.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856980022, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856980116, "dur":1821, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856981937, "dur":12, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856981949, "dur":14, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856981963, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856981974, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856981985, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856981997, "dur":10, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856982007, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856982018, "dur":20, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856982039, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856982050, "dur":10, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856982061, "dur":9, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856982070, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856982082, "dur":8, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856982090, "dur":1983, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856984073, "dur":449, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856984522, "dur":104, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856984627, "dur":245, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Runtime.dll.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856984872, "dur":160, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856985034, "dur":512, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856985547, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipelines.Core.Runtime.ref.dll_CE6A42C97D96EB0A.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856985554, "dur":172, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856985737, "dur":280, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856986017, "dur":322, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856986340, "dur":156, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856986496, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipeline.Universal.ShaderLibrary.ref.dll_5436F99F8BDCED8B.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856986503, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856986599, "dur":147, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Runtime.dll.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856986746, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856986831, "dur":630, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856987462, "dur":312, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856987774, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipelines.Universal.Runtime.ref.dll_5400A10AF7CC6BEA.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856987787, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856987902, "dur":190, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Cinemachine.dll.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1682192856988092, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856988166, "dur":792, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856988958, "dur":910, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.VisualScripting.State.dll (+pdb)" }} -,{ "pid":12345, "tid":5, "ts":1682192856989868, "dur":159, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856990030, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.State.dll" }} -,{ "pid":12345, "tid":5, "ts":1682192856990033, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856990085, "dur":74, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856990160, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Core.Editor.dll" }} -,{ "pid":12345, "tid":5, "ts":1682192856990163, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856990214, "dur":195, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856990410, "dur":964, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.RenderPipelines.Universal.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":5, "ts":1682192856991374, "dur":195, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856991573, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Universal.Editor.pdb" }} -,{ "pid":12345, "tid":5, "ts":1682192856991578, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856991624, "dur":213, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856991838, "dur":824, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.VisualScripting.Shared.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":5, "ts":1682192856992663, "dur":122, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856992788, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Shared.Editor.dll" }} -,{ "pid":12345, "tid":5, "ts":1682192856992790, "dur":36, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856992827, "dur":29, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192856992856, "dur":9628566, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192866621423, "dur":325471, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp-Editor.dll" }} -,{ "pid":12345, "tid":5, "ts":1682192866946895, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1682192866946975, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ScriptAssemblies" }} -,{ "pid":12345, "tid":5, "ts":1682192866946976, "dur":0, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856855173, "dur":9574, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856864750, "dur":2378, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856867128, "dur":1141, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856868270, "dur":1550, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856869821, "dur":2316, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856872137, "dur":3137, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856875275, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_903E9BDCD3D6A48A.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856875350, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856875449, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_4FB697B2845ABFE3.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856875510, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856875592, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_72708534F1C3695E.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856875648, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856875746, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_F8EC2BAB266D80D9.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856875822, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856875928, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_88BDD9048955E25C.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856875985, "dur":130, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856876117, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_C3E02E218094219F.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856876180, "dur":765, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856876948, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_D9605C8BD6941FC1.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856877010, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856877095, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_7C430270322B6A3B.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856877101, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856877199, "dur":9, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.dll_A234DA0EF1216487.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856877208, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856877293, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.CodeGen.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856877345, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856877427, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Burst.Cecil.Rocks.dll_EAEC4A72F0696507.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856877492, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856877584, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_863A9CBBAA3082F4.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856877645, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856877733, "dur":124, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856877858, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856877954, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Utilities.AdditionalFile.txt" }} -,{ "pid":12345, "tid":6, "ts":1682192856877959, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856878033, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Runtime.AdditionalFile.txt" }} -,{ "pid":12345, "tid":6, "ts":1682192856878039, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856878121, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856878199, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856878279, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.Editor.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856878338, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856878424, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Runtime.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856878477, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856878564, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":6, "ts":1682192856878570, "dur":122, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856878694, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856878749, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856878834, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Runtime.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856878901, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856878986, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Cinemachine.AdditionalFile.txt" }} -,{ "pid":12345, "tid":6, "ts":1682192856878987, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856879069, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamples.AdditionalFile.txt" }} -,{ "pid":12345, "tid":6, "ts":1682192856879070, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856879147, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.AdditionalFile.txt" }} -,{ "pid":12345, "tid":6, "ts":1682192856879154, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856879242, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856879292, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856879374, "dur":46, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856879421, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856879500, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.2D.Sprite.Editor.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856879552, "dur":837, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856880452, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Device.AdditionalFile.txt" }} -,{ "pid":12345, "tid":6, "ts":1682192856880453, "dur":578, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856881032, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":6, "ts":1682192856881037, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856881120, "dur":1053, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/12248871281822510316.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856882174, "dur":147, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856882322, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/6841316898876630997.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856882383, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856882473, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/6638697812462351101.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856882537, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856882634, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/1379359308984453704.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856882693, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856882774, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/17525389461119239690.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856882831, "dur":70, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856882902, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/13104283549428636260.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856882954, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856883027, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/10571807241835812913.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856883091, "dur":139, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856883230, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/14814235663552238418.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856883286, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856883359, "dur":18, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-firstpass.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856883377, "dur":406, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856883784, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856883798, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856883884, "dur":15, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Registration.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856883899, "dur":119, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856884019, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamples.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856884031, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856884130, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856884144, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856884238, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856884249, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856884331, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856884342, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856884428, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856884441, "dur":178, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856884620, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Runtime.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856884632, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856884718, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856884729, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856884806, "dur":15, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.DocCodeSamples.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":6, "ts":1682192856884821, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856884907, "dur":1961, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856886868, "dur":1512, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856888381, "dur":2463, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856890845, "dur":2849, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856893695, "dur":1790, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856895486, "dur":1785, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856897272, "dur":1734, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856899007, "dur":2106, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856901113, "dur":3375, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856904489, "dur":2168, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856906658, "dur":2788, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856909447, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_E55D0F7C63F01D9E.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856909457, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856909566, "dur":193, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856909760, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856909849, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.TestRunner.dll" }} -,{ "pid":12345, "tid":6, "ts":1682192856909853, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856909899, "dur":3424, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856913324, "dur":2371, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856915695, "dur":3815, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856919511, "dur":1886, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856921398, "dur":2264, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856923662, "dur":3960, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856927623, "dur":2021, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856929644, "dur":3283, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856932928, "dur":7062, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856939991, "dur":3023, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856943015, "dur":2580, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856945596, "dur":1673, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.dll (+2 others)" }} -,{ "pid":12345, "tid":6, "ts":1682192856947269, "dur":200, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856947477, "dur":12477, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Internal.dll (+2 others)" }} -,{ "pid":12345, "tid":6, "ts":1682192856959954, "dur":246, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856960207, "dur":598, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.dll (+2 others)" }} -,{ "pid":12345, "tid":6, "ts":1682192856960805, "dur":194, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856961001, "dur":755, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":6, "ts":1682192856961756, "dur":243, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856962002, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Mathematics.Editor.ref.dll_9A20CFD48BC11F43.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856962010, "dur":137, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856962150, "dur":158, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.Internal.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856962308, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856962396, "dur":202, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856962598, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856962682, "dur":217, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Utilities.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856962899, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856962981, "dur":169, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/JBooth.ShaderPackager.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856963151, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856963229, "dur":131, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856963360, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856963448, "dur":186, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856963635, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856963716, "dur":2026, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856965744, "dur":296, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856966040, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856966139, "dur":2051, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856968191, "dur":1117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Collections.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":6, "ts":1682192856969309, "dur":155, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856969467, "dur":1257, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/XNode.dll (+pdb)" }} -,{ "pid":12345, "tid":6, "ts":1682192856970725, "dur":167, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856970895, "dur":1028, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Postprocessing.Runtime.dll (+pdb)" }} -,{ "pid":12345, "tid":6, "ts":1682192856971923, "dur":236, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856972162, "dur":1231, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll (+pdb)" }} -,{ "pid":12345, "tid":6, "ts":1682192856973393, "dur":893, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856974290, "dur":1109, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.2D.Sprite.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":6, "ts":1682192856975399, "dur":148, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856975549, "dur":947, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/NavMeshComponentsTestsPlaymode.dll (+pdb)" }} -,{ "pid":12345, "tid":6, "ts":1682192856976496, "dur":130, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856976629, "dur":936, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Burst.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":6, "ts":1682192856977565, "dur":177, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856977746, "dur":966, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Timeline.dll (+pdb)" }} -,{ "pid":12345, "tid":6, "ts":1682192856978713, "dur":157, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856978873, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Timeline.pdb" }} -,{ "pid":12345, "tid":6, "ts":1682192856978877, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856978930, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Timeline.dll" }} -,{ "pid":12345, "tid":6, "ts":1682192856978933, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856978985, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.Advertisements.Editor.dll" }} -,{ "pid":12345, "tid":6, "ts":1682192856978990, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856979038, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Environments.Internal.pdb" }} -,{ "pid":12345, "tid":6, "ts":1682192856979041, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856979088, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.Monetization.dll" }} -,{ "pid":12345, "tid":6, "ts":1682192856979092, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856979139, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsExamplesEditor.pdb" }} -,{ "pid":12345, "tid":6, "ts":1682192856979143, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856979191, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEditor.UI.dll" }} -,{ "pid":12345, "tid":6, "ts":1682192856979194, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856979236, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Configuration.Editor.dll" }} -,{ "pid":12345, "tid":6, "ts":1682192856979241, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856979293, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Postprocessing.Editor.pdb" }} -,{ "pid":12345, "tid":6, "ts":1682192856979297, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856979348, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.ShaderGraph.Utilities.pdb" }} -,{ "pid":12345, "tid":6, "ts":1682192856979352, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856979404, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Mathematics.pdb" }} -,{ "pid":12345, "tid":6, "ts":1682192856979407, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856979457, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/SimpleJSON.pdb" }} -,{ "pid":12345, "tid":6, "ts":1682192856979461, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856979509, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.pdb" }} -,{ "pid":12345, "tid":6, "ts":1682192856979513, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856979564, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.Editor.pdb" }} -,{ "pid":12345, "tid":6, "ts":1682192856979568, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856979616, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TerrainTools.dll" }} -,{ "pid":12345, "tid":6, "ts":1682192856979620, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856979666, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.BurstCompatibilityGen.dll" }} -,{ "pid":12345, "tid":6, "ts":1682192856979668, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856979717, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/AwesomeTechnologies.VegetationStudioPro.Runtime.pdb" }} -,{ "pid":12345, "tid":6, "ts":1682192856979720, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856979772, "dur":146, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Runtime.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856979918, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856980028, "dur":4155, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856984183, "dur":332, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856984515, "dur":114, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856984629, "dur":708, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856985338, "dur":1022, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/IngameDebugConsole.Runtime.dll (+pdb)" }} -,{ "pid":12345, "tid":6, "ts":1682192856986360, "dur":153, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856986515, "dur":1100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.RenderPipeline.Universal.ShaderLibrary.dll (+pdb)" }} -,{ "pid":12345, "tid":6, "ts":1682192856987615, "dur":172, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856987796, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipeline.Universal.ShaderLibrary.dll" }} -,{ "pid":12345, "tid":6, "ts":1682192856987802, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856987909, "dur":191, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856988100, "dur":879, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.VisualScripting.Flow.dll (+pdb)" }} -,{ "pid":12345, "tid":6, "ts":1682192856988979, "dur":176, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856989158, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Flow.dll" }} -,{ "pid":12345, "tid":6, "ts":1682192856989161, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856989223, "dur":810, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856990034, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.State.pdb" }} -,{ "pid":12345, "tid":6, "ts":1682192856990037, "dur":721, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856990759, "dur":298, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856991058, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.Editor.ref.dll_E03858E727F23F6F.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856991069, "dur":168, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856991239, "dur":149, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856991388, "dur":259, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856991649, "dur":190, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856991839, "dur":97, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856991937, "dur":285, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1682192856992223, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856992281, "dur":574, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192856992855, "dur":8247354, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192865240210, "dur":231943, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp.dll (+pdb)" }} -,{ "pid":12345, "tid":6, "ts":1682192865472757, "dur":82, "ph":"X", "name": "StoreTimestampsOfNonGeneratedInputFiles", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192865472846, "dur":1186643, "ph":"X", "name": "ILPostProcess", "args": { "detail":"Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp.dll (+pdb)" }} -,{ "pid":12345, "tid":6, "ts":1682192866668209, "dur":245999, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll" }} -,{ "pid":12345, "tid":6, "ts":1682192866914215, "dur":2, "ph":"X", "name": "StoreTimestampsOfNonGeneratedInputFiles", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1682192866914221, "dur":1148, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.dll" }} -,{ "pid":12345, "tid":6, "ts":1682192866915377, "dur":31640, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856855205, "dur":9553, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856864763, "dur":1798, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856866562, "dur":1178, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856867740, "dur":1155, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856868896, "dur":2511, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856871408, "dur":2344, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856873753, "dur":1787, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856875541, "dur":91, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_F831C39ABAFD6EEB.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856875632, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856875723, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_35BDE2BFB5416E2A.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856875781, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856875859, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_BE990C7165D1D1F1.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856875913, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856875997, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_1923647CFBE66774.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856876055, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856876147, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_BF16752592C060F3.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856876252, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856876354, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_27057285414B209C.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856876437, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856876539, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_7FBDC709600F6835.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856876622, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856876707, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UNETModule.dll_8B927394737C7652.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856876757, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856876835, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_FAC1618CDBA852AC.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856876899, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856876989, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_1B143E6B897C8CD1.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856877063, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856877149, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_D5CB58587E6815AE.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856877161, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856877242, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.CodeGen.AdditionalFile.txt" }} -,{ "pid":12345, "tid":7, "ts":1682192856877248, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856877321, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_A2718EADF8CB71E0.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856877328, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856877426, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Runtime.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856877483, "dur":129, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856877613, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_AE237261CA2DA2B1.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856877677, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856877774, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipeline.Universal.ShaderLibrary.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856877834, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856877923, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Searcher.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":7, "ts":1682192856877928, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856878013, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Internal.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856878073, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856878164, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.AdditionalFile.txt" }} -,{ "pid":12345, "tid":7, "ts":1682192856878165, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856878256, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.Editor.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856878316, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856878409, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Runtime.AdditionalFile.txt" }} -,{ "pid":12345, "tid":7, "ts":1682192856878415, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856878504, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Editor.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856878589, "dur":229, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856878820, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856878904, "dur":357, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856879262, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsEditor.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856879318, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856879406, "dur":49, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856879455, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856879532, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Shaders.AdditionalFile.txt" }} -,{ "pid":12345, "tid":7, "ts":1682192856879533, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856879628, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Analytics.AdditionalFile.txt" }} -,{ "pid":12345, "tid":7, "ts":1682192856879632, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856879714, "dur":9, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":7, "ts":1682192856879723, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856879803, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":7, "ts":1682192856879804, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856879892, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Telemetry.AdditionalFile.txt" }} -,{ "pid":12345, "tid":7, "ts":1682192856879893, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856879965, "dur":48, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.Editor.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856880013, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856880091, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Threading.AdditionalFile.txt" }} -,{ "pid":12345, "tid":7, "ts":1682192856880092, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856880170, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/XNodeEditor.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856880220, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856880303, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Scheduler.AdditionalFile.txt" }} -,{ "pid":12345, "tid":7, "ts":1682192856880304, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856880381, "dur":45, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Device.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856880426, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856880505, "dur":48, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/PPv2URPConverters.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856880554, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856880632, "dur":45, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Registration.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856880678, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856880755, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor-firstpass.AdditionalFile.txt" }} -,{ "pid":12345, "tid":7, "ts":1682192856880756, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856880836, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856880906, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856880994, "dur":46, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.BurstCompatibilityGen.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856881040, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856881123, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/320441126896875025.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856881217, "dur":335, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856881553, "dur":838, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/9111662996337956171.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856882391, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856882496, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/4494907431374462528.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856882555, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856882647, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2074369592318871490.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856882710, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856882844, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2781082588993088484.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856882924, "dur":136, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856883060, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/10292501669419677951.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856883116, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856883185, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/17242669345997350737.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856883240, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856883321, "dur":18, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/com.unity.cinemachine.editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856883339, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856883427, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/XNodeEditor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856883441, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856883531, "dur":22, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856883553, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856883670, "dur":19, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856883690, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856883775, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Analytics.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856883788, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856883870, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsEditmode.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856883883, "dur":116, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856884000, "dur":16, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Threading.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856884016, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856884104, "dur":15, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Runtime.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856884119, "dur":130, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856884250, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856884263, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856884345, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Shaders.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856884358, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856884436, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.InputSystem.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856884449, "dur":232, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856884682, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/PPv2URPConverters.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856884694, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856884781, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.DevX.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":7, "ts":1682192856884793, "dur":150, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856884944, "dur":2658, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856887603, "dur":1561, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856889164, "dur":2115, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856891280, "dur":3524, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856894805, "dur":3530, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856898336, "dur":3446, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856901783, "dur":1737, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856903520, "dur":1963, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856905484, "dur":3564, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856909048, "dur":4238, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856913287, "dur":1912, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856915199, "dur":1749, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856916949, "dur":2183, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856919132, "dur":5063, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856924195, "dur":6481, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856930677, "dur":2127, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856932805, "dur":2615, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856935421, "dur":1751, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856937172, "dur":1980, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856939153, "dur":1700, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856940854, "dur":1701, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856942556, "dur":1588, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856944145, "dur":5014, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856949160, "dur":765, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.dll (+2 others)" }} -,{ "pid":12345, "tid":7, "ts":1682192856949926, "dur":206, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856950136, "dur":593, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/MeshBakerCore.dll (+2 others)" }} -,{ "pid":12345, "tid":7, "ts":1682192856950730, "dur":211, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856950944, "dur":445, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/XNode.dll (+2 others)" }} -,{ "pid":12345, "tid":7, "ts":1682192856951389, "dur":173, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856951565, "dur":566, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":7, "ts":1682192856952132, "dur":369, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856952509, "dur":656, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":7, "ts":1682192856953166, "dur":295, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856953465, "dur":678, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":7, "ts":1682192856954143, "dur":206, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856954353, "dur":781, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.ShaderLibrary.dll (+2 others)" }} -,{ "pid":12345, "tid":7, "ts":1682192856955134, "dur":207, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856955344, "dur":937, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":7, "ts":1682192856956281, "dur":242, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856956526, "dur":956, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/SimpleJSON.dll (+2 others)" }} -,{ "pid":12345, "tid":7, "ts":1682192856957483, "dur":336, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856957821, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.2D.Sprite.Editor.ref.dll_DDBAA27A82CE9E28.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856957829, "dur":899, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856958732, "dur":3110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Monetization.dll.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856961842, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856961927, "dur":193, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Networking.dll.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856962120, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856962210, "dur":177, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Threading.dll.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856962387, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856962468, "dur":169, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/XNodeEditor.dll.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856962637, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856962724, "dur":156, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.ShaderLibrary.dll.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856962880, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856962977, "dur":129, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856963106, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856963187, "dur":128, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamples.dll.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856963315, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856963400, "dur":147, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamplesEditor.dll.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856963548, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856963638, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Registration.ref.dll_0EE1D1878B496356.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856963643, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856963732, "dur":155, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856963887, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856963975, "dur":7234, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856971210, "dur":1052, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Collections.dll (+pdb)" }} -,{ "pid":12345, "tid":7, "ts":1682192856972262, "dur":162, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856972426, "dur":1140, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.EditorCoroutines.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":7, "ts":1682192856973567, "dur":358, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856973928, "dur":1307, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Postprocessing.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":7, "ts":1682192856975235, "dur":150, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856975388, "dur":1021, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Configuration.dll (+pdb)" }} -,{ "pid":12345, "tid":7, "ts":1682192856976410, "dur":198, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856976611, "dur":954, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/UnityEngine.Advertisements.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":7, "ts":1682192856977565, "dur":176, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856977744, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Timeline.ref.dll_621CDDF9C514DF8F.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856977750, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856977845, "dur":1050, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.TextMeshPro.dll (+pdb)" }} -,{ "pid":12345, "tid":7, "ts":1682192856978895, "dur":196, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856979093, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.dll" }} -,{ "pid":12345, "tid":7, "ts":1682192856979098, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856979156, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsTestsPlaymode.dll" }} -,{ "pid":12345, "tid":7, "ts":1682192856979160, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856979213, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/MeshBakerCore.dll" }} -,{ "pid":12345, "tid":7, "ts":1682192856979217, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856979262, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponents.pdb" }} -,{ "pid":12345, "tid":7, "ts":1682192856979266, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856979315, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Jobs.dll" }} -,{ "pid":12345, "tid":7, "ts":1682192856979319, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856979365, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsExamples.pdb" }} -,{ "pid":12345, "tid":7, "ts":1682192856979369, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856979419, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.EditorCoroutines.Editor.dll" }} -,{ "pid":12345, "tid":7, "ts":1682192856979423, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856979470, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TerrainTools.Editor.pdb" }} -,{ "pid":12345, "tid":7, "ts":1682192856979474, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856979528, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Universal.Shaders.dll" }} -,{ "pid":12345, "tid":7, "ts":1682192856979533, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856979582, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsEditor.dll" }} -,{ "pid":12345, "tid":7, "ts":1682192856979586, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856979635, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Burst.pdb" }} -,{ "pid":12345, "tid":7, "ts":1682192856979639, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856979683, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.DocCodeSamples.dll" }} -,{ "pid":12345, "tid":7, "ts":1682192856979688, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856979732, "dur":174, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856979906, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856979997, "dur":3218, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983215, "dur":77, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983292, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983303, "dur":13, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983316, "dur":13, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983330, "dur":13, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983343, "dur":14, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983358, "dur":15, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983373, "dur":13, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983386, "dur":14, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983400, "dur":13, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983413, "dur":22, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983436, "dur":16, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983452, "dur":14, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983467, "dur":18, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983485, "dur":18, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983503, "dur":21, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983524, "dur":21, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983546, "dur":23, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983569, "dur":13, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983582, "dur":15, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983597, "dur":13, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983610, "dur":14, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856983625, "dur":881, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856984506, "dur":133, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856984639, "dur":936, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856985575, "dur":873, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856986449, "dur":1095, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.VisualScripting.Core.dll (+pdb)" }} -,{ "pid":12345, "tid":7, "ts":1682192856987544, "dur":185, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856987733, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Core.dll" }} -,{ "pid":12345, "tid":7, "ts":1682192856987736, "dur":134, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856987872, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipeline.Universal.ShaderLibrary.pdb" }} -,{ "pid":12345, "tid":7, "ts":1682192856987876, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856987925, "dur":170, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856988095, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.ref.dll_1E6ED5409D07C9A3.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856988103, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856988226, "dur":157, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856988383, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856988466, "dur":516, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856988983, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.Editor.ref.dll_EDC8690F57C5BDFD.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1682192856988990, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856989110, "dur":944, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.ShaderGraph.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":7, "ts":1682192856990055, "dur":180, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856990239, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.ShaderGraph.Editor.dll" }} -,{ "pid":12345, "tid":7, "ts":1682192856990242, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856990298, "dur":35, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856990334, "dur":723, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/com.unity.cinemachine.editor.dll (+2 others)" }} -,{ "pid":12345, "tid":7, "ts":1682192856991057, "dur":371, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856991430, "dur":1005, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/com.unity.cinemachine.editor.dll (+pdb)" }} -,{ "pid":12345, "tid":7, "ts":1682192856992435, "dur":167, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856992606, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/com.unity.cinemachine.editor.pdb" }} -,{ "pid":12345, "tid":7, "ts":1682192856992609, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856992669, "dur":191, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1682192856992861, "dur":9954155, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856855237, "dur":9532, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856864773, "dur":1171, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856865944, "dur":1736, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856867681, "dur":1082, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856868763, "dur":3470, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856872233, "dur":3886, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856876119, "dur":127, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_E219927C3C9A2E98.mvfrm" }} -,{ "pid":12345, "tid":8, "ts":1682192856876246, "dur":123, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856876371, "dur":163, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_03B086CE8C9E1EAA.mvfrm" }} -,{ "pid":12345, "tid":8, "ts":1682192856876534, "dur":3958, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856880504, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/PPv2URPConverters.AdditionalFile.txt" }} -,{ "pid":12345, "tid":8, "ts":1682192856880505, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856880588, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":8, "ts":1682192856880589, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856880670, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Networking.AdditionalFile.txt" }} -,{ "pid":12345, "tid":8, "ts":1682192856880671, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856880766, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor-firstpass.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856880837, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856880939, "dur":46, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.DocCodeSamples.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856880986, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856881067, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.DevX.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":8, "ts":1682192856881068, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856881163, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2391771579636945191.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856881252, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856881347, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/5546506141355401238.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856881410, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856881484, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/18218310762646611085.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856881544, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856881622, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/17346584914308636752.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856881684, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856881777, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/4059091172732495669.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856881842, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856881930, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/10678863128556690338.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856882003, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856882056, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2240406767038398906.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856882112, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856882192, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/15183149355271759364.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856882250, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856882334, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/12295599868861940527.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856882391, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856882480, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/5249134988916615986.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856882541, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856882634, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/3913888237084306484.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856882696, "dur":339, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856883036, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/4772145154433932943.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856883096, "dur":1305, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856884403, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.ShaderLibrary.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856884416, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856884527, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/SimpleJSON.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856884539, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856884634, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Device.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856884645, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856884729, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":8, "ts":1682192856884739, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856884843, "dur":126, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll.mvfrm" }} -,{ "pid":12345, "tid":8, "ts":1682192856884969, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856885061, "dur":2075, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856887136, "dur":1817, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856888953, "dur":1908, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856890861, "dur":6040, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856896902, "dur":2349, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856899252, "dur":3142, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856902394, "dur":1844, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856904239, "dur":7124, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856911364, "dur":3286, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856914651, "dur":4422, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856919073, "dur":1806, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856920880, "dur":3332, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856924212, "dur":10103, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856934316, "dur":10543, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856944860, "dur":2731, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856947592, "dur":29862, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll (+2 others)" }} -,{ "pid":12345, "tid":8, "ts":1682192856977455, "dur":197, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856977658, "dur":1003, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":8, "ts":1682192856978661, "dur":192, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856978858, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Timeline.Editor.ref.dll_0D3D3C0B73557612.mvfrm" }} -,{ "pid":12345, "tid":8, "ts":1682192856978863, "dur":136, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856979002, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/JBooth.ShaderPackager.Editor.pdb" }} -,{ "pid":12345, "tid":8, "ts":1682192856979005, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856979052, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Scheduler.dll" }} -,{ "pid":12345, "tid":8, "ts":1682192856979054, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856979120, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsExamplesEditor.dll" }} -,{ "pid":12345, "tid":8, "ts":1682192856979124, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856979176, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/AwesomeTechnologies.TouchReactSystemPro.Runtime.dll" }} -,{ "pid":12345, "tid":8, "ts":1682192856979179, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856979234, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Configuration.Editor.pdb" }} -,{ "pid":12345, "tid":8, "ts":1682192856979237, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856979291, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Postprocessing.Editor.dll" }} -,{ "pid":12345, "tid":8, "ts":1682192856979294, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856979343, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.ShaderGraph.Utilities.dll" }} -,{ "pid":12345, "tid":8, "ts":1682192856979345, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856979394, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.pdb" }} -,{ "pid":12345, "tid":8, "ts":1682192856979397, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856979440, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/MeshBakerEditor.dll" }} -,{ "pid":12345, "tid":8, "ts":1682192856979443, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856979483, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.dll" }} -,{ "pid":12345, "tid":8, "ts":1682192856979486, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856979534, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Postprocessing.Runtime.pdb" }} -,{ "pid":12345, "tid":8, "ts":1682192856979537, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856979583, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsEditor.pdb" }} -,{ "pid":12345, "tid":8, "ts":1682192856979586, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856979641, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Burst.dll" }} -,{ "pid":12345, "tid":8, "ts":1682192856979644, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856979685, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.DocCodeSamples.pdb" }} -,{ "pid":12345, "tid":8, "ts":1682192856979688, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856979765, "dur":234, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.DocCodeSamples.dll.mvfrm" }} -,{ "pid":12345, "tid":8, "ts":1682192856979999, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856980089, "dur":3726, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856983816, "dur":689, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856984505, "dur":960, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.InputSystem.dll (+pdb)" }} -,{ "pid":12345, "tid":8, "ts":1682192856985466, "dur":219, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856985688, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.InputSystem.pdb" }} -,{ "pid":12345, "tid":8, "ts":1682192856985691, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856985738, "dur":149, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipeline.Universal.ShaderLibrary.dll.mvfrm" }} -,{ "pid":12345, "tid":8, "ts":1682192856985887, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856985964, "dur":483, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856986447, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.ref.dll_D75DF4EA1AFE54F4.mvfrm" }} -,{ "pid":12345, "tid":8, "ts":1682192856986454, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856986551, "dur":168, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm" }} -,{ "pid":12345, "tid":8, "ts":1682192856986719, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856986809, "dur":234, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":8, "ts":1682192856987044, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856987143, "dur":256, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856987400, "dur":338, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856987739, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Core.pdb" }} -,{ "pid":12345, "tid":8, "ts":1682192856987751, "dur":289, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856988041, "dur":66, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856988107, "dur":297, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856988405, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Core.Editor.dll" }} -,{ "pid":12345, "tid":8, "ts":1682192856988409, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856988485, "dur":521, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856989006, "dur":143, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856989150, "dur":825, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856989976, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Cinemachine.pdb" }} -,{ "pid":12345, "tid":8, "ts":1682192856989980, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856990044, "dur":38, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856990083, "dur":528, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":8, "ts":1682192856990611, "dur":258, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856990874, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.SettingsProvider.Editor.ref.dll_A1A44354E0B583A8.mvfrm" }} -,{ "pid":12345, "tid":8, "ts":1682192856990880, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856990961, "dur":109, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856991071, "dur":774, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856991845, "dur":88, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856991934, "dur":308, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor-firstpass.dll.mvfrm" }} -,{ "pid":12345, "tid":8, "ts":1682192856992242, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856992329, "dur":524, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856992854, "dur":1302, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856994157, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp-Editor-firstpass.dll" }} -,{ "pid":12345, "tid":8, "ts":1682192856994159, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1682192856994202, "dur":9952843, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856855268, "dur":9511, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856864783, "dur":1304, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856866088, "dur":1194, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856867283, "dur":1164, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856868448, "dur":2247, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856870695, "dur":2384, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856873080, "dur":1764, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856874845, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Runtime.AdditionalFile.txt" }} -,{ "pid":12345, "tid":9, "ts":1682192856874846, "dur":115, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856874963, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.rsp" }} -,{ "pid":12345, "tid":9, "ts":1682192856875038, "dur":152, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856875192, "dur":209, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_1B76D805F529511B.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1682192856875402, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856875503, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_B6216DAA03B99B64.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1682192856875622, "dur":115, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856875741, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_8C3FC5EA38D8B6F7.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1682192856875804, "dur":213, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856876020, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_AE33CCD8F4DAD942.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1682192856876102, "dur":157, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856876261, "dur":143, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_C81B7A5E094705A4.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1682192856876404, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856876508, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_F0B71AE440A09198.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1682192856876564, "dur":149, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856876715, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_7D584FC05682CCF6.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1682192856876769, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856876854, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_5A15E65AC304F930.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1682192856876906, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856876992, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_009C5F78367CD1A2.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1682192856877050, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856877133, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_C6B5E0BE5750AA37.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1682192856877139, "dur":145, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856877287, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.CodeGen.rsp" }} -,{ "pid":12345, "tid":9, "ts":1682192856877343, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856877438, "dur":27322, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.CodeGen.dll (+2 others)" }} -,{ "pid":12345, "tid":9, "ts":1682192856904761, "dur":226, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856904999, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Jobs.CodeGen.dll" }} -,{ "pid":12345, "tid":9, "ts":1682192856905003, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856905052, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Jobs.CodeGen.pdb" }} -,{ "pid":12345, "tid":9, "ts":1682192856905055, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856905114, "dur":4625, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856909740, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.TestRunner.pdb" }} -,{ "pid":12345, "tid":9, "ts":1682192856909745, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856909855, "dur":5689, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856915544, "dur":2156, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856917701, "dur":2735, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856920437, "dur":11158, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856931595, "dur":2012, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856933608, "dur":3516, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856937124, "dur":6445, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856943569, "dur":1933, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856945503, "dur":38797, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.InputSystem.dll (+2 others)" }} -,{ "pid":12345, "tid":9, "ts":1682192856984301, "dur":171, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856984502, "dur":823, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Runtime.dll (+2 others)" }} -,{ "pid":12345, "tid":9, "ts":1682192856985325, "dur":200, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856985544, "dur":611, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipeline.Universal.ShaderLibrary.dll (+2 others)" }} -,{ "pid":12345, "tid":9, "ts":1682192856986155, "dur":274, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856986452, "dur":1107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Runtime.dll (+2 others)" }} -,{ "pid":12345, "tid":9, "ts":1682192856987559, "dur":203, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856987773, "dur":738, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Cinemachine.dll (+2 others)" }} -,{ "pid":12345, "tid":9, "ts":1682192856988511, "dur":227, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856988741, "dur":771, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Cinemachine.dll (+pdb)" }} -,{ "pid":12345, "tid":9, "ts":1682192856989512, "dur":455, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856989971, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Cinemachine.dll" }} -,{ "pid":12345, "tid":9, "ts":1682192856989975, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856990018, "dur":65, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856990084, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.Editor.ref.dll_6AF951BE66A4493E.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1682192856990089, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856990194, "dur":172, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1682192856990366, "dur":362, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856990730, "dur":331, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856991061, "dur":108, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856991169, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Flow.Editor.pdb" }} -,{ "pid":12345, "tid":9, "ts":1682192856991176, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856991267, "dur":573, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856991840, "dur":213, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856992053, "dur":234, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856992287, "dur":565, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856992853, "dur":732, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856993585, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll" }} -,{ "pid":12345, "tid":9, "ts":1682192856993588, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1682192856993633, "dur":9953435, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856855295, "dur":9494, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856864791, "dur":1277, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856866068, "dur":1138, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856867207, "dur":1054, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856868262, "dur":1313, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856869575, "dur":3966, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856873542, "dur":1722, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856875265, "dur":16, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_4856656B4452EB6C.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856875282, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856875364, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_1602D9835671722A.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856875426, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856875521, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_944BC2569F90E100.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856875574, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856875660, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_5231952EBA63784C.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856875723, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856875819, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_A35144EC0F52BD36.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856875886, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856875967, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_D65D47993EC216D0.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856876023, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856876108, "dur":114, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_740AAD124CBD6123.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856876222, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856876313, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_A7C57F018741676B.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856876363, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856876454, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_0E9E172FE6D46355.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856876518, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856876603, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsNativeModule.dll_AFB66C57C90545AC.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856876662, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856876744, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_A380F1B8FE419C0F.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856876807, "dur":122, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856876932, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_01A0F82DF7B79505.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856876992, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856877084, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_6F3B06D3B7A3FF42.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856877136, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856877240, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.CodeGen.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856877314, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856877410, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Runtime.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856877416, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856877501, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_AAA96FFA2E5E32E2.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856877621, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856877723, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856877724, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856877811, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipeline.Universal.ShaderLibrary.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856877817, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856877904, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Editor.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856877981, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856878065, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Runtime.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856878148, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856878236, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856878291, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856878376, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856878377, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856878458, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856878508, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856878590, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856878591, "dur":183, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856878777, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856878831, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856878915, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Runtime.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856878916, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856878994, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/MeshBakerCore.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856879000, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856879078, "dur":48, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/XNode.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856879126, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856879209, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856879213, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856879294, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856879295, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856879377, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856879378, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856879460, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856879461, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856879542, "dur":48, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Shaders.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856879590, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856879666, "dur":45, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Analytics.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856879712, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856879790, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856879791, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856879871, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Telemetry.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856879929, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856880006, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Monetization.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856880007, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856880088, "dur":49, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/JBooth.ShaderPackager.Editor.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856880137, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856880220, "dur":46, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Editor.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856880266, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856880350, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/com.unity.cinemachine.editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856880351, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856880461, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856880463, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856880558, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.Internal.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856880609, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856880695, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-firstpass.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856880696, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856880771, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856880772, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856880849, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsEditmode.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856880849, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856880927, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.DocCodeSamples.AdditionalFile.txt" }} -,{ "pid":12345, "tid":10, "ts":1682192856880928, "dur":295, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856881224, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/5689786774259947410.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856881290, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856881380, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/9675442845102135732.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856881442, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856881539, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/11609355203541698906.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856881601, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856881677, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/3648465134513896125.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856881738, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856881820, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/12812556936427222528.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856881881, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856881955, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/4345639507432806382.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856882021, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856882100, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/3938377011463375229.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856882172, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856882254, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/8654950501350094070.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856882320, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856882389, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2282191090610319379.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856882465, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856882540, "dur":430, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/8306353738322043485.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856882971, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856883130, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2296344399083059428.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856883196, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856883305, "dur":16, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Runtime.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856883321, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856883419, "dur":15, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856883435, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856883526, "dur":15, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Runtime.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856883541, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856883630, "dur":24, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856883655, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856883748, "dur":15, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Internal.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856883763, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856883846, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856883860, "dur":117, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856883979, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856883992, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856884074, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsEditor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856884088, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856884166, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856884178, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856884263, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856884274, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856884367, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856884379, "dur":192, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856884572, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/MeshBakerCore.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856884584, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856884670, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856884681, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856884767, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":10, "ts":1682192856884778, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856884870, "dur":145, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856885015, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856885121, "dur":1772, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856886894, "dur":1444, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856888339, "dur":5969, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856894309, "dur":4029, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856898338, "dur":4181, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856902519, "dur":3288, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856905807, "dur":8744, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856914552, "dur":1859, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856916411, "dur":2022, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856918434, "dur":3104, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856921539, "dur":1801, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856923340, "dur":2034, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856925375, "dur":2183, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856927559, "dur":2017, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856929577, "dur":5764, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856935342, "dur":3543, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856938886, "dur":10297, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856949184, "dur":6012, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll (+2 others)" }} -,{ "pid":12345, "tid":10, "ts":1682192856955196, "dur":187, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856955387, "dur":749, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":10, "ts":1682192856956136, "dur":270, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856956410, "dur":516, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamplesEditor.dll (+2 others)" }} -,{ "pid":12345, "tid":10, "ts":1682192856956926, "dur":210, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856957137, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.ref.dll_131AC9C5EC6E6517.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856957144, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856957257, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Burst.ref.dll_F30DFA20C0DD1968.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856957262, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856957342, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Postprocessing.Runtime.ref.dll_3152B6A9836FBF3B.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856957347, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856957429, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Postprocessing.Editor.ref.dll_1C9CD17610FFA3F0.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856957435, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856957515, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Jobs.ref.dll_6319796B1FEE3FB4.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856957521, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856957600, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TerrainTools.ref.dll_E38CD1BEC69E4F44.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856957605, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856957678, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.PlasticSCM.Editor.ref.dll_257AEB342BE77856.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856957683, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856957757, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipelines.Universal.Shaders.ref.dll_9468B054363B0720.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856957763, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856957846, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.EditorCoroutines.Editor.ref.dll_34ED10A34098B2DB.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856957851, "dur":148, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856958001, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.Editor.ref.dll_159E061D77A10B86.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856958007, "dur":137, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856958146, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Analytics.ref.dll_EDA1682A714EA6BF.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856958152, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856958233, "dur":484, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsEditmode.dll (+2 others)" }} -,{ "pid":12345, "tid":10, "ts":1682192856958717, "dur":478, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856959197, "dur":156, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856959353, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856959436, "dur":139, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Internal.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856959575, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856959659, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Burst.CodeGen.pdb" }} -,{ "pid":12345, "tid":10, "ts":1682192856959663, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856959715, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Rider.Editor.pdb" }} -,{ "pid":12345, "tid":10, "ts":1682192856959718, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856959763, "dur":180, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856959943, "dur":113, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856960057, "dur":1059, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/NavMeshComponents.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856961116, "dur":748, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856961866, "dur":169, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Device.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856962035, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856962145, "dur":147, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856962292, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856962380, "dur":149, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/SimpleJSON.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856962530, "dur":155, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856962687, "dur":317, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856963004, "dur":140, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856963145, "dur":150, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856963295, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856963379, "dur":206, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856963585, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856963673, "dur":137, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsEditor.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856963810, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856963889, "dur":3106, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856966996, "dur":524, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":10, "ts":1682192856967521, "dur":260, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856967785, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Collections.Editor.ref.dll_E4491E98C71DB4B4.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856967791, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856967871, "dur":646, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.BurstCompatibilityGen.dll (+2 others)" }} -,{ "pid":12345, "tid":10, "ts":1682192856968517, "dur":236, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856968755, "dur":964, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Collections.BurstCompatibilityGen.dll (+pdb)" }} -,{ "pid":12345, "tid":10, "ts":1682192856969720, "dur":206, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856969929, "dur":972, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/NavMeshComponentsEditor.dll (+pdb)" }} -,{ "pid":12345, "tid":10, "ts":1682192856970901, "dur":161, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856971066, "dur":1045, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.RenderPipelines.Universal.Shaders.dll (+pdb)" }} -,{ "pid":12345, "tid":10, "ts":1682192856972111, "dur":151, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856972264, "dur":1155, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.RenderPipelines.Core.ShaderLibrary.dll (+pdb)" }} -,{ "pid":12345, "tid":10, "ts":1682192856973420, "dur":152, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856973575, "dur":997, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/AwesomeTechnologies.TouchReactSystemPro.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":10, "ts":1682192856974572, "dur":165, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856974740, "dur":1516, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/UnityEditor.UI.dll (+pdb)" }} -,{ "pid":12345, "tid":10, "ts":1682192856976256, "dur":156, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856976415, "dur":962, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/JBooth.ShaderPackager.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":10, "ts":1682192856977378, "dur":184, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856977564, "dur":946, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Searcher.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":10, "ts":1682192856978510, "dur":156, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856978668, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Searcher.Editor.dll" }} -,{ "pid":12345, "tid":10, "ts":1682192856978671, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856978723, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Device.pdb" }} -,{ "pid":12345, "tid":10, "ts":1682192856978726, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856978770, "dur":140, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856978910, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856979040, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Scheduler.pdb" }} -,{ "pid":12345, "tid":10, "ts":1682192856979045, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856979102, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.pdb" }} -,{ "pid":12345, "tid":10, "ts":1682192856979105, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856979157, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Configuration.pdb" }} -,{ "pid":12345, "tid":10, "ts":1682192856979160, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856979205, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/MeshBakerCore.pdb" }} -,{ "pid":12345, "tid":10, "ts":1682192856979207, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856979252, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Internal.dll" }} -,{ "pid":12345, "tid":10, "ts":1682192856979255, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856979301, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Threading.pdb" }} -,{ "pid":12345, "tid":10, "ts":1682192856979303, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856979350, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/AwesomeTechnologies.TouchReactSystemPro.Editor.dll" }} -,{ "pid":12345, "tid":10, "ts":1682192856979353, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856979406, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Networking.dll" }} -,{ "pid":12345, "tid":10, "ts":1682192856979409, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856979452, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Core.ShaderLibrary.pdb" }} -,{ "pid":12345, "tid":10, "ts":1682192856979455, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856979496, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.Advertisements.DevX.Editor.dll" }} -,{ "pid":12345, "tid":10, "ts":1682192856979498, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856979539, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.Advertisements.pdb" }} -,{ "pid":12345, "tid":10, "ts":1682192856979541, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856979585, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/XNode.dll" }} -,{ "pid":12345, "tid":10, "ts":1682192856979587, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856979630, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsTestsEditmode.dll" }} -,{ "pid":12345, "tid":10, "ts":1682192856979633, "dur":260, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856979894, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.CodeGen.pdb" }} -,{ "pid":12345, "tid":10, "ts":1682192856979897, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856979941, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.CodeGen.dll" }} -,{ "pid":12345, "tid":10, "ts":1682192856979943, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856979988, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Timeline.Editor.pdb" }} -,{ "pid":12345, "tid":10, "ts":1682192856979990, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856980039, "dur":3627, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856983667, "dur":834, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856984502, "dur":1702, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll (+2 others)" }} -,{ "pid":12345, "tid":10, "ts":1682192856986204, "dur":223, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856986447, "dur":1362, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll (+2 others)" }} -,{ "pid":12345, "tid":10, "ts":1682192856987810, "dur":271, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856988094, "dur":575, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll (+2 others)" }} -,{ "pid":12345, "tid":10, "ts":1682192856988669, "dur":280, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856988956, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.ref.dll_D91762B7076BE462.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856988961, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856989060, "dur":53, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856989116, "dur":172, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856989288, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856989378, "dur":713, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856990091, "dur":150, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856990241, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.ShaderGraph.Editor.pdb" }} -,{ "pid":12345, "tid":10, "ts":1682192856990245, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856990315, "dur":19, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856990334, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipelines.Universal.Editor.ref.dll_0FF7AC68384616B1.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856990340, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856990424, "dur":169, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/com.unity.cinemachine.editor.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856990594, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856990672, "dur":404, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856991076, "dur":780, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856991856, "dur":78, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856991936, "dur":297, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1682192856992233, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856992323, "dur":527, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856992851, "dur":501, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor-firstpass.dll (+2 others)" }} -,{ "pid":12345, "tid":10, "ts":1682192856993353, "dur":170, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856993524, "dur":526, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp-Editor-firstpass.dll (+pdb)" }} -,{ "pid":12345, "tid":10, "ts":1682192856994050, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856994153, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp-Editor-firstpass.pdb" }} -,{ "pid":12345, "tid":10, "ts":1682192856994154, "dur":33, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1682192856994189, "dur":9952870, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856855347, "dur":9451, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856864800, "dur":1532, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856866332, "dur":1106, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856867439, "dur":1074, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856868514, "dur":2597, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856871112, "dur":2672, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856873785, "dur":2495, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856876281, "dur":16, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_4E1C439CF59F78B8.mvfrm" }} -,{ "pid":12345, "tid":11, "ts":1682192856876298, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856876398, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_51BAB36328E3B08F.mvfrm" }} -,{ "pid":12345, "tid":11, "ts":1682192856876483, "dur":6285, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856882826, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/6262281476893245489.rsp" }} -,{ "pid":12345, "tid":11, "ts":1682192856882894, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856882992, "dur":455, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/8029443090779585774.rsp" }} -,{ "pid":12345, "tid":11, "ts":1682192856883447, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856883537, "dur":19, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":11, "ts":1682192856883556, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856883668, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Cinemachine.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":11, "ts":1682192856883683, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856883775, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":11, "ts":1682192856883787, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856883880, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":11, "ts":1682192856883894, "dur":119, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856884014, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsPlaymode.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":11, "ts":1682192856884027, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856884112, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Scheduler.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":11, "ts":1682192856884126, "dur":708, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856884835, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.CodeGen.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":11, "ts":1682192856884846, "dur":352, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856885199, "dur":3132, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856888331, "dur":4377, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856892709, "dur":4691, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856897401, "dur":1962, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856899364, "dur":2608, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856901973, "dur":2120, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856904093, "dur":3417, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856907510, "dur":2359, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856909869, "dur":3293, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856913163, "dur":7201, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856920365, "dur":7726, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856928091, "dur":2636, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856930728, "dur":5612, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856936341, "dur":2703, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856939044, "dur":24373, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856963419, "dur":147, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.2D.Sprite.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":11, "ts":1682192856963566, "dur":236, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856963803, "dur":3026, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856966830, "dur":788, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Runtime.dll (+2 others)" }} -,{ "pid":12345, "tid":11, "ts":1682192856967619, "dur":247, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856967869, "dur":640, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":11, "ts":1682192856968510, "dur":213, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856968725, "dur":945, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/AwesomeTechnologies.VegetationStudioPro.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":11, "ts":1682192856969670, "dur":171, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856969843, "dur":940, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.dll (+pdb)" }} -,{ "pid":12345, "tid":11, "ts":1682192856970783, "dur":1711, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856972497, "dur":1038, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/MeshBakerEditor.dll (+pdb)" }} -,{ "pid":12345, "tid":11, "ts":1682192856973535, "dur":184, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856973721, "dur":1567, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Analytics.dll (+pdb)" }} -,{ "pid":12345, "tid":11, "ts":1682192856975288, "dur":1603, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856976894, "dur":1277, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/UnityEngine.Monetization.dll (+pdb)" }} -,{ "pid":12345, "tid":11, "ts":1682192856978172, "dur":912, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856979087, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.Monetization.pdb" }} -,{ "pid":12345, "tid":11, "ts":1682192856979091, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856979149, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsTestsPlaymode.pdb" }} -,{ "pid":12345, "tid":11, "ts":1682192856979153, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856979203, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEditor.UI.pdb" }} -,{ "pid":12345, "tid":11, "ts":1682192856979206, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856979258, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponents.dll" }} -,{ "pid":12345, "tid":11, "ts":1682192856979261, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856979310, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Jobs.pdb" }} -,{ "pid":12345, "tid":11, "ts":1682192856979312, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856979360, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsExamples.dll" }} -,{ "pid":12345, "tid":11, "ts":1682192856979363, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856979417, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.EditorCoroutines.Editor.pdb" }} -,{ "pid":12345, "tid":11, "ts":1682192856979421, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856979467, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TerrainTools.Editor.dll" }} -,{ "pid":12345, "tid":11, "ts":1682192856979469, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856979520, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Universal.Shaders.pdb" }} -,{ "pid":12345, "tid":11, "ts":1682192856979525, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856979571, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll" }} -,{ "pid":12345, "tid":11, "ts":1682192856979574, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856979622, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsTestsEditmode.pdb" }} -,{ "pid":12345, "tid":11, "ts":1682192856979625, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856979675, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/AwesomeTechnologies.VegetationStudioPro.Editor.pdb" }} -,{ "pid":12345, "tid":11, "ts":1682192856979679, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856979725, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/AwesomeTechnologies.VegetationStudioPro.Runtime.dll" }} -,{ "pid":12345, "tid":11, "ts":1682192856979729, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856979773, "dur":137, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":11, "ts":1682192856979911, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856980001, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856980012, "dur":13, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856980025, "dur":12, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856980037, "dur":1857, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856981895, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.CollabProxy.Editor.pdb" }} -,{ "pid":12345, "tid":11, "ts":1682192856981898, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856981952, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856981963, "dur":10, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856981973, "dur":15, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856981988, "dur":13, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856982001, "dur":18, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856982019, "dur":21, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856982040, "dur":13, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856982053, "dur":10, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856982063, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856982074, "dur":10, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856982084, "dur":1445, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856983529, "dur":14, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856983543, "dur":14, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856983557, "dur":15, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856983572, "dur":13, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856983586, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856983597, "dur":10, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856983607, "dur":13, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856983621, "dur":7, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856983629, "dur":874, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856984504, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.InputSystem.ref.dll_FD2EC87C14EBE081.mvfrm" }} -,{ "pid":12345, "tid":11, "ts":1682192856984518, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856984627, "dur":174, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm" }} -,{ "pid":12345, "tid":11, "ts":1682192856984802, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856984884, "dur":688, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856985574, "dur":206, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856985780, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.InputSystem.dll" }} -,{ "pid":12345, "tid":11, "ts":1682192856985784, "dur":322, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856986107, "dur":730, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856986837, "dur":291, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856987129, "dur":1037, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.RenderPipelines.Core.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":11, "ts":1682192856988167, "dur":232, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856988402, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Core.Editor.pdb" }} -,{ "pid":12345, "tid":11, "ts":1682192856988404, "dur":328, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856988733, "dur":302, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856989035, "dur":68, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856989104, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.ShaderGraph.Editor.ref.dll_0F50152946DB09D0.mvfrm" }} -,{ "pid":12345, "tid":11, "ts":1682192856989110, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856989211, "dur":171, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":11, "ts":1682192856989383, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856989461, "dur":623, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856990085, "dur":926, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.VisualScripting.Flow.Editor.dll (+pdb)" }} -,{ "pid":12345, "tid":11, "ts":1682192856991012, "dur":144, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856991160, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Flow.Editor.dll" }} -,{ "pid":12345, "tid":11, "ts":1682192856991163, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856991221, "dur":630, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856991851, "dur":203, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856992054, "dur":284, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856992338, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/PPv2URPConverters.dll" }} -,{ "pid":12345, "tid":11, "ts":1682192856992341, "dur":39, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856992381, "dur":478, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192856992859, "dur":9675356, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192866668217, "dur":386, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb" }} -,{ "pid":12345, "tid":11, "ts":1682192866668610, "dur":0, "ph":"X", "name": "StoreTimestampsOfNonGeneratedInputFiles", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1682192866668651, "dur":1899, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.pdb" }} -,{ "pid":12345, "tid":11, "ts":1682192866670556, "dur":276470, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856855375, "dur":9430, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856864805, "dur":1130, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856865935, "dur":1147, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856867083, "dur":2609, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856869692, "dur":2672, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856872365, "dur":4704, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856877069, "dur":339, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_D44320C6A1B3C637.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856877409, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856877500, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Collections.LowLevel.ILSupport.dll_7CAE04E2593369CB.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856877581, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856877670, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_CF5227D341231F89.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856877729, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856877818, "dur":128, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856877946, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856878028, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Internal.AdditionalFile.txt" }} -,{ "pid":12345, "tid":12, "ts":1682192856878029, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856878111, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponents.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856878171, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856878268, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":12, "ts":1682192856878269, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856878346, "dur":138, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Editor.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856878485, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856878573, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":12, "ts":1682192856878574, "dur":150, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856878947, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.AdditionalFile.txt" }} -,{ "pid":12345, "tid":12, "ts":1682192856878948, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856879029, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/MeshBakerCore.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856879081, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856879154, "dur":514, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856879668, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856879752, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856879809, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856879888, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.Editor.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856879958, "dur":99, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856880058, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856880111, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856880208, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":12, "ts":1682192856880209, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856880296, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamplesEditor.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856880354, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856880451, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/JBooth.ShaderPackager.Editor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":12, "ts":1682192856880452, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856880529, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/MeshBakerEditor.AdditionalFile.txt" }} -,{ "pid":12345, "tid":12, "ts":1682192856880535, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856880611, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Registration.AdditionalFile.txt" }} -,{ "pid":12345, "tid":12, "ts":1682192856880612, "dur":516, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856881129, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/14494330292695847501.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856881209, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856881302, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/7602468127534590235.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856881359, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856881432, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/1748161491239881818.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856881489, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856881559, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/5916180605834378387.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856881618, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856881693, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/9835629327973270806.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856881748, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856881833, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/13686715218353603589.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856881889, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856881964, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/9321109326917711913.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856882031, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856882105, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/7759033573704817190.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856882176, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856882275, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/15312589170787849123.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856882342, "dur":656, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856882999, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/17227893639732096016.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856883062, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856883147, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/4014436084419441659.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856883206, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856883298, "dur":23, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856883322, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856883431, "dur":19, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Monetization.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856883450, "dur":251, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856883703, "dur":17, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856883720, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856883803, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856883814, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856883891, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856883905, "dur":220, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856884126, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Networking.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856884140, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856884228, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856884239, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856884317, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856884328, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856884415, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856884426, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856884520, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856884533, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856884629, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.Internal.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856884642, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856884740, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":12, "ts":1682192856884753, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856884842, "dur":174, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.CodeGen.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856885016, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856885113, "dur":2131, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856887244, "dur":5233, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856892478, "dur":2648, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856895126, "dur":1769, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856896896, "dur":3400, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856900297, "dur":3612, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856903909, "dur":2460, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856906370, "dur":3501, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856909872, "dur":2020, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856911893, "dur":1806, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856913699, "dur":7581, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856921281, "dur":1668, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856922949, "dur":2105, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856925054, "dur":2255, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856927310, "dur":2157, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856929467, "dur":5689, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856935157, "dur":2131, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856937288, "dur":5879, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856943167, "dur":3093, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856946261, "dur":7162, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Runtime.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1682192856953424, "dur":199, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856953628, "dur":528, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1682192856954157, "dur":217, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856954377, "dur":478, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Analytics.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1682192856954855, "dur":212, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856955070, "dur":455, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Shaders.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1682192856955525, "dur":250, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856955778, "dur":648, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/MeshBakerEditor.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1682192856956426, "dur":181, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856956608, "dur":705, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1682192856957313, "dur":239, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856957555, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Burst.Editor.ref.dll_E2F92DAB6C167CC9.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856957560, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856957666, "dur":9, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.ref.dll_84A4293DBDD182DB.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856957675, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856957756, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipelines.Core.ShaderLibrary.ref.dll_7F2C410A434F5518.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856957761, "dur":131, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856957894, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualStudio.Editor.ref.dll_3A975DBA53ABA4AD.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856957900, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856957992, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TerrainTools.Editor.ref.dll_58444870EA97D8AD.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856957998, "dur":220, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856958220, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Rider.Editor.ref.dll_9B5591808ABA37AF.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856958227, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856958313, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.ShaderGraph.Utilities.ref.dll_0524057423981A9D.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856958321, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856958394, "dur":199, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856958593, "dur":192, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856958787, "dur":160, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856958947, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856959033, "dur":230, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856959264, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856959352, "dur":199, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Analytics.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856959551, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856959637, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll" }} -,{ "pid":12345, "tid":12, "ts":1682192856959642, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856959694, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Rider.Editor.dll" }} -,{ "pid":12345, "tid":12, "ts":1682192856959697, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856959748, "dur":238, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.InputSystem.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856959986, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856960067, "dur":170, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856960237, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856960313, "dur":685, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Telemetry.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1682192856960998, "dur":225, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856961225, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Internal.ref.dll_A02B3542C15F550A.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856961231, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856961322, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Environments.ref.dll_7E0AC2CDE81D9C6D.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856961330, "dur":71, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856961402, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Configuration.ref.dll_9A0B0462DB47136F.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856961407, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856961481, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Device.ref.dll_EC89AF6B778C7413.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856961486, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856961555, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Environments.Internal.ref.dll_E1932F3567E8EA54.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856961560, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856961633, "dur":150, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856961784, "dur":96, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856961882, "dur":199, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856962082, "dur":93, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856962176, "dur":141, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Scheduler.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856962317, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856962402, "dur":187, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856962589, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856962675, "dur":171, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856962846, "dur":173, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856963020, "dur":133, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsPlaymode.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856963153, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856963230, "dur":143, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1682192856963373, "dur":1703, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856965077, "dur":456, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.DevX.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1682192856965533, "dur":247, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856965781, "dur":8282, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856974064, "dur":1019, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Jobs.dll (+pdb)" }} -,{ "pid":12345, "tid":12, "ts":1682192856975083, "dur":149, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856975235, "dur":1015, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/AwesomeTechnologies.TouchReactSystemPro.Runtime.dll (+pdb)" }} -,{ "pid":12345, "tid":12, "ts":1682192856976250, "dur":348, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856976602, "dur":918, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Registration.dll (+pdb)" }} -,{ "pid":12345, "tid":12, "ts":1682192856977520, "dur":1057, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856978580, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Registration.pdb" }} -,{ "pid":12345, "tid":12, "ts":1682192856978583, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856978634, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Registration.dll" }} -,{ "pid":12345, "tid":12, "ts":1682192856978637, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856978681, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Searcher.Editor.pdb" }} -,{ "pid":12345, "tid":12, "ts":1682192856978684, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856978731, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Device.dll" }} -,{ "pid":12345, "tid":12, "ts":1682192856978736, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856978781, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Telemetry.dll" }} -,{ "pid":12345, "tid":12, "ts":1682192856978784, "dur":37, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856978822, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Burst.Editor.pdb" }} -,{ "pid":12345, "tid":12, "ts":1682192856978825, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856978867, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Burst.Editor.dll" }} -,{ "pid":12345, "tid":12, "ts":1682192856978869, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856978923, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.UI.dll" }} -,{ "pid":12345, "tid":12, "ts":1682192856978928, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856979048, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Environments.Internal.dll" }} -,{ "pid":12345, "tid":12, "ts":1682192856979050, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856979109, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Analytics.dll" }} -,{ "pid":12345, "tid":12, "ts":1682192856979111, "dur":1173, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856980285, "dur":1917, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856982202, "dur":1848, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856984050, "dur":476, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856984526, "dur":116, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856984642, "dur":903, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856985545, "dur":887, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1682192856986432, "dur":684, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856987126, "dur":1765, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1682192856988891, "dur":200, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856989103, "dur":1040, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1682192856990143, "dur":180, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856990333, "dur":476, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/PPv2URPConverters.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1682192856990809, "dur":202, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856991014, "dur":1157, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/PPv2URPConverters.dll (+pdb)" }} -,{ "pid":12345, "tid":12, "ts":1682192856992171, "dur":163, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856992337, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/PPv2URPConverters.pdb" }} -,{ "pid":12345, "tid":12, "ts":1682192856992340, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856992390, "dur":477, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1682192856992867, "dur":9954144, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1682192866964636, "dur":7067, "ph":"X", "name": "ProfilerWriteOutput" } -,{ "pid": 0, "tid": 1, "ts": 1682192867116898, "dur": 3556, "ph": "X", "name": "backend_profiler0.traceevents", "args": {} }, -{ "pid": 0, "tid": 1, "ts": 1682192867114035, "dur": 6455, "ph": "X", "name": "Write chrome-trace events", "args": {} }, +,{ "pid":12345, "tid":0, "ts":1682376183393791, "dur":1840, "ph":"X", "name": "DriverInitData", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376183395644, "dur":2698, "ph":"X", "name": "Tundra", "args": { "detail":"RemoveStaleOutputs" }} +,{ "pid":12345, "tid":0, "ts":1682376183398550, "dur":273, "ph":"X", "name": "Tundra", "args": { "detail":"PrepareNodes" }} +,{ "pid":12345, "tid":0, "ts":1682376183398823, "dur":434, "ph":"X", "name": "Tundra", "args": { "detail":"BuildQueueInit" }} +,{ "pid":12345, "tid":0, "ts":1682376183399284, "dur":8158, "ph":"X", "name": "EnqueueRequestedNodes", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376183407443, "dur":14, "ph":"X", "name": "SortWorkingStack", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962246, "dur":305, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962553, "dur":38, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962592, "dur":49, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962641, "dur":13, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962654, "dur":3, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962657, "dur":17, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962674, "dur":2, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962677, "dur":6, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962683, "dur":4, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962687, "dur":7, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962694, "dur":2, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962697, "dur":6, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962703, "dur":2, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962706, "dur":6, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962712, "dur":3, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962715, "dur":14, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962729, "dur":2, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962731, "dur":9, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962740, "dur":3, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962743, "dur":7, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962750, "dur":2, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962752, "dur":6, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962758, "dur":2, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962760, "dur":6, "ph":"X", "name": "ThreadStateDestroy", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962766, "dur":0, "ph":"X", "name": "SharedResourceDestroy", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962780, "dur":93, "ph":"X", "name": "BuildQueueDestroyTail", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185962905, "dur":14232, "ph":"X", "name": "Tundra", "args": { "detail":"Write AllBuiltNodes" }} +,{ "pid":12345, "tid":1, "ts":1682376183399517, "dur":7977, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183407508, "dur":7824, "ph":"X", "name": "CheckDagSignatures", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183415340, "dur":9, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.AdditionalFile.txt" }} +,{ "pid":12345, "tid":1, "ts":1682376183415351, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183415414, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.rsp" }} +,{ "pid":12345, "tid":1, "ts":1682376183415477, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183415532, "dur":16338, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1682376183431870, "dur":140, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183432021, "dur":14164, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1682376183446186, "dur":149, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183446349, "dur":2255, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1682376183448605, "dur":128, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183448770, "dur":748, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1682376183449519, "dur":499, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183450027, "dur":1795, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1682376183451822, "dur":337, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183452167, "dur":881, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.CodeGen.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1682376183453048, "dur":157, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183453222, "dur":657, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1682376183453879, "dur":137, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183454021, "dur":670, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/MeshBakerEditor.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1682376183454691, "dur":147, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183454842, "dur":689, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamplesEditor.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1682376183455532, "dur":157, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183455695, "dur":584, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Networking.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1682376183456279, "dur":130, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183456413, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Timeline.Editor.ref.dll_0D3D3C0B73557612.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1682376183456423, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183456472, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.Monetization.ref.dll_94F72C9EDBE6DB25.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1682376183456478, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183456521, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.2D.Sprite.Editor.ref.dll_DDBAA27A82CE9E28.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1682376183456526, "dur":39, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183456566, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.EditorCoroutines.Editor.ref.dll_34ED10A34098B2DB.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1682376183456572, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183456615, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualStudio.Editor.ref.dll_3A975DBA53ABA4AD.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1682376183456620, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183456664, "dur":561, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsPlaymode.dll (+2 others)" }} +,{ "pid":12345, "tid":1, "ts":1682376183457225, "dur":651, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183457879, "dur":1446, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/NavMeshComponentsTestsPlaymode.dll (+pdb)" }} +,{ "pid":12345, "tid":1, "ts":1682376183459325, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183459431, "dur":1190, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/AwesomeTechnologies.TouchReactSystemPro.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":1, "ts":1682376183460622, "dur":455, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183461081, "dur":1731, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.ShaderGraph.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":1, "ts":1682376183462812, "dur":155, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183462970, "dur":1049, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.VisualScripting.Core.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":1, "ts":1682376183464019, "dur":178, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183464204, "dur":982, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.TerrainTools.dll (+pdb)" }} +,{ "pid":12345, "tid":1, "ts":1682376183465186, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183465278, "dur":883, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/UnityEngine.UI.dll (+pdb)" }} +,{ "pid":12345, "tid":1, "ts":1682376183466161, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183466249, "dur":955, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.RenderPipelines.Core.Runtime.dll (+pdb)" }} +,{ "pid":12345, "tid":1, "ts":1682376183467204, "dur":101, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183467309, "dur":1347, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.2D.Sprite.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":1, "ts":1682376183468657, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183468763, "dur":1002, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Cinemachine.dll (+pdb)" }} +,{ "pid":12345, "tid":1, "ts":1682376183469765, "dur":112, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183469880, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Cinemachine.dll" }} +,{ "pid":12345, "tid":1, "ts":1682376183469882, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183469924, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsExamplesEditor.pdb" }} +,{ "pid":12345, "tid":1, "ts":1682376183469928, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470006, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Jobs.pdb" }} +,{ "pid":12345, "tid":1, "ts":1682376183470010, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470058, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Timeline.Editor.pdb" }} +,{ "pid":12345, "tid":1, "ts":1682376183470064, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470112, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Flow.Editor.pdb" }} +,{ "pid":12345, "tid":1, "ts":1682376183470115, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470170, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.2D.Sprite.Editor.pdb" }} +,{ "pid":12345, "tid":1, "ts":1682376183470174, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470222, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.Editor.pdb" }} +,{ "pid":12345, "tid":1, "ts":1682376183470226, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470277, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.Advertisements.Editor.pdb" }} +,{ "pid":12345, "tid":1, "ts":1682376183470282, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470331, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.EditorCoroutines.Editor.pdb" }} +,{ "pid":12345, "tid":1, "ts":1682376183470334, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470383, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Environments.dll" }} +,{ "pid":12345, "tid":1, "ts":1682376183470387, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470441, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Core.Runtime.pdb" }} +,{ "pid":12345, "tid":1, "ts":1682376183470445, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470521, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Core.Editor.dll" }} +,{ "pid":12345, "tid":1, "ts":1682376183470525, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470575, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Threading.pdb" }} +,{ "pid":12345, "tid":1, "ts":1682376183470579, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470630, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Universal.Editor.pdb" }} +,{ "pid":12345, "tid":1, "ts":1682376183470635, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470690, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.State.Editor.dll" }} +,{ "pid":12345, "tid":1, "ts":1682376183470695, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470743, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsTestsEditmode.dll" }} +,{ "pid":12345, "tid":1, "ts":1682376183470747, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470797, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/MeshBakerCore.dll" }} +,{ "pid":12345, "tid":1, "ts":1682376183470800, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470842, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/XNode.dll" }} +,{ "pid":12345, "tid":1, "ts":1682376183470846, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470893, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Environments.Internal.pdb" }} +,{ "pid":12345, "tid":1, "ts":1682376183470897, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183470946, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Internal.dll" }} +,{ "pid":12345, "tid":1, "ts":1682376183470949, "dur":290, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183471240, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEditor.UI.dll" }} +,{ "pid":12345, "tid":1, "ts":1682376183471243, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183471295, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsTestsPlaymode.dll" }} +,{ "pid":12345, "tid":1, "ts":1682376183471299, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183471359, "dur":278, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/PPv2URPConverters.dll.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1682376183471637, "dur":39, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183471677, "dur":118, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1682376183471795, "dur":34, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183471829, "dur":116, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Runtime.dll.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1682376183471945, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183471992, "dur":158, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.DocCodeSamples.dll.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1682376183472150, "dur":37, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183472188, "dur":155, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Threading.dll.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1682376183472344, "dur":288, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183472633, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualStudio.Editor.dll" }} +,{ "pid":12345, "tid":1, "ts":1682376183472636, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183472685, "dur":160, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/MeshBakerCore.dll.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1682376183472845, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183472899, "dur":176, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/XNode.dll.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1682376183473075, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183473125, "dur":130, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Shaders.dll.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1682376183473256, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183473300, "dur":149, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1682376183473449, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1682376183473531, "dur":2488711, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183399608, "dur":7922, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183407532, "dur":1373, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183408906, "dur":1159, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183410065, "dur":1325, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183411390, "dur":1206, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183412596, "dur":1130, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183413726, "dur":1057, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183414784, "dur":1035, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183415819, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183415877, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183415922, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.AdditionalFile.txt" }} +,{ "pid":12345, "tid":2, "ts":1682376183415927, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183415973, "dur":92, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.PackageManagerUIModule.dll_653CB7C2578CD58A.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183416066, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183416126, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_4FB697B2845ABFE3.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183416187, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183416235, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClothModule.dll_1995F9C75FCB21B4.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183416292, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183416337, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GridModule.dll_D65D47993EC216D0.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183416398, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183416456, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PhysicsModule.dll_377437F4532567A1.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183416509, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183416556, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_C45AD6F499D71C2C.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183416616, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183416672, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UmbraModule.dll_2D8248E512D4EE43.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183416732, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183416788, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAudioModule.dll_5A15E65AC304F930.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183416842, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183416890, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_7C430270322B6A3B.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183416897, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183416945, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.XRModule.dll_718617AE74E2D2C4.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183417025, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183417095, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Burst.Unsafe.dll_101A915279CBC7DC.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183417149, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183417216, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipeline.Universal.ShaderLibrary.AdditionalFile.txt" }} +,{ "pid":12345, "tid":2, "ts":1682376183417221, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183417273, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Searcher.Editor.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183417332, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183417383, "dur":94, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183417477, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183417525, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Runtime.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183417585, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183417640, "dur":88, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183417728, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183417780, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamples.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183417838, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183417880, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183417934, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183417994, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Analytics.AdditionalFile.txt" }} +,{ "pid":12345, "tid":2, "ts":1682376183417999, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183418057, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183418116, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183418166, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/JBooth.ShaderPackager.Editor.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183418218, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183418265, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/com.unity.cinemachine.editor.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183418331, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183418375, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.Internal.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183418427, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183418474, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Editor.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183418533, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183418583, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsPlaymode.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183418636, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183418690, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2391771579636945191.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183418758, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183418821, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/1748161491239881818.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183418887, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183418944, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/6591615775254759062.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183419010, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183419072, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/13686715218353603589.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183419133, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183419191, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/7759033573704817190.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183419256, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183419302, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/12295599868861940527.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183419361, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183419412, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/8306353738322043485.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183419477, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183419531, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/3818794330681902346.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183419597, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183419640, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/10571807241835812913.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183419704, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183419751, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2157608619508796868.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183419808, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183419866, "dur":21, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183419887, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183419950, "dur":20, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183419970, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183420019, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183420030, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183420078, "dur":16, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183420094, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183420144, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Runtime.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183420157, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183420202, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183420213, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183420261, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.ShaderLibrary.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183420271, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183420335, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/SimpleJSON.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183420346, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183420392, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/PPv2URPConverters.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183420404, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183420458, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.DocCodeSamples.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":2, "ts":1682376183420471, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183420522, "dur":1178, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183421701, "dur":1489, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183423190, "dur":1090, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183424280, "dur":1034, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183425315, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Jobs.CodeGen.pdb" }} +,{ "pid":12345, "tid":2, "ts":1682376183425318, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183425379, "dur":1081, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183426461, "dur":1089, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183427550, "dur":1229, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183428780, "dur":1052, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183429832, "dur":1000, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183430833, "dur":1095, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183431928, "dur":2045, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183433974, "dur":1094, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183435069, "dur":1040, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183436109, "dur":1154, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183437263, "dur":1084, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183438347, "dur":973, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183439320, "dur":1063, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183440384, "dur":1000, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183441385, "dur":1125, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183442510, "dur":1043, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183443553, "dur":973, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183444527, "dur":1266, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183445794, "dur":958, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183446753, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEditor.TestRunner.dll" }} +,{ "pid":12345, "tid":2, "ts":1682376183446757, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183446825, "dur":1040, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183447865, "dur":10, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183447875, "dur":13, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183447888, "dur":16, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183447904, "dur":13, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183447917, "dur":22, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183447940, "dur":14, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183447954, "dur":10, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183447964, "dur":12, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183447976, "dur":21, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183447998, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183448009, "dur":12, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183448021, "dur":25, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183448046, "dur":18, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183448064, "dur":15, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183448079, "dur":24, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183448104, "dur":55, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183448159, "dur":11, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183448170, "dur":603, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183448774, "dur":748, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Runtime.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1682376183449522, "dur":224, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183449750, "dur":658, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1682376183450408, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183450529, "dur":1172, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1682376183451701, "dur":122, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183451826, "dur":874, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1682376183452700, "dur":198, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183452902, "dur":638, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1682376183453540, "dur":133, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183453676, "dur":649, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Monetization.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1682376183454326, "dur":827, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183455156, "dur":1589, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1682376183456745, "dur":165, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183456913, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Telemetry.ref.dll_FA20132DD923A4D2.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183456918, "dur":34, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183456953, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Configuration.ref.dll_9A0B0462DB47136F.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183456959, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183457001, "dur":999, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/AwesomeTechnologies.VegetationStudioPro.Runtime.dll (+pdb)" }} +,{ "pid":12345, "tid":2, "ts":1682376183458000, "dur":221, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183458224, "dur":1188, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Configuration.dll (+pdb)" }} +,{ "pid":12345, "tid":2, "ts":1682376183459412, "dur":121, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183459536, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.Editor.ref.dll_6AF951BE66A4493E.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183459542, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183459613, "dur":1042, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Registration.dll (+pdb)" }} +,{ "pid":12345, "tid":2, "ts":1682376183460656, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183460750, "dur":3564, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/NavMeshComponentsTestsEditmode.dll (+pdb)" }} +,{ "pid":12345, "tid":2, "ts":1682376183464315, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183464402, "dur":933, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Postprocessing.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":2, "ts":1682376183465335, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183465436, "dur":1033, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Collections.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":2, "ts":1682376183466469, "dur":180, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183466652, "dur":978, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/NavMeshComponentsEditor.dll (+pdb)" }} +,{ "pid":12345, "tid":2, "ts":1682376183467630, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183467727, "dur":997, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Timeline.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":2, "ts":1682376183468725, "dur":493, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183469221, "dur":967, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.RenderPipelines.Core.ShaderLibrary.dll (+pdb)" }} +,{ "pid":12345, "tid":2, "ts":1682376183470188, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183470285, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Core.ShaderLibrary.pdb" }} +,{ "pid":12345, "tid":2, "ts":1682376183470288, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183470338, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsEditor.dll" }} +,{ "pid":12345, "tid":2, "ts":1682376183470341, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183470386, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Editor.pdb" }} +,{ "pid":12345, "tid":2, "ts":1682376183470389, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183470442, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponents.pdb" }} +,{ "pid":12345, "tid":2, "ts":1682376183470445, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183470493, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.ShaderGraph.Utilities.dll" }} +,{ "pid":12345, "tid":2, "ts":1682376183470496, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183470542, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.pdb" }} +,{ "pid":12345, "tid":2, "ts":1682376183470545, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183470591, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Shared.Editor.dll" }} +,{ "pid":12345, "tid":2, "ts":1682376183470594, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183470642, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Postprocessing.Runtime.pdb" }} +,{ "pid":12345, "tid":2, "ts":1682376183470645, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183470696, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.State.Editor.pdb" }} +,{ "pid":12345, "tid":2, "ts":1682376183470699, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183470753, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Core.Editor.dll" }} +,{ "pid":12345, "tid":2, "ts":1682376183470756, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183470814, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Configuration.Editor.pdb" }} +,{ "pid":12345, "tid":2, "ts":1682376183470818, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183470871, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.ShaderGraph.Editor.dll" }} +,{ "pid":12345, "tid":2, "ts":1682376183470874, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183470921, "dur":271, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor-firstpass.dll.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183471192, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183471241, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEditor.UI.pdb" }} +,{ "pid":12345, "tid":2, "ts":1682376183471243, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183471289, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Networking.pdb" }} +,{ "pid":12345, "tid":2, "ts":1682376183471292, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183471338, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.State.pdb" }} +,{ "pid":12345, "tid":2, "ts":1682376183471341, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183471384, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.DocCodeSamples.dll" }} +,{ "pid":12345, "tid":2, "ts":1682376183471387, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183471433, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.BurstCompatibilityGen.pdb" }} +,{ "pid":12345, "tid":2, "ts":1682376183471438, "dur":165, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183471604, "dur":220, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183471824, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183471879, "dur":160, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Runtime.dll.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183472039, "dur":39, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183472079, "dur":154, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.dll.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183472234, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183472286, "dur":155, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Runtime.dll.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183472442, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183472535, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.CodeGen.pdb" }} +,{ "pid":12345, "tid":2, "ts":1682376183472539, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183472593, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Rider.Editor.pdb" }} +,{ "pid":12345, "tid":2, "ts":1682376183472595, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183472639, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualStudio.Editor.pdb" }} +,{ "pid":12345, "tid":2, "ts":1682376183472642, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183472689, "dur":280, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.InputSystem.dll.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183472970, "dur":244, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183473216, "dur":160, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183473376, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183473423, "dur":143, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Searcher.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1682376183473566, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1682376183473617, "dur":2488642, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183399593, "dur":7929, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183407524, "dur":1419, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183408943, "dur":1135, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183410078, "dur":1364, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183411443, "dur":1143, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183412586, "dur":1113, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183413699, "dur":1078, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183414777, "dur":1005, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183415783, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.AdditionalFile.txt" }} +,{ "pid":12345, "tid":3, "ts":1682376183415785, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183415840, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.AdditionalFile.txt" }} +,{ "pid":12345, "tid":3, "ts":1682376183415846, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183415901, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Runtime.AdditionalFile.txt" }} +,{ "pid":12345, "tid":3, "ts":1682376183415901, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183415947, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183416008, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183416057, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsModule.dll_1602D9835671722A.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1682376183416134, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183416186, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AudioModule.dll_B2AD9CCC85AE42D0.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1682376183416246, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183416295, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GameCenterModule.dll_BE990C7165D1D1F1.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1682376183416347, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183416398, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ParticleSystemModule.dll_C3E02E218094219F.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1682376183416457, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183416505, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_6B92C2897005B056.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1682376183416564, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183416614, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_16B146CB58B58B75.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1682376183416682, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183416748, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestAssetBundleModule.dll_FAC1618CDBA852AC.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1682376183416807, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183416859, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VRModule.dll_3EC754A9EBA88566.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1682376183416917, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183416974, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.CodeGen.AdditionalFile.txt" }} +,{ "pid":12345, "tid":3, "ts":1682376183416974, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183417023, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Runtime.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183417083, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183417138, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.YamlDotNet.dll_F93C4918FD9522C3.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1682376183417213, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183417272, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Searcher.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":3, "ts":1682376183417278, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183417321, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Internal.AdditionalFile.txt" }} +,{ "pid":12345, "tid":3, "ts":1682376183417322, "dur":38, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183417361, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Editor.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183417435, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183417496, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":3, "ts":1682376183417497, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183417550, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Editor.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183417649, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183417700, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Runtime.AdditionalFile.txt" }} +,{ "pid":12345, "tid":3, "ts":1682376183417700, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183417747, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/XNode.AdditionalFile.txt" }} +,{ "pid":12345, "tid":3, "ts":1682376183417752, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183417801, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.AdditionalFile.txt" }} +,{ "pid":12345, "tid":3, "ts":1682376183417805, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183417855, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsEditor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":3, "ts":1682376183417855, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183417900, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183417954, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183418006, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":3, "ts":1682376183418006, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183418058, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":3, "ts":1682376183418059, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183418108, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.Editor.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183418160, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183418206, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":3, "ts":1682376183418210, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183418256, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamplesEditor.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183418310, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183418358, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/PPv2URPConverters.AdditionalFile.txt" }} +,{ "pid":12345, "tid":3, "ts":1682376183418359, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183418410, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Networking.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183418463, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183418521, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183418597, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183418657, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.DevX.Editor.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183418709, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183418760, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/16880971569482824950.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183418824, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183418877, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/5803490648119114145.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183418943, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183418989, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/3648465134513896125.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183419053, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183419104, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/10678863128556690338.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183419181, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183419240, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/5678380843536809211.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183419310, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183419356, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/6638697812462351101.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183419422, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183419471, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2074369592318871490.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183419529, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183419574, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/16794585710609549488.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183419642, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183419694, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/12062543880932173298.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183419752, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183419797, "dur":20, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-firstpass.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183419817, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183419870, "dur":17, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183419887, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183419944, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Cinemachine.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183419958, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183420006, "dur":17, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183420023, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183420082, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.CodeGen.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183420092, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183420145, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Scheduler.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183420159, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183420207, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183420221, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183420279, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183420289, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183420344, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/JBooth.ShaderPackager.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183420355, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183420406, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":3, "ts":1682376183420416, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183420476, "dur":189, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.CodeGen.dll.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1682376183420665, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183420721, "dur":1185, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183421907, "dur":1505, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183423413, "dur":1215, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183424629, "dur":999, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183425629, "dur":1068, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183426697, "dur":1154, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183427852, "dur":1554, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183429407, "dur":1280, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183430688, "dur":1786, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183432474, "dur":1524, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183433999, "dur":1029, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183435029, "dur":1069, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183436099, "dur":1003, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183437102, "dur":1067, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183438170, "dur":1022, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183439192, "dur":1049, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183440242, "dur":1053, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183441295, "dur":1007, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183442302, "dur":1030, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183443332, "dur":1029, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183444361, "dur":920, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183445282, "dur":959, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183446242, "dur":1307, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183447550, "dur":1101, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183448652, "dur":524, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183449176, "dur":723, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Runtime.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1682376183449900, "dur":397, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183450300, "dur":820, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1682376183451121, "dur":1046, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183452171, "dur":852, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Runtime.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1682376183453023, "dur":131, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183453157, "dur":708, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1682376183453865, "dur":136, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183454005, "dur":536, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1682376183454541, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183454651, "dur":468, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/SimpleJSON.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1682376183455120, "dur":128, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183455251, "dur":1821, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1682376183457072, "dur":148, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183457226, "dur":2145, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1682376183459371, "dur":146, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183459523, "dur":854, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1682376183460378, "dur":139, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183460522, "dur":665, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1682376183461187, "dur":480, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183461673, "dur":716, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-firstpass.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1682376183462389, "dur":350, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183462744, "dur":1590, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1682376183465657, "dur":494, "ph":"X", "name": "StoreTimestampsOfNonGeneratedInputFiles", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376183466775, "dur":1521869, "ph":"X", "name": "Csc", "args": { "detail":"Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1682376185008181, "dur":859, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":3, "ts":1682376185009041, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376185009133, "dur":200301, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp-Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":3, "ts":1682376185210105, "dur":103, "ph":"X", "name": "StoreTimestampsOfNonGeneratedInputFiles", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376185210292, "dur":430114, "ph":"X", "name": "ILPostProcess", "args": { "detail":"Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp-Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":3, "ts":1682376185649302, "dur":251, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp-Editor.pdb" }} +,{ "pid":12345, "tid":3, "ts":1682376185649554, "dur":35, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1682376185649595, "dur":312661, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183399547, "dur":7965, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183407515, "dur":1369, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183408884, "dur":1100, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183409985, "dur":1158, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183411144, "dur":1223, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183412367, "dur":1044, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183413411, "dur":1074, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183414485, "dur":1017, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183415503, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.rsp" }} +,{ "pid":12345, "tid":4, "ts":1682376183415567, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183415621, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.AdditionalFile.txt" }} +,{ "pid":12345, "tid":4, "ts":1682376183415625, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183415683, "dur":14753, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1682376183430436, "dur":136, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183430585, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UI.ref.dll_08FEAA520A2EFD60.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183430591, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183430661, "dur":1524, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183432185, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.TestRunner.pdb" }} +,{ "pid":12345, "tid":4, "ts":1682376183432190, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183432238, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.TestRunner.dll" }} +,{ "pid":12345, "tid":4, "ts":1682376183432240, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183432281, "dur":1040, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183433322, "dur":1761, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183435083, "dur":1045, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183436128, "dur":1113, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183437241, "dur":1138, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183438379, "dur":1073, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183439453, "dur":1041, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183440494, "dur":1051, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183441545, "dur":998, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183442544, "dur":1140, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183443684, "dur":1010, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183444694, "dur":1239, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183445933, "dur":964, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183446898, "dur":964, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183447862, "dur":728, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183448590, "dur":182, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183448772, "dur":680, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1682376183449452, "dur":207, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183449666, "dur":755, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Internal.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1682376183450421, "dur":144, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183450569, "dur":773, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Runtime.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1682376183451342, "dur":328, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183451674, "dur":667, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1682376183452341, "dur":141, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183452486, "dur":590, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Analytics.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1682376183453076, "dur":348, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183453427, "dur":711, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.2D.Sprite.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1682376183454139, "dur":115, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183454258, "dur":543, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1682376183454801, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183454922, "dur":659, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Scheduler.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1682376183455581, "dur":155, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183455740, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.ref.dll_131AC9C5EC6E6517.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183455747, "dur":37, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183455793, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Burst.ref.dll_F30DFA20C0DD1968.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183455800, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183455847, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.InputSystem.ref.dll_FD2EC87C14EBE081.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183455855, "dur":38, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183455899, "dur":9, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.ref.dll_D75DF4EA1AFE54F4.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183455908, "dur":64, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183455978, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipelines.Core.Editor.ref.dll_46EB9B6930B27991.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183455988, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183456031, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Postprocessing.Editor.ref.dll_1C9CD17610FFA3F0.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183456039, "dur":37, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183456077, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Jobs.ref.dll_6319796B1FEE3FB4.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183456082, "dur":33, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183456116, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipeline.Universal.ShaderLibrary.ref.dll_5436F99F8BDCED8B.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183456122, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183456163, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.PlasticSCM.Editor.ref.dll_257AEB342BE77856.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183456169, "dur":189, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183456359, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.ref.dll_84A4293DBDD182DB.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183456365, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183456434, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TerrainTools.ref.dll_E38CD1BEC69E4F44.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183456442, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183456501, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Rider.Editor.ref.dll_9B5591808ABA37AF.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183456512, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183456556, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VSCode.Editor.ref.dll_3628369EB48E4C19.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183456564, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183456606, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.ref.dll_1A2083B43FB0BF18.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183456616, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183456667, "dur":609, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.DocCodeSamples.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1682376183457276, "dur":174, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183457452, "dur":982, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Collections.DocCodeSamples.dll (+pdb)" }} +,{ "pid":12345, "tid":4, "ts":1682376183458434, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183458521, "dur":965, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.RenderPipeline.Universal.ShaderLibrary.dll (+pdb)" }} +,{ "pid":12345, "tid":4, "ts":1682376183459487, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183459570, "dur":818, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Burst.dll (+pdb)" }} +,{ "pid":12345, "tid":4, "ts":1682376183460388, "dur":97, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183460487, "dur":1028, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Mathematics.dll (+pdb)" }} +,{ "pid":12345, "tid":4, "ts":1682376183461515, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183461616, "dur":998, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/UnityEngine.Monetization.dll (+pdb)" }} +,{ "pid":12345, "tid":4, "ts":1682376183462614, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183462737, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.ShaderGraph.Utilities.ref.dll_0524057423981A9D.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183462742, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183462795, "dur":873, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor-firstpass.dll (+2 others)" }} +,{ "pid":12345, "tid":4, "ts":1682376183463668, "dur":155, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183463827, "dur":1388, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp-Editor-firstpass.dll (+pdb)" }} +,{ "pid":12345, "tid":4, "ts":1682376183465216, "dur":100, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183465320, "dur":1099, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.RenderPipelines.Core.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":4, "ts":1682376183466419, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183466530, "dur":1609, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/UnityEngine.Advertisements.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":4, "ts":1682376183468139, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183468226, "dur":886, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Timeline.dll (+pdb)" }} +,{ "pid":12345, "tid":4, "ts":1682376183469112, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183469183, "dur":978, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Analytics.dll (+pdb)" }} +,{ "pid":12345, "tid":4, "ts":1682376183470161, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183470250, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Analytics.pdb" }} +,{ "pid":12345, "tid":4, "ts":1682376183470254, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183470301, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Core.ShaderLibrary.dll" }} +,{ "pid":12345, "tid":4, "ts":1682376183470305, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183470351, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/JBooth.ShaderPackager.Editor.pdb" }} +,{ "pid":12345, "tid":4, "ts":1682376183470355, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183470404, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Universal.Runtime.dll" }} +,{ "pid":12345, "tid":4, "ts":1682376183470411, "dur":79, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183470491, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.ShaderGraph.Utilities.pdb" }} +,{ "pid":12345, "tid":4, "ts":1682376183470495, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183470544, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.pdb" }} +,{ "pid":12345, "tid":4, "ts":1682376183470548, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183470595, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Core.pdb" }} +,{ "pid":12345, "tid":4, "ts":1682376183470599, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183470647, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp-Editor-firstpass.dll" }} +,{ "pid":12345, "tid":4, "ts":1682376183470651, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183470697, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.CollabProxy.Editor.pdb" }} +,{ "pid":12345, "tid":4, "ts":1682376183470701, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183470750, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.SettingsProvider.Editor.dll" }} +,{ "pid":12345, "tid":4, "ts":1682376183470755, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183470811, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.Advertisements.DevX.Editor.pdb" }} +,{ "pid":12345, "tid":4, "ts":1682376183470815, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183470869, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.ShaderGraph.Editor.pdb" }} +,{ "pid":12345, "tid":4, "ts":1682376183470873, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183470928, "dur":204, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183471133, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183471182, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/AwesomeTechnologies.VegetationStudioPro.Editor.dll" }} +,{ "pid":12345, "tid":4, "ts":1682376183471185, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183471228, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Burst.pdb" }} +,{ "pid":12345, "tid":4, "ts":1682376183471230, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183471272, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Configuration.pdb" }} +,{ "pid":12345, "tid":4, "ts":1682376183471275, "dur":39, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183471315, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/XNodeEditor.dll" }} +,{ "pid":12345, "tid":4, "ts":1682376183471320, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183471362, "dur":305, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/com.unity.cinemachine.editor.dll.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183471667, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183471718, "dur":175, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Cinemachine.dll.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183471893, "dur":32, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183471926, "dur":156, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183472082, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183472124, "dur":154, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Networking.dll.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183472279, "dur":272, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183472552, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.CodeGen.dll" }} +,{ "pid":12345, "tid":4, "ts":1682376183472554, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183472602, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VSCode.Editor.dll" }} +,{ "pid":12345, "tid":4, "ts":1682376183472604, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183472647, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Burst.CodeGen.dll" }} +,{ "pid":12345, "tid":4, "ts":1682376183472649, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183472701, "dur":228, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.dll.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183472929, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183472993, "dur":180, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183473173, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183473217, "dur":174, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamples.dll.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1682376183473391, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376183473433, "dur":2175877, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376185649312, "dur":263919, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp-Editor.dll" }} +,{ "pid":12345, "tid":4, "ts":1682376185913232, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1682376185913299, "dur":48951, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183399630, "dur":7909, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183407541, "dur":1318, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183408860, "dur":1195, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183410056, "dur":1426, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183411482, "dur":1097, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183412580, "dur":1141, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183413721, "dur":1082, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183414804, "dur":1058, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183415863, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183415932, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183415977, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_0E48623D57FCC35A.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183416067, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183416140, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AIModule.dll_F0818FF6EDA6FA42.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183416199, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183416249, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_8C3FC5EA38D8B6F7.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183416312, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183416364, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.HotReloadModule.dll_F3B9433ACCF684E0.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183416427, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183416472, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ProfilerModule.dll_D5977E22A8AC4443.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183416523, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183416573, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_0E9E172FE6D46355.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183416624, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183416687, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_7D584FC05682CCF6.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183416776, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183416829, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_009C5F78367CD1A2.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183416882, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183416938, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.dll_A234DA0EF1216487.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183416947, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183417007, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Burst.Cecil.dll_8CDBB33055545F87.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183417065, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183417119, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Plastic.Newtonsoft.Json.dll_863A9CBBAA3082F4.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183417173, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183417239, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":5, "ts":1682376183417245, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183417295, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Internal.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183417363, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183417406, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183417465, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183417515, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Runtime.AdditionalFile.txt" }} +,{ "pid":12345, "tid":5, "ts":1682376183417520, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183417574, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183417645, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183417696, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Runtime.AdditionalFile.txt" }} +,{ "pid":12345, "tid":5, "ts":1682376183417696, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183417747, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamples.AdditionalFile.txt" }} +,{ "pid":12345, "tid":5, "ts":1682376183417748, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183417805, "dur":98, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183417903, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183417949, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Shaders.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183417999, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183418060, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183418114, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183418163, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Threading.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183418215, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183418261, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Scheduler.AdditionalFile.txt" }} +,{ "pid":12345, "tid":5, "ts":1682376183418262, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183418309, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Device.AdditionalFile.txt" }} +,{ "pid":12345, "tid":5, "ts":1682376183418310, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183418353, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":5, "ts":1682376183418354, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183418406, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":5, "ts":1682376183418407, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183418455, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Networking.AdditionalFile.txt" }} +,{ "pid":12345, "tid":5, "ts":1682376183418459, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183418512, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.AdditionalFile.txt" }} +,{ "pid":12345, "tid":5, "ts":1682376183418512, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183418576, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.DocCodeSamples.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183418634, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183418683, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/12540594754886937326.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183418750, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183418799, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/8899139255040401798.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183418867, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183418916, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/11609355203541698906.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183418983, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183419026, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/11368897008157290650.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183419093, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183419136, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/4345639507432806382.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183419202, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183419246, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/15183149355271759364.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183419313, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183419360, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/5249134988916615986.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183419417, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183419460, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/911446528535106498.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183419518, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183419562, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/13104283549428636260.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183419636, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183419685, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/1475724585155360059.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183419743, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183419789, "dur":17, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/com.unity.cinemachine.editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183419806, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183419857, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Monetization.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183419872, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183419921, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183419934, "dur":38, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183419973, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183419981, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183420036, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183420051, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183420113, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/MeshBakerEditor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183420124, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183420179, "dur":16, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183420195, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183420250, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183420260, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183420314, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183420325, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183420370, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183420381, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183420428, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":5, "ts":1682376183420439, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183420491, "dur":166, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183420657, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183420706, "dur":1054, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183421760, "dur":1548, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183423308, "dur":2750, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183426059, "dur":1286, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183427346, "dur":1205, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183428552, "dur":1114, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183429667, "dur":1008, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183430676, "dur":987, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183431663, "dur":1007, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183432670, "dur":1069, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183433739, "dur":1049, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183434789, "dur":1070, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183435859, "dur":1016, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183436876, "dur":1040, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183437917, "dur":1139, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183439056, "dur":2043, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183441100, "dur":979, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183442079, "dur":1013, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183443093, "dur":999, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183444092, "dur":938, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183445031, "dur":1061, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183446093, "dur":953, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183447047, "dur":985, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183448032, "dur":18, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183448050, "dur":19, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183448069, "dur":21, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183448090, "dur":18, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183448108, "dur":42, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183448150, "dur":12, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183448162, "dur":7, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183448170, "dur":603, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183448773, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UI.ref.dll_4C98D3F7040CD4F5.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183448781, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183448849, "dur":539, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/NavMeshComponents.dll (+2 others)" }} +,{ "pid":12345, "tid":5, "ts":1682376183449389, "dur":1486, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183450879, "dur":624, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamples.dll (+2 others)" }} +,{ "pid":12345, "tid":5, "ts":1682376183451503, "dur":137, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183451644, "dur":655, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsEditor.dll (+2 others)" }} +,{ "pid":12345, "tid":5, "ts":1682376183452299, "dur":3445, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183455749, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipelines.Core.Runtime.ref.dll_CE6A42C97D96EB0A.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183455755, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183455810, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Postprocessing.Runtime.ref.dll_3152B6A9836FBF3B.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183455815, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183455885, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Internal.ref.dll_A02B3542C15F550A.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183455891, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183455947, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Mathematics.ref.dll_E8EFDB1B8D5C174E.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183455954, "dur":234, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183456194, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Environments.ref.dll_7E0AC2CDE81D9C6D.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183456200, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183456246, "dur":9, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Burst.Editor.ref.dll_E2F92DAB6C167CC9.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183456255, "dur":37, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183456294, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Searcher.Editor.ref.dll_12B7E1785E41BE0E.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183456302, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183456345, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Mathematics.Editor.ref.dll_9A20CFD48BC11F43.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183456352, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183456416, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.ShaderGraph.Editor.ref.dll_0F50152946DB09D0.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183456421, "dur":69, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183456493, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipelines.Core.ShaderLibrary.ref.dll_7F2C410A434F5518.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183456499, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183456547, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Collections.Editor.ref.dll_E4491E98C71DB4B4.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183456552, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183456595, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TerrainTools.Editor.ref.dll_58444870EA97D8AD.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183456601, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183456643, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.Advertisements.Editor.ref.dll_95BDE7AB6BD0B967.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183456649, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183456691, "dur":635, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.BurstCompatibilityGen.dll (+2 others)" }} +,{ "pid":12345, "tid":5, "ts":1682376183457326, "dur":130, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183457458, "dur":886, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Collections.BurstCompatibilityGen.dll (+pdb)" }} +,{ "pid":12345, "tid":5, "ts":1682376183458345, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183458425, "dur":1019, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Networking.dll (+pdb)" }} +,{ "pid":12345, "tid":5, "ts":1682376183459444, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183459534, "dur":704, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":5, "ts":1682376183460238, "dur":128, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183460369, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.SettingsProvider.Editor.ref.dll_A1A44354E0B583A8.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183460375, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183460420, "dur":987, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/IngameDebugConsole.Runtime.dll (+pdb)" }} +,{ "pid":12345, "tid":5, "ts":1682376183461407, "dur":76, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183461487, "dur":898, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.PlasticSCM.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":5, "ts":1682376183462385, "dur":116, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183462503, "dur":1031, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Configuration.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":5, "ts":1682376183463534, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183463647, "dur":1193, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.VisualScripting.State.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":5, "ts":1682376183464840, "dur":102, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183464946, "dur":1571, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.ShaderGraph.Utilities.dll (+pdb)" }} +,{ "pid":12345, "tid":5, "ts":1682376183466518, "dur":105, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183466626, "dur":978, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/JBooth.ShaderPackager.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":5, "ts":1682376183467604, "dur":84, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183467691, "dur":945, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Collections.dll (+pdb)" }} +,{ "pid":12345, "tid":5, "ts":1682376183468637, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183468746, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Configuration.Editor.ref.dll_FF09FAD520872032.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183468756, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183468804, "dur":1101, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp-firstpass.dll (+pdb)" }} +,{ "pid":12345, "tid":5, "ts":1682376183469905, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183469993, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp-firstpass.pdb" }} +,{ "pid":12345, "tid":5, "ts":1682376183469996, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470041, "dur":27, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.Advertisements.pdb" }} +,{ "pid":12345, "tid":5, "ts":1682376183470068, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470126, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Burst.Editor.dll" }} +,{ "pid":12345, "tid":5, "ts":1682376183470129, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470180, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.pdb" }} +,{ "pid":12345, "tid":5, "ts":1682376183470183, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470229, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TerrainTools.Editor.dll" }} +,{ "pid":12345, "tid":5, "ts":1682376183470232, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470276, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/MeshBakerEditor.pdb" }} +,{ "pid":12345, "tid":5, "ts":1682376183470278, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470332, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsEditor.pdb" }} +,{ "pid":12345, "tid":5, "ts":1682376183470335, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470384, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Editor.dll" }} +,{ "pid":12345, "tid":5, "ts":1682376183470387, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470432, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Core.Runtime.dll" }} +,{ "pid":12345, "tid":5, "ts":1682376183470435, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470480, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.Editor.pdb" }} +,{ "pid":12345, "tid":5, "ts":1682376183470483, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470524, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Core.Editor.pdb" }} +,{ "pid":12345, "tid":5, "ts":1682376183470527, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470576, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Threading.dll" }} +,{ "pid":12345, "tid":5, "ts":1682376183470580, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470628, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Universal.Editor.dll" }} +,{ "pid":12345, "tid":5, "ts":1682376183470632, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470680, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Telemetry.pdb" }} +,{ "pid":12345, "tid":5, "ts":1682376183470683, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470728, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsTestsEditmode.pdb" }} +,{ "pid":12345, "tid":5, "ts":1682376183470731, "dur":73, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470805, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.Advertisements.DevX.Editor.dll" }} +,{ "pid":12345, "tid":5, "ts":1682376183470809, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470867, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/XNode.pdb" }} +,{ "pid":12345, "tid":5, "ts":1682376183470870, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470919, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Environments.Internal.dll" }} +,{ "pid":12345, "tid":5, "ts":1682376183470924, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183470970, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Internal.pdb" }} +,{ "pid":12345, "tid":5, "ts":1682376183470974, "dur":164, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183471138, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Registration.dll" }} +,{ "pid":12345, "tid":5, "ts":1682376183471142, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183471194, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Flow.pdb" }} +,{ "pid":12345, "tid":5, "ts":1682376183471198, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183471249, "dur":249, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183471498, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183471549, "dur":217, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183471766, "dur":38, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183471805, "dur":164, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183471969, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183472011, "dur":181, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183472192, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183472238, "dur":129, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.Internal.dll.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183472367, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183472480, "dur":141, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183472621, "dur":36, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183472658, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183472755, "dur":34, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183472790, "dur":154, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/SimpleJSON.dll.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183472944, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183472985, "dur":154, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.dll.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183473139, "dur":36, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183473176, "dur":135, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsEditmode.dll.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183473311, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183473367, "dur":174, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":5, "ts":1682376183473541, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1682376183473590, "dur":2488677, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183399660, "dur":7915, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183407588, "dur":1460, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183409049, "dur":1145, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183410195, "dur":1299, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183411494, "dur":1341, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183412836, "dur":1169, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183414006, "dur":1055, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183415062, "dur":1083, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183416146, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_944BC2569F90E100.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183416212, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183416260, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.CrashReportingModule.dll_70CDE4D512829611.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183416323, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183416375, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.InputModule.dll_1923647CFBE66774.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183416441, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183416491, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ScreenCaptureModule.dll_C81B7A5E094705A4.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183416544, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183416594, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_F0B71AE440A09198.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183416661, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183416709, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_A380F1B8FE419C0F.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183416804, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183416854, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VirtualTexturingModule.dll_D44320C6A1B3C637.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183416913, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183416961, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.CodeGen.AdditionalFile.txt" }} +,{ "pid":12345, "tid":6, "ts":1682376183416966, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183417012, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Runtime.AdditionalFile.txt" }} +,{ "pid":12345, "tid":6, "ts":1682376183417017, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183417068, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Antlr3.Runtime.dll_AAA96FFA2E5E32E2.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183417135, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183417199, "dur":132, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183417331, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183417383, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponents.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183417449, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183417498, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":6, "ts":1682376183417498, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183417544, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_3025156E42E53A65.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183417552, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183417605, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183417672, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183417732, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/MeshBakerCore.AdditionalFile.txt" }} +,{ "pid":12345, "tid":6, "ts":1682376183417738, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183417794, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183417847, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183417889, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":6, "ts":1682376183417890, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183417934, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.2D.Sprite.Editor.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183417990, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183418034, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183418092, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183418141, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Monetization.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183418201, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183418252, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamplesEditor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":6, "ts":1682376183418257, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183418311, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/JBooth.ShaderPackager.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":6, "ts":1682376183418311, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183418372, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/MeshBakerEditor.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183418428, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183418479, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor-firstpass.AdditionalFile.txt" }} +,{ "pid":12345, "tid":6, "ts":1682376183418480, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183418524, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsEditmode.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183418578, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183418644, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183418716, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183418763, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/7602468127534590235.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183418828, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183418879, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/18218310762646611085.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183418935, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183418981, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/1418726328684876121.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183419053, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183419102, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.CompilationPipeline.Common.dll_95A2D0A3BBEEE89C.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183419110, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183419162, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/11169949131693821681.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183419230, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183419276, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/15312589170787849123.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183419354, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183419404, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/1907345496941296335.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183419472, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183419519, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/6262281476893245489.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183419590, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183419637, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/17227893639732096016.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183419697, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183419744, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/14814235663552238418.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183419809, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183419869, "dur":19, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183419888, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183419961, "dur":15, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Runtime.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183419977, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183420030, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183420045, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183420093, "dur":15, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Telemetry.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183420108, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183420167, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/XNode.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183420181, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183420228, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183420238, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183420285, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183420298, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183420345, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Runtime.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183420356, "dur":77, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183420434, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.DevX.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":6, "ts":1682376183420444, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183420496, "dur":1137, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183421634, "dur":1461, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183423095, "dur":1901, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183424997, "dur":1494, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183426492, "dur":1261, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183427754, "dur":1013, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183428767, "dur":972, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183429740, "dur":1976, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183431717, "dur":1032, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183432750, "dur":1075, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183433825, "dur":1044, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183434870, "dur":1101, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183435971, "dur":1075, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183437046, "dur":1358, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183438405, "dur":1081, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183439486, "dur":3806, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183443292, "dur":970, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183444262, "dur":4146, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183448408, "dur":927, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183449335, "dur":793, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1682376183450129, "dur":510, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183450642, "dur":737, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/MeshBakerCore.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1682376183451379, "dur":719, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183452101, "dur":536, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1682376183452637, "dur":106, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183452746, "dur":549, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Telemetry.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1682376183453295, "dur":709, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183454009, "dur":583, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.ShaderLibrary.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1682376183454592, "dur":139, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183454735, "dur":638, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/JBooth.ShaderPackager.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1682376183455373, "dur":154, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183455531, "dur":890, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Device.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1682376183456421, "dur":230, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183456655, "dur":695, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Registration.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1682376183457350, "dur":195, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183457550, "dur":906, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1682376183458457, "dur":195, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183458656, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipelines.Universal.Editor.ref.dll_0FF7AC68384616B1.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183458663, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183458724, "dur":3120, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.DevX.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1682376183461844, "dur":125, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183461972, "dur":1311, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/UnityEngine.Advertisements.DevX.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":6, "ts":1682376183463284, "dur":420, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183463707, "dur":4882, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.TextMeshPro.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":6, "ts":1682376183468589, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183468697, "dur":1124, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/NavMeshComponentsExamplesEditor.dll (+pdb)" }} +,{ "pid":12345, "tid":6, "ts":1682376183469821, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183469919, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsExamplesEditor.dll" }} +,{ "pid":12345, "tid":6, "ts":1682376183469923, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183469971, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Jobs.dll" }} +,{ "pid":12345, "tid":6, "ts":1682376183469976, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183470023, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/AwesomeTechnologies.TouchReactSystemPro.Runtime.pdb" }} +,{ "pid":12345, "tid":6, "ts":1682376183470026, "dur":290, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183470318, "dur":189, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Registration.dll.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183470507, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183470556, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.dll" }} +,{ "pid":12345, "tid":6, "ts":1682376183470560, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183470606, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Core.dll" }} +,{ "pid":12345, "tid":6, "ts":1682376183470611, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183470656, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp-Editor-firstpass.pdb" }} +,{ "pid":12345, "tid":6, "ts":1682376183470660, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183470708, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.CollabProxy.Editor.dll" }} +,{ "pid":12345, "tid":6, "ts":1682376183470712, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183470757, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Core.Editor.pdb" }} +,{ "pid":12345, "tid":6, "ts":1682376183470761, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183470814, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Configuration.Editor.dll" }} +,{ "pid":12345, "tid":6, "ts":1682376183470817, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183470875, "dur":196, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183471071, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183471116, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/IngameDebugConsole.Runtime.dll" }} +,{ "pid":12345, "tid":6, "ts":1682376183471119, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183471160, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/com.unity.cinemachine.editor.dll" }} +,{ "pid":12345, "tid":6, "ts":1682376183471163, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183471206, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Device.dll" }} +,{ "pid":12345, "tid":6, "ts":1682376183471208, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183471250, "dur":213, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183471464, "dur":1266, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183472731, "dur":154, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/NavMeshComponents.dll.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183472885, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183472928, "dur":162, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/MeshBakerEditor.dll.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183473091, "dur":83, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183473175, "dur":180, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/JBooth.ShaderPackager.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183473355, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183473400, "dur":159, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.2D.Sprite.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1682376183473559, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1682376183473609, "dur":2488671, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183399698, "dur":7898, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183407599, "dur":1287, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183408887, "dur":1166, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183410053, "dur":1133, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183411186, "dur":1257, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183412444, "dur":1133, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183413577, "dur":1135, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183414713, "dur":1007, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183415721, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.AdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1682376183415722, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183415779, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183415837, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183415899, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.InputSystem.AdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1682376183415900, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183415943, "dur":138, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183416081, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183416137, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UnityConnectModule.dll_B6216DAA03B99B64.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1682376183416205, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183416255, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.CoreModule.dll_F8EC2BAB266D80D9.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1682376183416315, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183416368, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.IMGUIModule.dll_EB0D3C334BDFD6B1.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1682376183416447, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183416504, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_A7C57F018741676B.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1682376183416559, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183416611, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TLSModule.dll_7FBDC709600F6835.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1682376183416675, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183416730, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_0B794DA4DE561539.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1682376183416797, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183416845, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_D7B7213748405E75.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1682376183416898, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183416946, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.CodeGen.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183416998, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183417052, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Burst.Cecil.Rocks.dll_EAEC4A72F0696507.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1682376183417118, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183417170, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.TextureAssets.dll_905A726CBE6280BB.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1682376183417232, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183417283, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Utilities.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183417342, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183417391, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.AdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1682376183417392, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183417440, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1682376183417441, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183417492, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.AdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1682376183417492, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183417536, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183417588, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183417635, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.AdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1682376183417640, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183417687, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Runtime.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183417756, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183417808, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1682376183417813, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183417864, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1682376183417865, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183417918, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.ShaderLibrary.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183417970, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183418020, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1682376183418021, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183418079, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Telemetry.AdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1682376183418080, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183418127, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Monetization.AdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1682376183418128, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183418171, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Threading.AdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1682376183418172, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183418220, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Editor.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183418272, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183418316, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/SimpleJSON.AdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1682376183418317, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183418365, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/PPv2URPConverters.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183418421, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183418469, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1682376183418470, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183418522, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsEditmode.AdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1682376183418523, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183418573, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.DocCodeSamples.AdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1682376183418574, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183418627, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":7, "ts":1682376183418628, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183418671, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/12248871281822510316.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183418733, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183418781, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/17471587741674112842.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183418853, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183418904, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/9870516708743257357.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183418967, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183419013, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/9835629327973270806.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183419067, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183419113, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/9347744537272444272.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183419181, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183419229, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/1723042715960067801.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183419301, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183419348, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/10010842633742469623.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183419403, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183419449, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/17833018831532810861.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183419508, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183419552, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/4425289655808235400.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183419612, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183419653, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/10292501669419677951.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183419717, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183419763, "dur":17, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183419780, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183419829, "dur":18, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183419847, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183419896, "dur":19, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183419915, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183419964, "dur":15, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Registration.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183419979, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183420034, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183420049, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183420106, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsPlaymode.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183420119, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183420178, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183420188, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183420243, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183420253, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183420298, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183420309, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183420355, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Device.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183420366, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183420413, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipeline.Universal.ShaderLibrary.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":7, "ts":1682376183420424, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183420477, "dur":194, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1682376183420671, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183420737, "dur":1150, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183421887, "dur":1503, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183423390, "dur":1384, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183424775, "dur":1046, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183425821, "dur":1220, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183427041, "dur":1174, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183428215, "dur":1468, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183429684, "dur":1127, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183430811, "dur":1588, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183432399, "dur":1656, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183434055, "dur":1183, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183435238, "dur":2333, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183437572, "dur":1231, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183438804, "dur":5603, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183444407, "dur":1200, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183445607, "dur":1338, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183446945, "dur":1588, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183448533, "dur":237, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183448773, "dur":1491, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.InputSystem.dll (+2 others)" }} +,{ "pid":12345, "tid":7, "ts":1682376183450264, "dur":154, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183450423, "dur":837, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Runtime.dll (+2 others)" }} +,{ "pid":12345, "tid":7, "ts":1682376183451260, "dur":153, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183451417, "dur":1265, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipeline.Universal.ShaderLibrary.dll (+2 others)" }} +,{ "pid":12345, "tid":7, "ts":1682376183452683, "dur":136, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183452823, "dur":852, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Runtime.dll (+2 others)" }} +,{ "pid":12345, "tid":7, "ts":1682376183453675, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183453799, "dur":746, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Cinemachine.dll (+2 others)" }} +,{ "pid":12345, "tid":7, "ts":1682376183454545, "dur":585, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183455133, "dur":656, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.Internal.dll (+2 others)" }} +,{ "pid":12345, "tid":7, "ts":1682376183455789, "dur":123, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183455916, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Collections.ref.dll_656D7410E7809ECD.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1682376183455923, "dur":36, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183455964, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipelines.Universal.Runtime.ref.dll_5400A10AF7CC6BEA.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1682376183455969, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183456013, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Timeline.ref.dll_621CDDF9C514DF8F.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1682376183456020, "dur":398, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183456422, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.Advertisements.ref.dll_324BF20D18302AEA.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1682376183456426, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183456478, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Analytics.ref.dll_EDA1682A714EA6BF.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1682376183456488, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183456536, "dur":9, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipelines.Universal.Shaders.ref.dll_9468B054363B0720.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1682376183456545, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183456592, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.Editor.ref.dll_159E061D77A10B86.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1682376183456600, "dur":68, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183456669, "dur":579, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsEditmode.dll (+2 others)" }} +,{ "pid":12345, "tid":7, "ts":1682376183457249, "dur":1434, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183458686, "dur":3555, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":7, "ts":1682376183462242, "dur":140, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183462386, "dur":2248, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.CollabProxy.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":7, "ts":1682376183464634, "dur":129, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183464766, "dur":969, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Threading.dll (+pdb)" }} +,{ "pid":12345, "tid":7, "ts":1682376183465735, "dur":507, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183466245, "dur":989, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/NavMeshComponentsExamples.dll (+pdb)" }} +,{ "pid":12345, "tid":7, "ts":1682376183467234, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183467324, "dur":2133, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/SimpleJSON.dll (+pdb)" }} +,{ "pid":12345, "tid":7, "ts":1682376183469458, "dur":305, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183469767, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/SimpleJSON.dll" }} +,{ "pid":12345, "tid":7, "ts":1682376183469770, "dur":127, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183469898, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Cinemachine.pdb" }} +,{ "pid":12345, "tid":7, "ts":1682376183469901, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183469947, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/SimpleJSON.pdb" }} +,{ "pid":12345, "tid":7, "ts":1682376183469950, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183469994, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp-firstpass.dll" }} +,{ "pid":12345, "tid":7, "ts":1682376183469997, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183470064, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Timeline.pdb" }} +,{ "pid":12345, "tid":7, "ts":1682376183470068, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183470118, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Scheduler.pdb" }} +,{ "pid":12345, "tid":7, "ts":1682376183470121, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183470171, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.2D.Sprite.Editor.dll" }} +,{ "pid":12345, "tid":7, "ts":1682376183470174, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183470216, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll" }} +,{ "pid":12345, "tid":7, "ts":1682376183470219, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183470259, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Analytics.dll" }} +,{ "pid":12345, "tid":7, "ts":1682376183470262, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183470308, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.Advertisements.Editor.dll" }} +,{ "pid":12345, "tid":7, "ts":1682376183470311, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183470356, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/JBooth.ShaderPackager.Editor.dll" }} +,{ "pid":12345, "tid":7, "ts":1682376183470359, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183470405, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Universal.Runtime.pdb" }} +,{ "pid":12345, "tid":7, "ts":1682376183470409, "dur":3162, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1682376183473572, "dur":2488669, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183399733, "dur":7873, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183407609, "dur":1304, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183408914, "dur":1174, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183410088, "dur":1356, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183411445, "dur":1113, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183412558, "dur":1127, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183413686, "dur":1099, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183414786, "dur":1094, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183415881, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.InputSystem.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183415987, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183416039, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreTextEngineModule.dll_903E9BDCD3D6A48A.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1682376183416115, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183416162, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AnimationModule.dll_72708534F1C3695E.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1682376183416227, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183416277, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.dll_D4D920E74F94F16C.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1682376183416332, "dur":65, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183416399, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.PerformanceReportingModule.dll_E219927C3C9A2E98.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1682376183416470, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183416517, "dur":128, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SubstanceModule.dll_03B086CE8C9E1EAA.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1682376183416646, "dur":72, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183416720, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityCurlModule.dll_A58D266661D75B4B.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1682376183416822, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183416870, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.WindModule.dll_6F3B06D3B7A3FF42.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1682376183416928, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183416976, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.CodeGen.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183417027, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183417082, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Burst.Cecil.Mdb.dll_465D9C127E35CC84.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1682376183417140, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183417209, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipeline.Universal.ShaderLibrary.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183417269, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183417322, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Runtime.AdditionalFile.txt" }} +,{ "pid":12345, "tid":8, "ts":1682376183417327, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183417382, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":8, "ts":1682376183417382, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183417435, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponents.AdditionalFile.txt" }} +,{ "pid":12345, "tid":8, "ts":1682376183417436, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183417494, "dur":156, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Editor.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183417650, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183417699, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Cinemachine.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183417760, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183417815, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183417867, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183417922, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.AdditionalFile.txt" }} +,{ "pid":12345, "tid":8, "ts":1682376183417923, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183417976, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.Editor.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183418032, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183418078, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.Editor.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183418152, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183418197, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/XNodeEditor.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183418254, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183418301, "dur":48, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Device.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183418349, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183418403, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.Editor.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183418455, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183418508, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor-firstpass.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183418581, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183418648, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.DevX.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":8, "ts":1682376183418649, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183418695, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/497035096193185419.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183418767, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183418817, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/9675442845102135732.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183418882, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183418939, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/18408091341978535793.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183419007, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183419065, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/12812556936427222528.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183419131, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183419188, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/6947401630772442630.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183419263, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183419310, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2282191090610319379.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183419372, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183419429, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/1379359308984453704.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183419489, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183419543, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2781082588993088484.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183419620, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183419671, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2296344399083059428.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183419733, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183419774, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Runtime.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183419788, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183419837, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/XNodeEditor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183419850, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183419897, "dur":17, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183419914, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183419968, "dur":15, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183419983, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183420039, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.2D.Sprite.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183420051, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183420106, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamples.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183420118, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183420168, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183420181, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183420233, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Searcher.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183420245, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183420291, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.InputSystem.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183420304, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183420350, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.Internal.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183420362, "dur":75, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183420438, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":8, "ts":1682376183420450, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183420499, "dur":1170, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183421670, "dur":1450, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183423120, "dur":1184, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183424304, "dur":1549, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183425853, "dur":1033, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183426887, "dur":1019, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183427907, "dur":1107, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183429015, "dur":1068, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183430084, "dur":1243, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183431327, "dur":1028, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183432356, "dur":996, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183433353, "dur":1089, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183434442, "dur":1017, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183435459, "dur":1031, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183436490, "dur":1094, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183437584, "dur":1062, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183438647, "dur":1032, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183439680, "dur":1008, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183440689, "dur":1081, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183441771, "dur":1010, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183442782, "dur":1174, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183443956, "dur":1228, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183445185, "dur":933, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183446119, "dur":1114, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183447233, "dur":1184, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183448418, "dur":351, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183448770, "dur":1052, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.dll (+2 others)" }} +,{ "pid":12345, "tid":8, "ts":1682376183449823, "dur":132, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183449962, "dur":670, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":8, "ts":1682376183450632, "dur":994, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183451629, "dur":1447, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":8, "ts":1682376183453077, "dur":155, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183453237, "dur":620, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Shaders.dll (+2 others)" }} +,{ "pid":12345, "tid":8, "ts":1682376183453858, "dur":623, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183454486, "dur":617, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Threading.dll (+2 others)" }} +,{ "pid":12345, "tid":8, "ts":1682376183455103, "dur":472, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183455579, "dur":697, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/XNodeEditor.dll (+2 others)" }} +,{ "pid":12345, "tid":8, "ts":1682376183456276, "dur":1275, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183457554, "dur":922, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/XNodeEditor.dll (+pdb)" }} +,{ "pid":12345, "tid":8, "ts":1682376183458476, "dur":690, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183459170, "dur":1014, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/UnityEditor.UI.dll (+pdb)" }} +,{ "pid":12345, "tid":8, "ts":1682376183460184, "dur":212, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183460400, "dur":2726, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.RenderPipelines.Universal.Shaders.dll (+pdb)" }} +,{ "pid":12345, "tid":8, "ts":1682376183463126, "dur":1566, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183464695, "dur":956, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.VisualScripting.Core.dll (+pdb)" }} +,{ "pid":12345, "tid":8, "ts":1682376183465651, "dur":529, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183466184, "dur":960, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.RenderPipelines.Universal.Runtime.dll (+pdb)" }} +,{ "pid":12345, "tid":8, "ts":1682376183467144, "dur":310, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183467460, "dur":1037, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.TerrainTools.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":8, "ts":1682376183468498, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183468613, "dur":1007, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Burst.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":8, "ts":1682376183469620, "dur":499, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183470121, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Burst.Editor.pdb" }} +,{ "pid":12345, "tid":8, "ts":1682376183470126, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183470173, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.dll" }} +,{ "pid":12345, "tid":8, "ts":1682376183470176, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183470223, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TerrainTools.Editor.pdb" }} +,{ "pid":12345, "tid":8, "ts":1682376183470226, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183470271, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/MeshBakerEditor.dll" }} +,{ "pid":12345, "tid":8, "ts":1682376183470274, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183470319, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.EditorCoroutines.Editor.dll" }} +,{ "pid":12345, "tid":8, "ts":1682376183470321, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183470362, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Environments.pdb" }} +,{ "pid":12345, "tid":8, "ts":1682376183470365, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183470410, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsExamples.pdb" }} +,{ "pid":12345, "tid":8, "ts":1682376183470415, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183470463, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponents.dll" }} +,{ "pid":12345, "tid":8, "ts":1682376183470467, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183470509, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Mathematics.Editor.dll" }} +,{ "pid":12345, "tid":8, "ts":1682376183470513, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183470559, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.UI.dll" }} +,{ "pid":12345, "tid":8, "ts":1682376183470562, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183470610, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Postprocessing.Editor.dll" }} +,{ "pid":12345, "tid":8, "ts":1682376183470614, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183470658, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TerrainTools.pdb" }} +,{ "pid":12345, "tid":8, "ts":1682376183470662, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183470711, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Universal.Shaders.pdb" }} +,{ "pid":12345, "tid":8, "ts":1682376183470715, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183470762, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Searcher.Editor.pdb" }} +,{ "pid":12345, "tid":8, "ts":1682376183470765, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183470820, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll" }} +,{ "pid":12345, "tid":8, "ts":1682376183470825, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183470878, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.Monetization.dll" }} +,{ "pid":12345, "tid":8, "ts":1682376183470882, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183470931, "dur":199, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1682376183471130, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183471176, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/com.unity.cinemachine.editor.pdb" }} +,{ "pid":12345, "tid":8, "ts":1682376183471178, "dur":36, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183471214, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Device.pdb" }} +,{ "pid":12345, "tid":8, "ts":1682376183471216, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183471259, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipeline.Universal.ShaderLibrary.dll" }} +,{ "pid":12345, "tid":8, "ts":1682376183471263, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183471311, "dur":161, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.DevX.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1682376183471472, "dur":501, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183471975, "dur":150, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.CodeGen.dll.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1682376183472125, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183472185, "dur":177, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Scheduler.dll.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1682376183472362, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183472403, "dur":120, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1682376183472523, "dur":35, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183472558, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Rider.Editor.dll" }} +,{ "pid":12345, "tid":8, "ts":1682376183472560, "dur":36, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183472597, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VSCode.Editor.pdb" }} +,{ "pid":12345, "tid":8, "ts":1682376183472599, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183472641, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Burst.CodeGen.pdb" }} +,{ "pid":12345, "tid":8, "ts":1682376183472644, "dur":381, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183473027, "dur":136, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Utilities.dll.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1682376183473163, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183473205, "dur":169, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1682376183473374, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376183473425, "dur":1534762, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376185008189, "dur":201882, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp.dll (+pdb)" }} +,{ "pid":12345, "tid":8, "ts":1682376185210633, "dur":82, "ph":"X", "name": "StoreTimestampsOfNonGeneratedInputFiles", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376185210720, "dur":526001, "ph":"X", "name": "ILPostProcess", "args": { "detail":"Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp.dll (+pdb)" }} +,{ "pid":12345, "tid":8, "ts":1682376185745702, "dur":215158, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll" }} +,{ "pid":12345, "tid":8, "ts":1682376185960867, "dur":1, "ph":"X", "name": "StoreTimestampsOfNonGeneratedInputFiles", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1682376185960873, "dur":1329, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.dll" }} +,{ "pid":12345, "tid":8, "ts":1682376185962210, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ScriptAssemblies" }} +,{ "pid":12345, "tid":8, "ts":1682376185962211, "dur":0, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183399763, "dur":7852, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183407618, "dur":1254, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183408873, "dur":1156, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183410029, "dur":1150, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183411179, "dur":1337, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183412516, "dur":1203, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183413719, "dur":1068, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183414788, "dur":1231, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183416020, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_4856656B4452EB6C.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183416095, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183416164, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_A9F454FA4AC4590B.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183416227, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183416275, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.DirectorModule.dll_A35144EC0F52BD36.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183416339, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183416396, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.LocalizationModule.dll_740AAD124CBD6123.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183416467, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183416514, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.StreamingModule.dll_27057285414B209C.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183416584, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183416674, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UNETModule.dll_8B927394737C7652.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183416741, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183416797, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_01A0F82DF7B79505.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183416859, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183416918, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.CoreModule.dll_D5CB58587E6815AE.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183416925, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183416970, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.CodeGen.rsp" }} +,{ "pid":12345, "tid":9, "ts":1682376183417023, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183417080, "dur":7905, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.CodeGen.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1682376183424986, "dur":309, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183425302, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Jobs.CodeGen.dll" }} +,{ "pid":12345, "tid":9, "ts":1682376183425306, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183425366, "dur":1011, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183426377, "dur":1085, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183427463, "dur":1128, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183428591, "dur":2107, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183430698, "dur":1126, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183431825, "dur":962, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183432788, "dur":941, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183433730, "dur":1052, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183434782, "dur":1062, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183435844, "dur":1051, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183436895, "dur":1071, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183437967, "dur":1046, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183439013, "dur":1055, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183440069, "dur":1027, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183441096, "dur":984, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183442081, "dur":1032, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183443114, "dur":1163, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183444277, "dur":1644, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183445921, "dur":1138, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183447060, "dur":1510, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183448570, "dur":205, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183448776, "dur":677, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Searcher.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1682376183449453, "dur":255, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183449710, "dur":576, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1682376183450286, "dur":137, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183450426, "dur":4651, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1682376183455078, "dur":157, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183455240, "dur":1577, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1682376183456818, "dur":184, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183457006, "dur":659, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll (+2 others)" }} +,{ "pid":12345, "tid":9, "ts":1682376183457665, "dur":131, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183457801, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.ref.dll_D91762B7076BE462.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183457807, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183457856, "dur":1061, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.VisualScripting.State.dll (+pdb)" }} +,{ "pid":12345, "tid":9, "ts":1682376183458917, "dur":235, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183459156, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Editor.ref.dll_CCD0CF61C5D7A10A.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183459162, "dur":228, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183459394, "dur":1071, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Device.dll (+pdb)" }} +,{ "pid":12345, "tid":9, "ts":1682376183460465, "dur":121, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183460589, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.State.Editor.ref.dll_E03858E727F23F6F.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183460595, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183460650, "dur":998, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Internal.dll (+pdb)" }} +,{ "pid":12345, "tid":9, "ts":1682376183461648, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183461737, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Shared.Editor.ref.dll_9669F6EBFF6DFFB7.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183461743, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183461804, "dur":15, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Scheduler.ref.dll_EE2AFA3B402F70E4.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183461819, "dur":82, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183461902, "dur":1182, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll (+pdb)" }} +,{ "pid":12345, "tid":9, "ts":1682376183463084, "dur":128, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183463216, "dur":887, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Searcher.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":9, "ts":1682376183464104, "dur":89, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183464200, "dur":950, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Telemetry.dll (+pdb)" }} +,{ "pid":12345, "tid":9, "ts":1682376183465150, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183465247, "dur":881, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.VisualScripting.Shared.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":9, "ts":1682376183466128, "dur":78, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183466209, "dur":934, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/NavMeshComponents.dll (+pdb)" }} +,{ "pid":12345, "tid":9, "ts":1682376183467143, "dur":91, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183467237, "dur":1029, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/MeshBakerEditor.dll (+pdb)" }} +,{ "pid":12345, "tid":9, "ts":1682376183468266, "dur":114, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183468385, "dur":989, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Jobs.dll (+pdb)" }} +,{ "pid":12345, "tid":9, "ts":1682376183469374, "dur":107, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183469485, "dur":942, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.TextMeshPro.dll (+pdb)" }} +,{ "pid":12345, "tid":9, "ts":1682376183470428, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183470534, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.dll" }} +,{ "pid":12345, "tid":9, "ts":1682376183470538, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183470584, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Shared.Editor.pdb" }} +,{ "pid":12345, "tid":9, "ts":1682376183470588, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183470636, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Postprocessing.Runtime.dll" }} +,{ "pid":12345, "tid":9, "ts":1682376183470641, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183470688, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Telemetry.dll" }} +,{ "pid":12345, "tid":9, "ts":1682376183470692, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183470747, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.SettingsProvider.Editor.pdb" }} +,{ "pid":12345, "tid":9, "ts":1682376183470751, "dur":80, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183470832, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/IngameDebugConsole.Editor.dll" }} +,{ "pid":12345, "tid":9, "ts":1682376183470836, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183470885, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.PlasticSCM.Editor.dll" }} +,{ "pid":12345, "tid":9, "ts":1682376183470888, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183470932, "dur":283, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-firstpass.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183471215, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183471262, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Configuration.dll" }} +,{ "pid":12345, "tid":9, "ts":1682376183471265, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183471310, "dur":160, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183471470, "dur":116, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183471587, "dur":183, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183471770, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183471825, "dur":163, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183471988, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183472047, "dur":156, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.BurstCompatibilityGen.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183472204, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183472262, "dur":155, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Runtime.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183472417, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183472469, "dur":161, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipeline.Universal.ShaderLibrary.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183472630, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183472684, "dur":154, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsEditor.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183472838, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183472895, "dur":117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183473012, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183473063, "dur":144, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183473207, "dur":66, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183473275, "dur":193, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.dll.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1682376183473468, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376183473523, "dur":2272187, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376185745711, "dur":389, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb" }} +,{ "pid":12345, "tid":9, "ts":1682376185746106, "dur":1, "ph":"X", "name": "StoreTimestampsOfNonGeneratedInputFiles", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1682376185746149, "dur":1779, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.pdb" }} +,{ "pid":12345, "tid":9, "ts":1682376185747934, "dur":214313, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183399793, "dur":7829, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183407625, "dur":1450, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183409075, "dur":1165, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183410241, "dur":1330, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183411572, "dur":1144, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183412716, "dur":1149, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183413865, "dur":1043, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183414908, "dur":1047, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183415956, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.AdditionalFile.txt" }} +,{ "pid":12345, "tid":10, "ts":1682376183415961, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183416004, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.SceneTemplateModule.dll_1B76D805F529511B.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183416094, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183416154, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_F831C39ABAFD6EEB.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183416231, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183416281, "dur":49, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.DSPGraphModule.dll_A8A2A65581B38E57.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183416330, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183416386, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.JSONSerializeModule.dll_AE33CCD8F4DAD942.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183416443, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183416492, "dur":9, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_4E1C439CF59F78B8.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183416502, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183416551, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_51BAB36328E3B08F.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183416609, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183416668, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIModule.dll_EBF52E2449EDFFEE.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183416732, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183416790, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_09D0CB44C5F2096A.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183416845, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183416892, "dur":9, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_C6B5E0BE5750AA37.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183416901, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183416950, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.CodeGen.AdditionalFile.txt" }} +,{ "pid":12345, "tid":10, "ts":1682376183416956, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183417009, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Burst.Cecil.Pdb.dll_5DB01481FCEACE07.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183417065, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183417127, "dur":47, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Plastic.Antlr3.Runtime.dll_AE237261CA2DA2B1.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183417174, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183417232, "dur":150, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183417382, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183417436, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.Editor.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183417494, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183417540, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.AdditionalFile.txt" }} +,{ "pid":12345, "tid":10, "ts":1682376183417544, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183417587, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.AdditionalFile.txt" }} +,{ "pid":12345, "tid":10, "ts":1682376183417588, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183417636, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183417696, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183417740, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/MeshBakerCore.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183417795, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183417850, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsEditor.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183417909, "dur":39, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183417948, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Shaders.AdditionalFile.txt" }} +,{ "pid":12345, "tid":10, "ts":1682376183417949, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183417998, "dur":48, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Analytics.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183418047, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183418096, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":10, "ts":1682376183418097, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183418152, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183418203, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183418252, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Editor.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183418320, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183418370, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/MeshBakerEditor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":10, "ts":1682376183418375, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183418420, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Registration.AdditionalFile.txt" }} +,{ "pid":12345, "tid":10, "ts":1682376183418421, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183418467, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-firstpass.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183418520, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183418584, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.BurstCompatibilityGen.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183418638, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183418688, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/14494330292695847501.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183418756, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183418816, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2084921166946444769.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183418885, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183418939, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/5916180605834378387.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183419001, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183419061, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/3119559315184918665.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183419128, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183419184, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/3938377011463375229.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183419248, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183419293, "dur":69, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/6841316898876630997.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183419362, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183419415, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/3913888237084306484.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183419481, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183419534, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/17766336155681823506.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183419599, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183419644, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/4772145154433932943.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183419705, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183419753, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamplesEditor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183419767, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183419823, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Jobs.CodeGen.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183419833, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183419886, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Analytics.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183419900, "dur":111, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183420012, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Runtime.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183420023, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183420079, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183420093, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183420149, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Networking.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183420161, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183420211, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183420222, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183420276, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Runtime.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183420287, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183420336, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponents.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183420350, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183420398, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183420412, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183420465, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.CodeGen.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":10, "ts":1682376183420476, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183420544, "dur":1196, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183421741, "dur":1465, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183423206, "dur":1053, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183424260, "dur":1009, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183425270, "dur":1465, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183426736, "dur":1740, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183428476, "dur":2336, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183430812, "dur":1027, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183431840, "dur":998, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183432838, "dur":1077, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183433915, "dur":1132, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183435048, "dur":1046, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183436095, "dur":1032, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183437127, "dur":1136, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183438263, "dur":1030, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183439294, "dur":1069, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183440363, "dur":1008, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183441372, "dur":1000, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183442372, "dur":1054, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183443427, "dur":1008, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183444435, "dur":991, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183445427, "dur":949, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183446377, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TestRunner.ref.dll_193EC4CE382CBFB3.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183446387, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183446448, "dur":230, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183446679, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183446732, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEditor.TestRunner.pdb" }} +,{ "pid":12345, "tid":10, "ts":1682376183446736, "dur":60, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183446797, "dur":970, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183447768, "dur":1110, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183448878, "dur":1129, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll (+2 others)" }} +,{ "pid":12345, "tid":10, "ts":1682376183450008, "dur":118, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183450128, "dur":601, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.CodeGen.dll (+2 others)" }} +,{ "pid":12345, "tid":10, "ts":1682376183450729, "dur":103, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183450864, "dur":617, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.dll (+2 others)" }} +,{ "pid":12345, "tid":10, "ts":1682376183451481, "dur":135, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183451619, "dur":906, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":10, "ts":1682376183452525, "dur":653, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183453182, "dur":1626, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":10, "ts":1682376183454808, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183454933, "dur":2979, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":10, "ts":1682376183457912, "dur":623, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183458540, "dur":780, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/com.unity.cinemachine.editor.dll (+2 others)" }} +,{ "pid":12345, "tid":10, "ts":1682376183459320, "dur":142, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183459467, "dur":1070, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/com.unity.cinemachine.editor.dll (+pdb)" }} +,{ "pid":12345, "tid":10, "ts":1682376183460537, "dur":132, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183460672, "dur":1192, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Environments.Internal.dll (+pdb)" }} +,{ "pid":12345, "tid":10, "ts":1682376183461865, "dur":81, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183461949, "dur":1126, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/IngameDebugConsole.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":10, "ts":1682376183463075, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183463173, "dur":1049, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.VisualScripting.SettingsProvider.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":10, "ts":1682376183464222, "dur":88, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183464313, "dur":952, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Postprocessing.Runtime.dll (+pdb)" }} +,{ "pid":12345, "tid":10, "ts":1682376183465265, "dur":74, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183465341, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Threading.ref.dll_F1D7894C57B2A611.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183465346, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183465389, "dur":968, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.dll (+pdb)" }} +,{ "pid":12345, "tid":10, "ts":1682376183466357, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183466451, "dur":991, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Environments.dll (+pdb)" }} +,{ "pid":12345, "tid":10, "ts":1682376183467442, "dur":92, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183467537, "dur":1269, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Scheduler.dll (+pdb)" }} +,{ "pid":12345, "tid":10, "ts":1682376183468806, "dur":104, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183468914, "dur":1012, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/AwesomeTechnologies.TouchReactSystemPro.Runtime.dll (+pdb)" }} +,{ "pid":12345, "tid":10, "ts":1682376183469926, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183470022, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/AwesomeTechnologies.TouchReactSystemPro.Runtime.dll" }} +,{ "pid":12345, "tid":10, "ts":1682376183470026, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183470079, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Timeline.dll" }} +,{ "pid":12345, "tid":10, "ts":1682376183470083, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183470127, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Scheduler.dll" }} +,{ "pid":12345, "tid":10, "ts":1682376183470130, "dur":385, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183470516, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Mathematics.Editor.pdb" }} +,{ "pid":12345, "tid":10, "ts":1682376183470522, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183470570, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.UI.pdb" }} +,{ "pid":12345, "tid":10, "ts":1682376183470574, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183470625, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Postprocessing.Editor.pdb" }} +,{ "pid":12345, "tid":10, "ts":1682376183470629, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183470675, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TerrainTools.dll" }} +,{ "pid":12345, "tid":10, "ts":1682376183470679, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183470722, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Universal.Shaders.dll" }} +,{ "pid":12345, "tid":10, "ts":1682376183470726, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183470774, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Searcher.Editor.dll" }} +,{ "pid":12345, "tid":10, "ts":1682376183470778, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183470821, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.pdb" }} +,{ "pid":12345, "tid":10, "ts":1682376183470826, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183470881, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.Monetization.pdb" }} +,{ "pid":12345, "tid":10, "ts":1682376183470885, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183470944, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/PPv2URPConverters.dll" }} +,{ "pid":12345, "tid":10, "ts":1682376183470947, "dur":180, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183471128, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/AwesomeTechnologies.TouchReactSystemPro.Editor.pdb" }} +,{ "pid":12345, "tid":10, "ts":1682376183471131, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183471181, "dur":199, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183471380, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183471424, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.InputSystem.pdb" }} +,{ "pid":12345, "tid":10, "ts":1682376183471427, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183471469, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/AwesomeTechnologies.VegetationStudioPro.Runtime.dll" }} +,{ "pid":12345, "tid":10, "ts":1682376183471524, "dur":134, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183471660, "dur":174, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Monetization.dll.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183471834, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183471930, "dur":154, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183472085, "dur":39, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183472126, "dur":194, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.dll.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183472320, "dur":36, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183472358, "dur":123, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183472481, "dur":36, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183472518, "dur":170, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Analytics.dll.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183472688, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183472733, "dur":147, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Postprocessing.Runtime.dll.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183472880, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183472939, "dur":180, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/XNodeEditor.dll.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183473119, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183473165, "dur":206, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183473372, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183473425, "dur":118, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Runtime.dll.mvfrm" }} +,{ "pid":12345, "tid":10, "ts":1682376183473544, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1682376183473592, "dur":2488673, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183399831, "dur":7800, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183407634, "dur":1407, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183409042, "dur":1120, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183410162, "dur":1234, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183411397, "dur":1054, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183412451, "dur":1060, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183413511, "dur":1141, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183414653, "dur":1020, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183415673, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183415746, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183415790, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.AdditionalFile.txt" }} +,{ "pid":12345, "tid":11, "ts":1682376183415797, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183415854, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.AdditionalFile.txt" }} +,{ "pid":12345, "tid":11, "ts":1682376183415854, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183415910, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Runtime.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183415992, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183416049, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIBuilderModule.dll_F873B6288A1F0DEC.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183416124, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183416169, "dur":87, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_5231952EBA63784C.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183416256, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183416309, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_88BDD9048955E25C.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183416364, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183416414, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.Physics2DModule.dll_BF16752592C060F3.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183416475, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183416525, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SubsystemsModule.dll_1272E56355894F7E.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183416595, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183416655, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsNativeModule.dll_AFB66C57C90545AC.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183416716, "dur":90, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183416808, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_D9605C8BD6941FC1.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183416873, "dur":61, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183416936, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.DiagnosticsModule.dll_8338E12FFF25C701.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183416942, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183416994, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_A2718EADF8CB71E0.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183416999, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183417066, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Collections.LowLevel.ILSupport.dll_7CAE04E2593369CB.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183417131, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183417187, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.AdditionalFile.txt" }} +,{ "pid":12345, "tid":11, "ts":1682376183417188, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183417240, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":11, "ts":1682376183417245, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183417289, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Utilities.AdditionalFile.txt" }} +,{ "pid":12345, "tid":11, "ts":1682376183417295, "dur":39, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183417335, "dur":85, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Runtime.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183417421, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183417466, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183417521, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183417575, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":11, "ts":1682376183417576, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183417622, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.AdditionalFile.txt" }} +,{ "pid":12345, "tid":11, "ts":1682376183417623, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183417667, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":11, "ts":1682376183417668, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183417716, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Runtime.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183417772, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183417818, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.AdditionalFile.txt" }} +,{ "pid":12345, "tid":11, "ts":1682376183417819, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183417867, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183417922, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183417967, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":11, "ts":1682376183417968, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183418014, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":11, "ts":1682376183418019, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183418076, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Telemetry.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183418139, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183418187, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Scheduler.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183418249, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183418298, "dur":6, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Environments.Internal.AdditionalFile.txt" }} +,{ "pid":12345, "tid":11, "ts":1682376183418304, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183418354, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Editor.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183418406, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183418460, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-firstpass.AdditionalFile.txt" }} +,{ "pid":12345, "tid":11, "ts":1682376183418461, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183418519, "dur":147, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183418666, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183418717, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/5689786774259947410.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183418785, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183418827, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/15394042617203071315.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183418890, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183418940, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/17346584914308636752.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183419002, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183419056, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/1687297622542971368.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183419120, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183419163, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2240406767038398906.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183419225, "dur":39, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183419265, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/4691676790321305727.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183419341, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183419387, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/3388064732626934676.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183419458, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183419498, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/17525389461119239690.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183419565, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183419606, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/2820980864601610537.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183419665, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183419709, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/4014436084419441659.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183419766, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183419813, "dur":25, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp-Editor-firstpass.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183419838, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183419885, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183419899, "dur":63, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183419964, "dur":17, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183419981, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183420043, "dur":16, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsEditmode.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183420059, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183420109, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsEditor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183420123, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183420177, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183420190, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183420244, "dur":14, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Shaders.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183420258, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183420306, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183420317, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183420361, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183420374, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183420423, "dur":13, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":11, "ts":1682376183420436, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183420480, "dur":1164, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183421644, "dur":1492, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183423136, "dur":1352, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183424490, "dur":1048, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183425539, "dur":977, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183426516, "dur":1061, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183427577, "dur":1035, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183428612, "dur":1010, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183429623, "dur":1004, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183430628, "dur":1073, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183431701, "dur":1571, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183433272, "dur":1027, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183434299, "dur":1061, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183435360, "dur":1067, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183436427, "dur":1066, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183437494, "dur":1104, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183438599, "dur":1058, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183439657, "dur":1009, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183440667, "dur":1051, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183441718, "dur":1016, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183442734, "dur":1139, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183443874, "dur":1088, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183444962, "dur":952, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183445914, "dur":1012, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183446927, "dur":996, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183447923, "dur":14, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183447937, "dur":21, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183447958, "dur":31, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183447990, "dur":23, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183448014, "dur":20, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183448034, "dur":14, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183448048, "dur":39, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183448087, "dur":16, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183448103, "dur":15, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183448118, "dur":13, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183448131, "dur":10, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183448141, "dur":9, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183448150, "dur":15, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183448165, "dur":611, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183448776, "dur":687, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Utilities.dll (+2 others)" }} +,{ "pid":12345, "tid":11, "ts":1682376183449463, "dur":229, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183449695, "dur":630, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.dll (+2 others)" }} +,{ "pid":12345, "tid":11, "ts":1682376183450325, "dur":160, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183450487, "dur":1102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll (+2 others)" }} +,{ "pid":12345, "tid":11, "ts":1682376183451590, "dur":393, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183451986, "dur":4252, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.dll (+2 others)" }} +,{ "pid":12345, "tid":11, "ts":1682376183456238, "dur":127, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183456369, "dur":723, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":11, "ts":1682376183457092, "dur":150, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183457245, "dur":7, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Flow.ref.dll_1E6ED5409D07C9A3.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183457252, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183457301, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.Core.Editor.ref.dll_EDC8690F57C5BDFD.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183457306, "dur":39, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183457348, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Environments.Internal.ref.dll_E1932F3567E8EA54.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183457356, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183457399, "dur":970, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.InputSystem.dll (+pdb)" }} +,{ "pid":12345, "tid":11, "ts":1682376183458369, "dur":129, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183458501, "dur":9, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Networking.ref.dll_9223E05EC4657081.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183458510, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183458555, "dur":752, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/PPv2URPConverters.dll (+2 others)" }} +,{ "pid":12345, "tid":11, "ts":1682376183459307, "dur":1039, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183460350, "dur":1220, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/PPv2URPConverters.dll (+pdb)" }} +,{ "pid":12345, "tid":11, "ts":1682376183461571, "dur":183, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183461757, "dur":1016, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/XNode.dll (+pdb)" }} +,{ "pid":12345, "tid":11, "ts":1682376183462774, "dur":212, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183462990, "dur":1046, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/MeshBakerCore.dll (+pdb)" }} +,{ "pid":12345, "tid":11, "ts":1682376183464036, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183464125, "dur":1024, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.RenderPipelines.Universal.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":11, "ts":1682376183465149, "dur":205, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183465358, "dur":1104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Mathematics.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":11, "ts":1682376183466462, "dur":108, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183466574, "dur":1106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.EditorCoroutines.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":11, "ts":1682376183467680, "dur":120, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183467803, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Registration.ref.dll_0EE1D1878B496356.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183467813, "dur":39, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183467853, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Services.Core.Device.ref.dll_EC89AF6B778C7413.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183467859, "dur":36, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183467898, "dur":1018, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.VisualScripting.Flow.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":11, "ts":1682376183468916, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183469014, "dur":911, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/UnityEngine.Advertisements.dll (+pdb)" }} +,{ "pid":12345, "tid":11, "ts":1682376183469925, "dur":85, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183470013, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/UnityEngine.Advertisements.dll" }} +,{ "pid":12345, "tid":11, "ts":1682376183470015, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183470057, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Timeline.Editor.dll" }} +,{ "pid":12345, "tid":11, "ts":1682376183470059, "dur":39, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183470098, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Flow.Editor.dll" }} +,{ "pid":12345, "tid":11, "ts":1682376183470102, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183470148, "dur":224, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183470372, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183470413, "dur":10, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsExamples.dll" }} +,{ "pid":12345, "tid":11, "ts":1682376183470423, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183470466, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.Editor.dll" }} +,{ "pid":12345, "tid":11, "ts":1682376183470468, "dur":317, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183470786, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/MeshBakerCore.pdb" }} +,{ "pid":12345, "tid":11, "ts":1682376183470789, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183470840, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/IngameDebugConsole.Editor.pdb" }} +,{ "pid":12345, "tid":11, "ts":1682376183470843, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183470892, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.PlasticSCM.Editor.pdb" }} +,{ "pid":12345, "tid":11, "ts":1682376183470895, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183470945, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/PPv2URPConverters.pdb" }} +,{ "pid":12345, "tid":11, "ts":1682376183470949, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183471002, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Mathematics.dll" }} +,{ "pid":12345, "tid":11, "ts":1682376183471005, "dur":34, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183471039, "dur":9, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Mathematics.pdb" }} +,{ "pid":12345, "tid":11, "ts":1682376183471048, "dur":28, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183471076, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/IngameDebugConsole.Runtime.pdb" }} +,{ "pid":12345, "tid":11, "ts":1682376183471078, "dur":39, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183471118, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/AwesomeTechnologies.TouchReactSystemPro.Editor.dll" }} +,{ "pid":12345, "tid":11, "ts":1682376183471120, "dur":38, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183471158, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Registration.pdb" }} +,{ "pid":12345, "tid":11, "ts":1682376183471162, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183471205, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/AwesomeTechnologies.VegetationStudioPro.Editor.pdb" }} +,{ "pid":12345, "tid":11, "ts":1682376183471209, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183471255, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipeline.Universal.ShaderLibrary.pdb" }} +,{ "pid":12345, "tid":11, "ts":1682376183471259, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183471303, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/NavMeshComponentsTestsPlaymode.pdb" }} +,{ "pid":12345, "tid":11, "ts":1682376183471306, "dur":40, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183471347, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.State.dll" }} +,{ "pid":12345, "tid":11, "ts":1682376183471349, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183471391, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.InputSystem.dll" }} +,{ "pid":12345, "tid":11, "ts":1682376183471394, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183471439, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.BurstCompatibilityGen.dll" }} +,{ "pid":12345, "tid":11, "ts":1682376183471441, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183471501, "dur":198, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183471699, "dur":132, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183471833, "dur":170, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.dll.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183472003, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183472050, "dur":158, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Device.dll.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183472208, "dur":212, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183472422, "dur":116, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.CodeGen.dll.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183472539, "dur":242, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183472782, "dur":134, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183472916, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183472960, "dur":175, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Burst.dll.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183473135, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183473178, "dur":149, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsPlaymode.dll.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183473327, "dur":38, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183473366, "dur":152, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsExamplesEditor.dll.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1682376183473519, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1682376183473565, "dur":2488679, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183399855, "dur":7786, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183407642, "dur":1268, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183408910, "dur":1186, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183410096, "dur":1275, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183411372, "dur":1145, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183412518, "dur":1127, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183413645, "dur":1146, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183414792, "dur":1051, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183415844, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183415914, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183415969, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.GraphViewModule.dll_A3EB090C176694B8.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183416066, "dur":58, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183416134, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIServiceModule.dll_3165C78B73565E06.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183416195, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183416248, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_35BDE2BFB5416E2A.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183416327, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183416374, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.InputLegacyModule.dll_E376B04D52552E3D.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183416440, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183416489, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_EBA8B3C420D837BC.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183416543, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183416593, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextRenderingModule.dll_F15AEC68C07E8599.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183416657, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183416702, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_E37F9EEB2CBB739B.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183416759, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183416813, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VehiclesModule.dll_1B143E6B897C8CD1.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183416874, "dur":59, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183416935, "dur":9, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.DeviceSimulatorModule.dll_86930378C91DA973.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183416944, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183417000, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_AE1AD5A12B4FF4D2.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183417064, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183417136, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.VisualScripting.IonicZip.dll_CF5227D341231F89.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183417208, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183417264, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Editor.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183417347, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183417394, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":12, "ts":1682376183417395, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183417445, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.Editor.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183417505, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183417551, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Universal.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":12, "ts":1682376183417559, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183417606, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.Advertisements.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183417669, "dur":54, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183417723, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Cinemachine.AdditionalFile.txt" }} +,{ "pid":12345, "tid":12, "ts":1682376183417724, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183417768, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/XNode.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183417821, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183417874, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":12, "ts":1682376183417875, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183417928, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183417990, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183418042, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":12, "ts":1682376183418043, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183418090, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.ShaderLibrary.AdditionalFile.txt" }} +,{ "pid":12345, "tid":12, "ts":1682376183418095, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183418146, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.2D.Sprite.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":12, "ts":1682376183418147, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183418194, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/XNodeEditor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":12, "ts":1682376183418195, "dur":41, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183418236, "dur":5, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":12, "ts":1682376183418241, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183418293, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/com.unity.cinemachine.editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":12, "ts":1682376183418294, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183418339, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/SimpleJSON.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183418391, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183418438, "dur":48, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Registration.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183418486, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183418529, "dur":1, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.BurstCompatibilityGen.AdditionalFile.txt" }} +,{ "pid":12345, "tid":12, "ts":1682376183418530, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183418579, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/NavMeshComponentsTestsPlaymode.AdditionalFile.txt" }} +,{ "pid":12345, "tid":12, "ts":1682376183418579, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183418635, "dur":0, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.AdditionalFile.txt" }} +,{ "pid":12345, "tid":12, "ts":1682376183418635, "dur":48, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183418684, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/320441126896875025.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183418759, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183418810, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/5546506141355401238.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183418877, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183418924, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/9111662996337956171.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183418986, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183419030, "dur":65, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/4059091172732495669.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183419095, "dur":45, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183419140, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/9321109326917711913.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183419211, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183419256, "dur":84, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/8654950501350094070.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183419340, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183419388, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/4494907431374462528.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183419450, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183419493, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/9703144790800738880.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183419553, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183419606, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/8029443090779585774.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183419665, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183419709, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteResponseFile Library/Bee/artifacts/rsp/17242669345997350737.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183419769, "dur":47, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183419816, "dur":16, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183419832, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183419884, "dur":16, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Internal.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183419900, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183419957, "dur":18, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183419975, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183420029, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183420040, "dur":44, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183420085, "dur":17, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Threading.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183420102, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183420152, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.TouchReactSystemPro.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183420163, "dur":53, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183420217, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.ShaderGraph.Utilities.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183420228, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183420280, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183420291, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183420341, "dur":12, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/MeshBakerCore.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183420353, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183420403, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183420414, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183420472, "dur":11, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.BurstCompatibilityGen.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":12, "ts":1682376183420484, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183420535, "dur":1157, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183421692, "dur":1465, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183423158, "dur":1045, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183424204, "dur":1086, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183425290, "dur":1725, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183427015, "dur":1309, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183428325, "dur":1115, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183429440, "dur":1512, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183430952, "dur":1210, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183432163, "dur":8, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TestRunner.ref.dll_E55D0F7C63F01D9E.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183432171, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183432232, "dur":206, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183432438, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183432487, "dur":1492, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183433979, "dur":1138, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183435118, "dur":1082, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183436200, "dur":1052, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183437253, "dur":1085, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183438339, "dur":1694, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183440034, "dur":1076, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183441111, "dur":3918, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183445030, "dur":5789, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183450820, "dur":671, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/XNode.dll (+2 others)" }} +,{ "pid":12345, "tid":12, "ts":1682376183451491, "dur":683, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183452178, "dur":1361, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TerrainTools.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":12, "ts":1682376183453540, "dur":227, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183453772, "dur":680, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Collections.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":12, "ts":1682376183454452, "dur":323, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183454779, "dur":4447, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/AwesomeTechnologies.VegetationStudioPro.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":12, "ts":1682376183459226, "dur":237, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183459471, "dur":1033, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/AwesomeTechnologies.VegetationStudioPro.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":12, "ts":1682376183460504, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183460601, "dur":3251, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.Services.Core.Editor.dll (+pdb)" }} +,{ "pid":12345, "tid":12, "ts":1682376183463852, "dur":3603, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183467462, "dur":3625, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Unity.VisualScripting.Flow.dll (+pdb)" }} +,{ "pid":12345, "tid":12, "ts":1682376183471088, "dur":98, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183471189, "dur":2, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Flow.dll" }} +,{ "pid":12345, "tid":12, "ts":1682376183471191, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183471238, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Burst.dll" }} +,{ "pid":12345, "tid":12, "ts":1682376183471241, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183471288, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Services.Core.Networking.dll" }} +,{ "pid":12345, "tid":12, "ts":1682376183471291, "dur":42, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183471333, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/XNodeEditor.pdb" }} +,{ "pid":12345, "tid":12, "ts":1682376183471336, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183471385, "dur":3, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Collections.DocCodeSamples.pdb" }} +,{ "pid":12345, "tid":12, "ts":1682376183471388, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183471451, "dur":4, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/AwesomeTechnologies.VegetationStudioPro.Runtime.pdb" }} +,{ "pid":12345, "tid":12, "ts":1682376183471455, "dur":94, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183471551, "dur":247, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Configuration.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183471798, "dur":51, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183471851, "dur":166, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Mathematics.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183472017, "dur":115, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183472133, "dur":148, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Telemetry.dll.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183472281, "dur":56, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183472338, "dur":140, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183472478, "dur":52, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183472532, "dur":132, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Services.Core.Internal.dll.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183472664, "dur":46, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183472712, "dur":140, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183472852, "dur":43, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183472897, "dur":141, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183473038, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183473089, "dur":158, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.RenderPipelines.Core.ShaderLibrary.dll.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183473247, "dur":115, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183473364, "dur":167, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/IngameDebugConsole.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1682376183473532, "dur":49, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1682376183473582, "dur":2488691, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1682376185980522, "dur":6577, "ph":"X", "name": "ProfilerWriteOutput" } +,{ "pid": 0, "tid": 1, "ts": 1682376186110624, "dur": 3615, "ph": "X", "name": "backend_profiler0.traceevents", "args": {} }, +{ "pid": 0, "tid": 1, "ts": 1682376186107831, "dur": 6443, "ph": "X", "name": "Write chrome-trace events", "args": {} }, {} ] diff --git a/Library/Bee/tundra.digestcache b/Library/Bee/tundra.digestcache index 107cdffdb7..4bb888d720 100644 Binary files a/Library/Bee/tundra.digestcache and b/Library/Bee/tundra.digestcache differ diff --git a/Library/Bee/tundra.log.json b/Library/Bee/tundra.log.json index 69ed35ecc8..203bb8fbe5 100644 --- a/Library/Bee/tundra.log.json +++ b/Library/Bee/tundra.log.json @@ -992,16 +992,16 @@ {"msg":"enqueueNode","enqueuedNodeAnnotation":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp-Editor.pdb","enqueuedNodeIndex":991,"enqueueingNodeAnnotation":"ScriptAssemblies","enqueueingNodeIndex":5} {"msg":"inputSignatureChanged","annotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)","index":624,"changes":[{"key":"Action","value":"\"C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetCoreRuntime\\dotnet.exe\" exec \"C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/DotNetSdkRoslyn/csc.dll\" /nostdlib /noconfig /shared \"@Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.rsp\"","oldvalue":null},{"key":"InputFileList","value":["Assets\\AutoLOD\\Plugins\\MeshDecimator.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.CoreModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.DeviceSimulatorModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.DiagnosticsModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.GraphViewModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.PackageManagerUIModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.QuickSearchModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.SceneTemplateModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.TextCoreFontEngineModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.TextCoreTextEngineModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.UIBuilderModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.UIElementsModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.UIElementsSamplesModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.UIServiceModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.UnityConnectModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.AccessibilityModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.AIModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.AndroidJNIModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.AnimationModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ARModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.AssetBundleModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.AudioModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ClothModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ClusterInputModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ClusterRendererModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.CoreModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.CrashReportingModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.DirectorModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.DSPGraphModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.GameCenterModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.GIModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.GridModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.HotReloadModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ImageConversionModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.IMGUIModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.InputLegacyModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.InputModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.JSONSerializeModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.LocalizationModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ParticleSystemModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.PerformanceReportingModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.Physics2DModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.PhysicsModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ProfilerModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ScreenCaptureModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.SharedInternalsModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.SpriteMaskModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.SpriteShapeModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.StreamingModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.SubstanceModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.SubsystemsModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TerrainModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TerrainPhysicsModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TextCoreFontEngineModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TextCoreTextEngineModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TextRenderingModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TilemapModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TLSModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UIElementsModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UIElementsNativeModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UIModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UmbraModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UNETModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityAnalyticsCommonModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityAnalyticsModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityConnectModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityCurlModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityTestProtocolModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityWebRequestAssetBundleModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityWebRequestAudioModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityWebRequestModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityWebRequestTextureModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityWebRequestWWWModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.VehiclesModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.VFXModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.VideoModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.VirtualTexturingModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.VRModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.WindModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.XRModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\mscorlib.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.ComponentModel.Composition.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Core.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Data.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Drawing.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.IO.Compression.FileSystem.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Net.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Numerics.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Runtime.Serialization.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.ServiceModel.Web.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Transactions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Web.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Windows.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Xml.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Xml.Linq.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Xml.Serialization.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\Microsoft.Win32.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.AppContext.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Buffers.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Collections.Concurrent.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Collections.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Collections.NonGeneric.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Collections.Specialized.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.ComponentModel.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.ComponentModel.EventBasedAsync.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.ComponentModel.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.ComponentModel.TypeConverter.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Console.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Data.Common.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.Contracts.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.Debug.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.FileVersionInfo.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.Process.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.StackTrace.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.TextWriterTraceListener.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.Tools.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.TraceSource.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.Tracing.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Drawing.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Dynamic.Runtime.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Globalization.Calendars.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Globalization.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Globalization.Extensions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.Compression.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.Compression.ZipFile.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.FileSystem.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.FileSystem.DriveInfo.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.FileSystem.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.FileSystem.Watcher.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.IsolatedStorage.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.MemoryMappedFiles.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.Pipes.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.UnmanagedMemoryStream.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Linq.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Linq.Expressions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Linq.Parallel.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Linq.Queryable.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Memory.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.Http.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.NameResolution.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.NetworkInformation.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.Ping.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.Requests.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.Security.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.Sockets.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.WebHeaderCollection.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.WebSockets.Client.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.WebSockets.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Numerics.Vectors.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.ObjectModel.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Reflection.DispatchProxy.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Reflection.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Reflection.Emit.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Reflection.Emit.ILGeneration.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Reflection.Emit.Lightweight.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Reflection.Extensions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Reflection.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Resources.Reader.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Resources.ResourceManager.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Resources.Writer.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.CompilerServices.VisualC.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.Extensions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.Handles.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.InteropServices.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.InteropServices.RuntimeInformation.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.Numerics.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.Serialization.Formatters.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.Serialization.Json.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.Serialization.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.Serialization.Xml.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Claims.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Cryptography.Algorithms.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Cryptography.Csp.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Cryptography.Encoding.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Cryptography.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Cryptography.X509Certificates.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Principal.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.SecureString.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Text.Encoding.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Text.Encoding.Extensions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Text.RegularExpressions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.Overlapped.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.Tasks.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.Tasks.Extensions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.Tasks.Parallel.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.Thread.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.ThreadPool.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.Timer.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.ValueTuple.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Xml.ReaderWriter.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Xml.XDocument.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Xml.XmlDocument.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Xml.XmlSerializer.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Xml.XPath.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Xml.XPath.XDocument.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\Extensions\\2.0.0\\System.Runtime.InteropServices.WindowsRuntime.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\ref\\2.1.0\\netstandard.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.burst@1.7.3\\Unity.Burst.CodeGen\\Unity.Burst.Cecil.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.burst@1.7.3\\Unity.Burst.CodeGen\\Unity.Burst.Cecil.Mdb.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.burst@1.7.3\\Unity.Burst.CodeGen\\Unity.Burst.Cecil.Pdb.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.burst@1.7.3\\Unity.Burst.CodeGen\\Unity.Burst.Cecil.Rocks.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.burst@1.7.3\\Unity.Burst.Unsafe.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.collections@1.4.0\\Unity.Collections.LowLevel.ILSupport\\Unity.Collections.LowLevel.ILSupport.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.nuget.mono-cecil@1.11.4\\Mono.Cecil.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.nuget.newtonsoft-json@3.0.2\\Runtime\\Newtonsoft.Json.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.visualscripting@1.7.8\\Runtime\\VisualScripting.Flow\\Dependencies\\NCalc\\Unity.VisualScripting.Antlr3.Runtime.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp-firstpass.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\AwesomeTechnologies.TouchReactSystemPro.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\AwesomeTechnologies.TouchReactSystemPro.Runtime.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\AwesomeTechnologies.VegetationStudioPro.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\AwesomeTechnologies.VegetationStudioPro.Runtime.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Cinemachine.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\com.unity.cinemachine.editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\IngameDebugConsole.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\IngameDebugConsole.Runtime.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\JBooth.ShaderPackager.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\MeshBakerCore.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\MeshBakerEditor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\NavMeshComponents.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\NavMeshComponentsEditor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\NavMeshComponentsExamples.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\NavMeshComponentsExamplesEditor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\PPv2URPConverters.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\SimpleJSON.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.2D.Sprite.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Burst.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Burst.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Collections.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Collections.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.EditorCoroutines.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.InputSystem.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Jobs.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Mathematics.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Mathematics.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.PlasticSCM.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Postprocessing.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Postprocessing.Runtime.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.RenderPipeline.Universal.ShaderLibrary.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.RenderPipelines.Core.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.RenderPipelines.Core.Runtime.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.RenderPipelines.Core.ShaderLibrary.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.RenderPipelines.Universal.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.RenderPipelines.Universal.Runtime.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.RenderPipelines.Universal.Shaders.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Rider.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Searcher.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Services.Core.Analytics.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Services.Core.Environments.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Services.Core.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.ShaderGraph.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.TerrainTools.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.TerrainTools.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.TextMeshPro.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.TextMeshPro.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Timeline.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Timeline.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.Core.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.Core.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.Flow.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.Flow.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.SettingsProvider.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.Shared.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.State.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.State.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualStudio.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VSCode.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\UnityEditor.UI.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\UnityEngine.Advertisements.Editor.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\UnityEngine.Advertisements.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\UnityEngine.Monetization.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\UnityEngine.UI.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\XNode.ref.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\XNodeEditor.ref.dll","Assets\\Advanced INI Parser\\INIParser.cs","Assets\\Advanced INI Parser\\INIReader.cs","Assets\\AutoLOD\\Demo\\Scripts\\GlobalSmoothRotation.cs","Assets\\AutoLOD\\Scripts\\AutoLOD.cs","Assets\\AutoLOD\\Scripts\\Tools\\AutoLODProperties.cs","Assets\\AutoLOD\\Scripts\\Tools\\MeshDecimatorUnityEngine.cs","Assets\\AutoLOD\\Scripts\\Tools\\MeshUtility.cs","Assets\\AwesomeTechnologies\\PackageInstaller\\Plugins\\PackageInstaller.cs","Assets\\AwesomeTechnologies\\VegetationStudioPro\\Integration\\MapMagicInfiniteTerrain.cs","Assets\\AwesomeTechnologies\\VegetationStudioProDemo\\Scripts\\ExtendedFlycam.cs","Assets\\AwesomeTechnologies\\VegetationStudioProDemo\\Scripts\\HarvesterDemo.cs","Assets\\CustomCloth.cs","Assets\\Daz3D\\Music\\SceneMusicPlayer.cs","Assets\\Daz3D\\Scripts\\ClothCollisionAssigner.cs","Assets\\Daz3D\\Scripts\\ClothTools.cs","Assets\\Daz3D\\Scripts\\CollapsedVertexArray.cs","Assets\\Daz3D\\Scripts\\Daz3DInstance.cs","Assets\\Daz3D\\Scripts\\Utilities.cs","Assets\\Destroyed_city_FREE\\Standard Assets\\Character Controllers\\Sources\\Scripts\\MouseLook.cs","Assets\\DynamicBone\\Demo\\DynamicBoneDemo1.cs","Assets\\DynamicBone\\Scripts\\DynamicBone.cs","Assets\\DynamicBone\\Scripts\\DynamicBoneCollider.cs","Assets\\DynamicBone\\Scripts\\DynamicBoneColliderBase.cs","Assets\\DynamicBone\\Scripts\\DynamicBonePlaneCollider.cs","Assets\\FlexibleColorPicker\\ExampleScene\\FCP_ExampleScript.cs","Assets\\FlexibleColorPicker\\Scripts\\FCP_Persistence.cs","Assets\\FlexibleColorPicker\\Scripts\\FCP_SpriteMeshEditor.cs","Assets\\FlexibleColorPicker\\Scripts\\FlexibleColorPicker.cs","Assets\\GVX URP Decal\\ExcludeFromGDecal.cs","Assets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperTool.cs","Assets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolCustomInspector.cs","Assets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSequenceSMB.cs","Assets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSMB.cs","Assets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSMBRemover.cs","Assets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolUtils.cs","Assets\\Kevin Iglesias\\Villager Animations Pack\\Example Scene\\Scripts\\BucketRoute.cs","Assets\\Kevin Iglesias\\Villager Animations Pack\\Example Scene\\Scripts\\BucketRouteAnimator.cs","Assets\\Kevin Iglesias\\Villager Animations Pack\\Example Scene\\Scripts\\CookingScript.cs","Assets\\Kevin Iglesias\\Villager Animations Pack\\Example Scene\\Scripts\\CookingSMB.cs","Assets\\Kevin Iglesias\\Villager Animations Pack\\Example Scene\\Scripts\\GatherResource.cs","Assets\\Kevin Iglesias\\Villager Animations Pack\\Example Scene\\Scripts\\LiftScript.cs","Assets\\Kevin Iglesias\\Villager Animations Pack\\Example Scene\\Scripts\\LiftSMB.cs","Assets\\Kevin Iglesias\\Villager Animations Pack\\Example Scene\\Scripts\\RunningVillagers.cs","Assets\\MeshBaker\\Examples\\BakeTexturesAtRuntime\\BakeTexturesAtRuntime.cs","Assets\\MeshBaker\\Examples\\BatchPrepareObjectsForDynamicBatching\\MB_BatchPrepareObjectsForDynamicBatchingDescription.cs","Assets\\MeshBaker\\Examples\\CharacterCustomization\\MB_SwapShirts.cs","Assets\\MeshBaker\\Examples\\PrepareObjectsForDynamicBatching\\MB_PrepareObjectsForDynamicBatchingDescription.cs","Assets\\MeshBaker\\Examples\\SceneDynamicAddDelete\\MB_DynamicAddDeleteExample.cs","Assets\\MeshBaker\\Examples\\SceneRuntimeExample\\MB_Example.cs","Assets\\MeshBaker\\Examples\\SceneRuntimeExample\\MB_ExampleMover.cs","Assets\\MeshBaker\\Examples\\SceneRuntimeExample\\MB_ExampleSkinnedMeshDescription.cs","Assets\\MeshBaker\\Examples\\SkinnedMeshRenderer\\MB_SkinnedMeshSceneController.cs","Assets\\MeshBaker\\Examples\\SwitchBakedObjectsTexture\\MB_SwitchBakedObjectsTexture.cs","Assets\\RPG Creation Kit\\Animations\\First Person\\Crossbow\\Test\\CrossbowReferences.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Items\\Quest Items\\A Donation of Wheat\\ADonationOfWheatNoteItemScript.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Items\\Quest Items\\Every Dead Man's Nightmare\\HangingNote001ItemScript.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Items\\Quest Items\\Hes My Son\\GainsRingItemScript.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Items\\Quest Items\\Judge, Jury And Executioner\\ShadyPlansItemScript.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Items\\Quest Items\\The Southern Harvest\\HalfWrittenLetterItemScript.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Quests\\MQ01_Just Another Delivery\\JustAnotherDeliverStage10QuestScript.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Quests\\MQ01_Just Another Delivery\\JustAnotherDeliveryQuestScript.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Quests\\MQ01_Just Another Delivery\\JustAnotherDeliveryStage30QuestScript.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Quests\\MQ01_Just Another Delivery\\Result Scripts\\MQRS_MackAfterInvitesPlayer.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Quests\\MQ01_Just Another Delivery\\Result Scripts\\MQRS_UnlockCityGate.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Quests\\MQ02_The Red Shade\\TheRedShadeQuestStage10Script.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Quests\\MQ02_The Red Shade\\TheRedShadeQuestStage20Script.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Quests\\Southern Village\\Every Dead Man's Nightmare\\EveryDeadMansNightmareConclusionStageScript.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Quests\\Southern Village\\Every Dead Man's Nightmare\\EveryDeadMansNightmareQuestScript.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Quests\\Southern Village\\Every Dead Man's Nightmare\\EveryDeadMansNightmareStage20Script.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Quests\\The King Questline\\Judge, Jury and Executioner\\JudgeJuryAndExecutionerQuestScript.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Quests\\The King Questline\\Judge, Jury and Executioner\\JudgeJuryAndExecutionerStage10Script.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Quests\\The King Questline\\The Good News\\TheGoodNewsStage10QuestScript.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Quests\\The King Questline\\The Southern Harvest\\TheSouthernHarvestQuestScript.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Quests\\The King Questline\\The Southern Harvest\\TheSouthernHarvestStage10Script.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Quests\\The King Questline\\The Southern Harvest\\TheSouthernHarvestStage20Script.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Quests\\The King Questline\\The Southern Harvest\\TheSouthernHarvestStage60Script.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Quests\\The Red Shade Questline\\One of them\\OneOfThemQuestScript.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Quests\\The Red Shade Questline\\One Step Forward\\OneStepForwardQuestScript.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Quests\\The Red Shade Questline\\One Step Forward\\OneStepForwardQuestStage30Script.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Quests\\The Red Shade Questline\\They Shall Fall\\RSQL_TheyShallFallStage10Script.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Quests\\The Red Shade Questline\\They Shall Fall\\RSQL_TheyShallFall_OutsideGuardsGoToOblivion.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Quests\\The Red Shade Questline\\They Shall Fall\\TheyShallFallQuestScript.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Quests\\The Red Shade Questline\\They Shall Fall\\TheyShallFall_Stage20Script.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Quests\\The Red Shade Questline\\They Shall Fall\\TheyShallFall_Stage30Script.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Result Scripts\\Every Dead Man's Nightmare\\SQ_EveryDeadMan_SendThiefIntoOblivion.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Result Scripts\\Red Shade Questline\\One of them\\CountTurnsHostileAgainstPlayer.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Result Scripts\\Red Shade Questline\\One of them\\CountTurnsHostileAgainstPlayerAndGuardSpawns.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Result Scripts\\Red Shade Questline\\One of them\\RS_SpawnVeraAfterQuest.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Result Scripts\\Red Shade Questline\\One Step Forward\\RSQL_OneStepForward_MartinFinishesTalkingToGroupAssault.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Result Scripts\\Red Shade Questline\\One Step Forward\\RSQL_OneStepForward_MartinTalksToGroup.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Result Scripts\\Red Shade Questline\\One Step Forward\\RSQL_OneStepForward_PlayerApproachFortressWithoutTalkingToMartin.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Result Scripts\\Red Shade Questline\\One Step Forward\\RSQL_OneStepForward_VeraEquipsBowAndFollow.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Result Scripts\\Red Shade Questline\\One Step Forward\\RSQL_OneStepForward_VeraEquipsMeleeAndFollow.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Result Scripts\\Red Shade Questline\\One Step Forward\\RSQL_SpawnGuardsAtVeraFarmhouse.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Result Scripts\\Red Shade Questline\\They Shall Fall\\RSQL_TheyShallFall_FinalCutsceneActivator.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Result Scripts\\Red Shade Questline\\They Shall Fall\\RSQL_TheyShallFall_Follower1FollowsPlayer.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Result Scripts\\Red Shade Questline\\They Shall Fall\\RSQL_TheyShallFall_Follower2FollowsPlayer.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Result Scripts\\Red Shade Questline\\They Shall Fall\\RSQL_TheyShallFall_PostgameLoad.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Result Scripts\\Tavern\\TavernAlbertHenryStartDiscussion.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Result Scripts\\The King Questline\\The Southern Harvest\\RSTK_TheSoutherHarvest_AssignRyanPurposeFollower.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Result Scripts\\The King Questline\\The Southern Harvest\\RSTK_TheSouthernHarvest_GeneralPhillidaDialogueBeforeAssault.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Result Scripts\\The King Questline\\The Southern Harvest\\RSTK_TheSouthernHarvest_RyanQuickDialogueAtFarm.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Result Scripts\\The King Questline\\The Southern Harvest\\RSTK_TheSouthernHarvest_RyanQuickDialogueAtFarmInside.cs","Assets\\RPG Creation Kit\\Demos\\__RckDemo__\\Result Scripts\\The King Questline\\TKQL_JudgeJuryAndExecutioner_KingSpeaksToVirgilia.cs","Assets\\RPG Creation Kit\\GeneralIcons\\EditorIconsPath.cs","Assets\\RPG Creation Kit\\Magic\\Spells\\Fire Touch\\Spell Book\\SpellBook_LearnFiretouch.cs","Assets\\RPG Creation Kit\\Magic\\Spells\\Fireball\\Spell Book\\SpellBook_LearnFireball.cs","Assets\\RPG Creation Kit\\Magic\\Spells\\Lesser Healing\\Spell Book\\SpellBook_LearnLesserHealing.cs","Assets\\RPG Creation Kit\\Prefab Library\\UI\\Alert Message\\AlertMessage.cs","Assets\\RPG Creation Kit\\Prefab Library\\UI\\Quest Alerts\\InGameQuestObjectiveAlert.cs","Assets\\RPG Creation Kit\\Scripts\\Additional\\SerializableDictionary\\SerializableDictionary.cs","Assets\\RPG Creation Kit\\Scripts\\AI\\AI Scripts\\AgentLinkMover.cs","Assets\\RPG Creation Kit\\Scripts\\AI\\AI Scripts\\AggroInfo.cs","Assets\\RPG Creation Kit\\Scripts\\AI\\AI Scripts\\AIBase.cs","Assets\\RPG Creation Kit\\Scripts\\AI\\AI Scripts\\AIBehaviourTreed.cs","Assets\\RPG Creation Kit\\Scripts\\AI\\AI Scripts\\AICombatSystem.cs","Assets\\RPG Creation Kit\\Scripts\\AI\\AI Scripts\\AIComponents.cs","Assets\\RPG Creation Kit\\Scripts\\AI\\AI Scripts\\AIGUIDReferences.cs","Assets\\RPG Creation Kit\\Scripts\\AI\\AI Scripts\\AIHeadPos.cs","Assets\\RPG Creation Kit\\Scripts\\AI\\AI Scripts\\AIInventoryEquipment.cs","Assets\\RPG Creation Kit\\Scripts\\AI\\AI Scripts\\AILookAt.cs","Assets\\RPG Creation Kit\\Scripts\\AI\\AI Scripts\\AIMovements.cs","Assets\\RPG Creation Kit\\Scripts\\AI\\AI Scripts\\AIPerception.cs","Assets\\RPG Creation Kit\\Scripts\\AI\\AI Scripts\\AISounds.cs","Assets\\RPG Creation Kit\\Scripts\\AI\\AI Scripts\\AIStatus.cs","Assets\\RPG Creation Kit\\Scripts\\AI\\AI Scripts\\AITalkative.cs","Assets\\RPG Creation Kit\\Scripts\\AI\\AI Scripts\\CustomPath\\AICustomPath.cs","Assets\\RPG Creation Kit\\Scripts\\AI\\AI Scripts\\CustomPath\\AIPathPoint.cs","Assets\\RPG Creation Kit\\Scripts\\AI\\AI Scripts\\NPCActions\\NPCActionPoint.cs","Assets\\RPG Creation Kit\\Scripts\\AI\\AI Scripts\\PurposeState.cs","Assets\\RPG Creation Kit\\Scripts\\AI\\AI Scripts\\Ragdoll.cs","Assets\\RPG Creation Kit\\Scripts\\AI\\AI Scripts\\TargetableTransform.cs","Assets\\RPG Creation Kit\\Scripts\\AI\\Creature AI\\CreatureAI.cs","Assets\\RPG Creation Kit\\Scripts\\AI\\RckAI.cs","Assets\\RPG Creation Kit\\Scripts\\Alchemy\\Item In Inventory\\Scripts\\Items UI\\AlchemyRecipe.cs","Assets\\RPG Creation Kit\\Scripts\\Alchemy\\Item In Inventory\\Scripts\\Items UI\\ConsumableItemInAlchemyUI.cs","Assets\\RPG Creation Kit\\Scripts\\Attributes System\\EntityAttributes.cs","Assets\\RPG Creation Kit\\Scripts\\Audio\\GameAudioManager.cs","Assets\\RPG Creation Kit\\Scripts\\BehaviourTrees\\BehaviourTrees.cs","Assets\\RPG Creation Kit\\Scripts\\BehaviourTrees\\BTRunner.cs","Assets\\RPG Creation Kit\\Scripts\\BehaviourTrees\\Nodes\\BTNode.cs","Assets\\RPG Creation Kit\\Scripts\\BehaviourTrees\\Nodes\\Conditions\\AIField_BoolCheckNode.cs","Assets\\RPG Creation Kit\\Scripts\\BehaviourTrees\\Nodes\\Conditions\\CBoolCheckNode.cs","Assets\\RPG Creation Kit\\Scripts\\BehaviourTrees\\Nodes\\Conditions\\CFloatComparisonNode.cs","Assets\\RPG Creation Kit\\Scripts\\BehaviourTrees\\Nodes\\Conditions\\CIntComparisonNode.cs","Assets\\RPG Creation Kit\\Scripts\\BehaviourTrees\\Nodes\\Control Flow\\ParallelNode.cs","Assets\\RPG Creation Kit\\Scripts\\BehaviourTrees\\Nodes\\Control Flow\\RandomSelectOneNode.cs","Assets\\RPG Creation Kit\\Scripts\\BehaviourTrees\\Nodes\\Control Flow\\RandomSelectorNode.cs","Assets\\RPG Creation Kit\\Scripts\\BehaviourTrees\\Nodes\\Control Flow\\SelectorNode.cs","Assets\\RPG Creation Kit\\Scripts\\BehaviourTrees\\Nodes\\Control Flow\\SequenceNode.cs","Assets\\RPG Creation Kit\\Scripts\\BehaviourTrees\\Nodes\\Decorators\\DRepeaterNode.cs","Assets\\RPG Creation Kit\\Scripts\\BehaviourTrees\\Nodes\\Decorators\\DReturnSuccess.cs","Assets\\RPG Creation Kit\\Scripts\\BehaviourTrees\\Nodes\\Execution\\ActionNode.cs","Assets\\RPG Creation Kit\\Scripts\\BehaviourTrees\\Nodes\\Execution\\AI_ChangeSteeringBehaviour.cs","Assets\\RPG Creation Kit\\Scripts\\BehaviourTrees\\Nodes\\Execution\\AI_GetFieldNode.cs","Assets\\RPG Creation Kit\\Scripts\\BehaviourTrees\\Nodes\\Execution\\AI_GetPropertyNode.cs","Assets\\RPG Creation Kit\\Scripts\\BehaviourTrees\\Nodes\\Execution\\AI_InvokeNode.cs","Assets\\RPG Creation Kit\\Scripts\\BehaviourTrees\\Nodes\\Execution\\AI_SetFieldNode.cs","Assets\\RPG Creation Kit\\Scripts\\BehaviourTrees\\Nodes\\Execution\\AI_SetPropertyNode.cs","Assets\\RPG Creation Kit\\Scripts\\BehaviourTrees\\Nodes\\Execution\\AI_SwitchToPurposeBehaviourTreeNode.cs","Assets\\RPG Creation Kit\\Scripts\\BehaviourTrees\\Nodes\\Execution\\DebugNode.cs","Assets\\RPG Creation Kit\\Scripts\\BehaviourTrees\\Nodes\\Execution\\Math\\ARandomIntNode.cs","Assets\\RPG Creation Kit\\Scripts\\BehaviourTrees\\Nodes\\Execution\\ResetBelowNode.cs","Assets\\RPG Creation Kit\\Scripts\\BehaviourTrees\\Nodes\\Execution\\WaitNode.cs","Assets\\RPG Creation Kit\\Scripts\\BehaviourTrees\\Nodes\\Graph\\SetGraphVariableNode.cs","Assets\\RPG Creation Kit\\Scripts\\BehaviourTrees\\Nodes\\NodeStatus.cs","Assets\\RPG Creation Kit\\Scripts\\BehaviourTrees\\Nodes\\RootNode.cs","Assets\\RPG Creation Kit\\Scripts\\BehaviourTrees\\RPGCK_BT.cs","Assets\\RPG Creation Kit\\Scripts\\BehaviourTrees\\Variables\\BTReference.cs","Assets\\RPG Creation Kit\\Scripts\\BehaviourTrees\\Variables\\BTVariable.cs","Assets\\RPG Creation Kit\\Scripts\\BehaviourTrees\\Variables\\BT_Bool.cs","Assets\\RPG Creation Kit\\Scripts\\BehaviourTrees\\Variables\\BT_Float.cs","Assets\\RPG Creation Kit\\Scripts\\BehaviourTrees\\Variables\\BT_Int.cs","Assets\\RPG Creation Kit\\Scripts\\Cells System\\Additional\\SceneDrawer\\SceneReference.cs","Assets\\RPG Creation Kit\\Scripts\\Cells System\\Additional\\SceneDrawer\\SceneReferenceLite.cs","Assets\\RPG Creation Kit\\Scripts\\Cells System\\Scripts\\CellEntryTransform.cs","Assets\\RPG Creation Kit\\Scripts\\Cells System\\Scripts\\CellInformation.cs","Assets\\RPG Creation Kit\\Scripts\\Cells System\\Scripts\\Data Structure\\Cell.cs","Assets\\RPG Creation Kit\\Scripts\\Cells System\\Scripts\\Data Structure\\Worldspace.cs","Assets\\RPG Creation Kit\\Scripts\\Cells System\\Scripts\\Door.cs","Assets\\RPG Creation Kit\\Scripts\\Cells System\\Scripts\\DoorGroundPivot.cs","Assets\\RPG Creation Kit\\Scripts\\Cells System\\Scripts\\DoorTeleportMarker.cs","Assets\\RPG Creation Kit\\Scripts\\Cells System\\Scripts\\Loading System\\WorldManager.cs","Assets\\RPG Creation Kit\\Scripts\\Cells System\\Scripts\\TeleportTest.cs","Assets\\RPG Creation Kit\\Scripts\\Character Creation\\BlendshapeInCreationList.cs","Assets\\RPG Creation Kit\\Scripts\\Character Creation\\CharacterCreationManager.cs","Assets\\RPG Creation Kit\\Scripts\\Character System\\Scripts\\BodyData.cs","Assets\\RPG Creation Kit\\Scripts\\Character System\\Scripts\\Eye.cs","Assets\\RPG Creation Kit\\Scripts\\Character System\\Scripts\\Hair.cs","Assets\\RPG Creation Kit\\Scripts\\Character System\\Scripts\\HeadBlendshapesManager.cs","Assets\\RPG Creation Kit\\Scripts\\Character System\\Scripts\\Race.cs","Assets\\RPG Creation Kit\\Scripts\\Combat System\\Player\\Scripts\\CameraAnimation.cs","Assets\\RPG Creation Kit\\Scripts\\Combat System\\Player\\Scripts\\PCFPSArms.cs","Assets\\RPG Creation Kit\\Scripts\\Combat System\\Player\\Scripts\\PCWeaponUI.cs","Assets\\RPG Creation Kit\\Scripts\\Combat System\\Player\\Scripts\\PlayerCombat.cs","Assets\\RPG Creation Kit\\Scripts\\Combat System\\Player\\Scripts\\Projectile.cs","Assets\\RPG Creation Kit\\Scripts\\Combat System\\Player\\Scripts\\ProtectCameraFromWallClip.cs","Assets\\RPG Creation Kit\\Scripts\\Combat System\\Player\\Scripts\\SwayEffect.cs","Assets\\RPG Creation Kit\\Scripts\\Combat System\\Player\\Scripts\\WeaponAttack.cs","Assets\\RPG Creation Kit\\Scripts\\Combat System\\Player\\Scripts\\WeaponOnHand.cs","Assets\\RPG Creation Kit\\Scripts\\Combat System\\_General\\BlockingZone.cs","Assets\\RPG Creation Kit\\Scripts\\Combat System\\_General\\BodyPart.cs","Assets\\RPG Creation Kit\\Scripts\\Combat System\\_General\\LocationalDamage.cs","Assets\\RPG Creation Kit\\Scripts\\Compass & Objective Marker\\Compass.cs","Assets\\RPG Creation Kit\\Scripts\\Compass & Objective Marker\\QuestStageTarget.cs","Assets\\RPG Creation Kit\\Scripts\\ConditionsSystem\\Condition.cs","Assets\\RPG Creation Kit\\Scripts\\Databases\\AI Database\\AIDatabase.cs","Assets\\RPG Creation Kit\\Scripts\\Databases\\AI Database\\AIDatabaseFile.cs","Assets\\RPG Creation Kit\\Scripts\\Databases\\Behaviours Database\\BehaviourDatabase.cs","Assets\\RPG Creation Kit\\Scripts\\Databases\\Behaviours Database\\BehaviourDatabaseFile.cs","Assets\\RPG Creation Kit\\Scripts\\Databases\\Dialogues Database\\DialoguesDatabase.cs","Assets\\RPG Creation Kit\\Scripts\\Databases\\Dialogues Database\\DialoguesDatabaseFile.cs","Assets\\RPG Creation Kit\\Scripts\\Databases\\Factions Database\\FactionsDatabase.cs","Assets\\RPG Creation Kit\\Scripts\\Databases\\Factions Database\\FactionsDatabaseFile.cs","Assets\\RPG Creation Kit\\Scripts\\Databases\\Icons Database\\IconsDatabase.cs","Assets\\RPG Creation Kit\\Scripts\\Databases\\Icons Database\\IconsDatabaseFile.cs","Assets\\RPG Creation Kit\\Scripts\\Databases\\Icons Database\\IconsShortcut.cs","Assets\\RPG Creation Kit\\Scripts\\Databases\\Items Database\\ItemsDatabase.cs","Assets\\RPG Creation Kit\\Scripts\\Databases\\Items Database\\ItemsDatabaseFile.cs","Assets\\RPG Creation Kit\\Scripts\\Databases\\Quests Database\\QuestsDatabase.cs","Assets\\RPG Creation Kit\\Scripts\\Databases\\Quests Database\\QuestsDatabaseFile.cs","Assets\\RPG Creation Kit\\Scripts\\Databases\\Race Database\\RaceDatabase.cs","Assets\\RPG Creation Kit\\Scripts\\Databases\\Race Database\\RaceDatabaseFile.cs","Assets\\RPG Creation Kit\\Scripts\\Databases\\RckDatabase.cs","Assets\\RPG Creation Kit\\Scripts\\Databases\\Spells Database\\SpellsDatabase.cs","Assets\\RPG Creation Kit\\Scripts\\Databases\\Spells Database\\SpellsDatabaseFile.cs","Assets\\RPG Creation Kit\\Scripts\\Databases\\Worldspaces Database\\WorldspaceDatabase.cs","Assets\\RPG Creation Kit\\Scripts\\Databases\\Worldspaces Database\\WorldspaceDatabaseFile.cs","Assets\\RPG Creation Kit\\Scripts\\Dialogue System\\Graphs\\DialogueGraph.cs","Assets\\RPG Creation Kit\\Scripts\\Dialogue System\\Nodes\\Actions\\Dialogue_AIInvokeNode.cs","Assets\\RPG Creation Kit\\Scripts\\Dialogue System\\Nodes\\Actions\\Dialogue_AISetFieldNode.cs","Assets\\RPG Creation Kit\\Scripts\\Dialogue System\\Nodes\\DialogueNode.cs","Assets\\RPG Creation Kit\\Scripts\\Dialogue System\\Nodes\\ToOrder\\ChangeDialogueNode.cs","Assets\\RPG Creation Kit\\Scripts\\Dialogue System\\Nodes\\ToOrder\\ChangeStateNode.cs","Assets\\RPG Creation Kit\\Scripts\\Dialogue System\\Nodes\\ToOrder\\CommentNode.cs","Assets\\RPG Creation Kit\\Scripts\\Dialogue System\\Nodes\\ToOrder\\ConditionsNode.cs","Assets\\RPG Creation Kit\\Scripts\\Dialogue System\\Nodes\\ToOrder\\EndNode.cs","Assets\\RPG Creation Kit\\Scripts\\Dialogue System\\Nodes\\ToOrder\\EntryNode.cs","Assets\\RPG Creation Kit\\Scripts\\Dialogue System\\Nodes\\ToOrder\\EventsNode.cs","Assets\\RPG Creation Kit\\Scripts\\Dialogue System\\Nodes\\ToOrder\\NPCDialogueLineNode.cs","Assets\\RPG Creation Kit\\Scripts\\Dialogue System\\Nodes\\ToOrder\\PlayerQuestionsNode.cs","Assets\\RPG Creation Kit\\Scripts\\Dialogue System\\Nodes\\ToOrder\\RandomNode.cs","Assets\\RPG Creation Kit\\Scripts\\Dialogue System\\PlayerQuestion.cs","Assets\\RPG Creation Kit\\Scripts\\Dialogue System\\Scripts\\LichKingFirstLineResult.cs","Assets\\RPG Creation Kit\\Scripts\\Dialogue System\\Scripts\\ResultScript.cs","Assets\\RPG Creation Kit\\Scripts\\Dialogue System\\UI\\PlayerQuestionUI.cs","Assets\\RPG Creation Kit\\Scripts\\Equipment System\\AttachToMesh.cs","Assets\\RPG Creation Kit\\Scripts\\Equipment System\\Equipment.cs","Assets\\RPG Creation Kit\\Scripts\\Faction System\\Faction.cs","Assets\\RPG Creation Kit\\Scripts\\Input\\Gamepad Support\\BookUI\\Gamepad_UIButton.cs","Assets\\RPG Creation Kit\\Scripts\\Input\\Gamepad Support\\Gamepad_OnScreenCommands.cs","Assets\\RPG Creation Kit\\Scripts\\Input\\Gamepad Support\\Gamepad_PreventDeselection.cs","Assets\\RPG Creation Kit\\Scripts\\Input\\Gamepad Support\\Gamepad_ScrollBar.cs","Assets\\RPG Creation Kit\\Scripts\\Input\\Gamepad Support\\Inventory\\Gamepad_InventoryDrop.cs","Assets\\RPG Creation Kit\\Scripts\\Input\\Gamepad Support\\Inventory\\Gamepad_InventoryItemListSelection.cs","Assets\\RPG Creation Kit\\Scripts\\Input\\Gamepad Support\\Inventory\\Gamepad_InventoryMainTabs.cs","Assets\\RPG Creation Kit\\Scripts\\Input\\Gamepad Support\\Inventory\\Gamepad_InventoryTabs.cs","Assets\\RPG Creation Kit\\Scripts\\Input\\Gamepad Support\\Inventory\\Gamepad_InventoryTypeTabs.cs","Assets\\RPG Creation Kit\\Scripts\\Input\\Gamepad Support\\LootingUI\\Gamepad_LootingUIMainTabs.cs","Assets\\RPG Creation Kit\\Scripts\\Input\\Gamepad Support\\LootingUI\\Gamepad_LootingUITabs.cs","Assets\\RPG Creation Kit\\Scripts\\Input\\Gamepad Support\\QuestManager\\Gamepad_QuestManagerUIMainTabs.cs","Assets\\RPG Creation Kit\\Scripts\\Input\\Gamepad Support\\TradeUI\\Gamepad_TradeUIMainTabs.cs","Assets\\RPG Creation Kit\\Scripts\\Input\\Gamepad Support\\TradeUI\\Gamepad_TradeUITabs.cs","Assets\\RPG Creation Kit\\Scripts\\Input\\RckInput.cs","Assets\\RPG Creation Kit\\Scripts\\Interactive Objects\\AlertMessageUIElement.cs","Assets\\RPG Creation Kit\\Scripts\\Interactive Objects\\InteractiveObject.cs","Assets\\RPG Creation Kit\\Scripts\\Interactive Objects\\InteractiveObjectUI.cs","Assets\\RPG Creation Kit\\Scripts\\Interactive Objects\\InteractiveObject_Behaviour.cs","Assets\\RPG Creation Kit\\Scripts\\Interfaces\\IDamageable.cs","Assets\\RPG Creation Kit\\Scripts\\Interfaces\\IDialoguable.cs","Assets\\RPG Creation Kit\\Scripts\\Interfaces\\IDraggable.cs","Assets\\RPG Creation Kit\\Scripts\\Interfaces\\IHittable.cs","Assets\\RPG Creation Kit\\Scripts\\Interfaces\\IMeleeAttacker.cs","Assets\\RPG Creation Kit\\Scripts\\Interfaces\\IRangedAttacker.cs","Assets\\RPG Creation Kit\\Scripts\\Interfaces\\ITargetable.cs","Assets\\RPG Creation Kit\\Scripts\\Inventory System\\Character Tab\\Scripts\\CharacterTabManager.cs","Assets\\RPG Creation Kit\\Scripts\\Inventory System\\Character Tab\\Scripts\\EffectInCharacterTab.cs","Assets\\RPG Creation Kit\\Scripts\\Inventory System\\Character Tab\\Scripts\\EffectsOnInventoryUIPoolManager.cs","Assets\\RPG Creation Kit\\Scripts\\Inventory System\\DisplayTotalEncumbranceText.cs","Assets\\RPG Creation Kit\\Scripts\\Inventory System\\DropItemsPanel.cs","Assets\\RPG Creation Kit\\Scripts\\Inventory System\\Inventory.cs","Assets\\RPG Creation Kit\\Scripts\\Inventory System\\InventoryUI.cs","Assets\\RPG Creation Kit\\Scripts\\Inventory System\\Item In Inventory\\Scripts\\InventoryTab.cs","Assets\\RPG Creation Kit\\Scripts\\Inventory System\\Item In Inventory\\Scripts\\Items In Inventory\\AmmoItemInInventory.cs","Assets\\RPG Creation Kit\\Scripts\\Inventory System\\Item In Inventory\\Scripts\\Items In Inventory\\ArmorItemInInventory.cs","Assets\\RPG Creation Kit\\Scripts\\Inventory System\\Item In Inventory\\Scripts\\Items In Inventory\\BookItemInInventory.cs","Assets\\RPG Creation Kit\\Scripts\\Inventory System\\Item In Inventory\\Scripts\\Items In Inventory\\ConsumableItemInInventory.cs","Assets\\RPG Creation Kit\\Scripts\\Inventory System\\Item In Inventory\\Scripts\\Items In Inventory\\ItemInInventory.cs","Assets\\RPG Creation Kit\\Scripts\\Inventory System\\Item In Inventory\\Scripts\\Items In Inventory\\KeyItemInInventory.cs","Assets\\RPG Creation Kit\\Scripts\\Inventory System\\Item In Inventory\\Scripts\\Items In Inventory\\MiscItemInInventory.cs","Assets\\RPG Creation Kit\\Scripts\\Inventory System\\Item In Inventory\\Scripts\\Items In Inventory\\WeaponItemInInventory.cs","Assets\\RPG Creation Kit\\Scripts\\Inventory System\\Item In Inventory\\Scripts\\Items UI\\AmmoItemInInventoryUI.cs","Assets\\RPG Creation Kit\\Scripts\\Inventory System\\Item In Inventory\\Scripts\\Items UI\\ArmorItemInInventoryUI.cs","Assets\\RPG Creation Kit\\Scripts\\Inventory System\\Item In Inventory\\Scripts\\Items UI\\BookItemInInventoryUI.cs","Assets\\RPG Creation Kit\\Scripts\\Inventory System\\Item In Inventory\\Scripts\\Items UI\\ConsumableItemInInventoryUI.cs","Assets\\RPG Creation Kit\\Scripts\\Inventory System\\Item In Inventory\\Scripts\\Items UI\\ItemInInventoryUI.cs","Assets\\RPG Creation Kit\\Scripts\\Inventory System\\Item In Inventory\\Scripts\\Items UI\\KeyItemInInventoryUI.cs","Assets\\RPG Creation Kit\\Scripts\\Inventory System\\Item In Inventory\\Scripts\\Items UI\\MiscItemInInventoryUI.cs","Assets\\RPG Creation Kit\\Scripts\\Inventory System\\Item In Inventory\\Scripts\\Items UI\\WeaponItemInInventoryUI.cs","Assets\\RPG Creation Kit\\Scripts\\Inventory System\\Item In Inventory\\Scripts\\ItemsInListPool.cs","Assets\\RPG Creation Kit\\Scripts\\Inventory System\\Item In Inventory\\Scripts\\ItemsInListPoolManager.cs","Assets\\RPG Creation Kit\\Scripts\\Inventory System\\Player Model In Inventory\\Scripts\\PlayerInInventory.cs","Assets\\RPG Creation Kit\\Scripts\\Inventory System\\Player Model In Inventory\\Scripts\\RotateWithMouse.cs","Assets\\RPG Creation Kit\\Scripts\\Inventory System\\Spells Tab\\SpellInUI.cs","Assets\\RPG Creation Kit\\Scripts\\Inventory System\\Spells Tab\\SpellProjectile.cs","Assets\\RPG Creation Kit\\Scripts\\Inventory System\\Spells Tab\\SpellsPoolManager.cs","Assets\\RPG Creation Kit\\Scripts\\Items System\\Scripts\\Book System\\BookReaderManager.cs","Assets\\RPG Creation Kit\\Scripts\\Items System\\Scripts\\EffectOnEntity\\EffectOnEntity.cs","Assets\\RPG Creation Kit\\Scripts\\Items System\\Scripts\\EffectOnEntity\\EffectOnEntityUI.cs","Assets\\RPG Creation Kit\\Scripts\\Items System\\Scripts\\EffectOnEntity\\EffectsOnPlayerUIPoolManager.cs","Assets\\RPG Creation Kit\\Scripts\\Items System\\Scripts\\RefItems\\AmmoItem.cs","Assets\\RPG Creation Kit\\Scripts\\Items System\\Scripts\\RefItems\\ArmorItem.cs","Assets\\RPG Creation Kit\\Scripts\\Items System\\Scripts\\RefItems\\BookItem.cs","Assets\\RPG Creation Kit\\Scripts\\Items System\\Scripts\\RefItems\\ConsumableItem.cs","Assets\\RPG Creation Kit\\Scripts\\Items System\\Scripts\\RefItems\\Item.cs","Assets\\RPG Creation Kit\\Scripts\\Items System\\Scripts\\RefItems\\ItemScript.cs","Assets\\RPG Creation Kit\\Scripts\\Items System\\Scripts\\RefItems\\KeyItem.cs","Assets\\RPG Creation Kit\\Scripts\\Items System\\Scripts\\RefItems\\MiscItem.cs","Assets\\RPG Creation Kit\\Scripts\\Items System\\Scripts\\RefItems\\WeaponItem.cs","Assets\\RPG Creation Kit\\Scripts\\Items System\\Scripts\\World Items\\ItemInWorld.cs","Assets\\RPG Creation Kit\\Scripts\\LoadingScreen\\LoadingScreensImages\\LoadingScreenManager.cs","Assets\\RPG Creation Kit\\Scripts\\Looting System\\CraftingPoint.cs","Assets\\RPG Creation Kit\\Scripts\\Looting System\\Items In Looting UI\\AmmoItemInLootingUI_DrawDeposit.cs","Assets\\RPG Creation Kit\\Scripts\\Looting System\\Items In Looting UI\\ArmorItemInLootingUI_DrawDeposit.cs","Assets\\RPG Creation Kit\\Scripts\\Looting System\\Items In Looting UI\\BookItemInLootingUI_DrawDeposit.cs","Assets\\RPG Creation Kit\\Scripts\\Looting System\\Items In Looting UI\\ConsumableItemInLootingUI_DrawDeposit.cs","Assets\\RPG Creation Kit\\Scripts\\Looting System\\Items In Looting UI\\KeyItemInLootingUI_DrawDeposit.cs","Assets\\RPG Creation Kit\\Scripts\\Looting System\\Items In Looting UI\\MiscItemInLootingUI_DrawDeposit.cs","Assets\\RPG Creation Kit\\Scripts\\Looting System\\Items In Looting UI\\WeaponItemInLootingUI_DrawDeposit.cs","Assets\\RPG Creation Kit\\Scripts\\Looting System\\LootingInventoryTab.cs","Assets\\RPG Creation Kit\\Scripts\\Looting System\\LootingInventoryUI.cs","Assets\\RPG Creation Kit\\Scripts\\Looting System\\LootingPoint.cs","Assets\\RPG Creation Kit\\Scripts\\Magic System\\Spell.cs","Assets\\RPG Creation Kit\\Scripts\\Magic System\\SpellExplodeAfter.cs","Assets\\RPG Creation Kit\\Scripts\\Magic System\\SpellsKnowledge.cs","Assets\\RPG Creation Kit\\Scripts\\MainMenu\\MainMenuUI.cs","Assets\\RPG Creation Kit\\Scripts\\Mutables\\Mutable.cs","Assets\\RPG Creation Kit\\Scripts\\NPCs\\NPC Path System\\NPC_Path.cs","Assets\\RPG Creation Kit\\Scripts\\NPCs\\NPC Path System\\NPC_PathPoint.cs","Assets\\RPG Creation Kit\\Scripts\\PauseMenu\\PauseMenuManager.cs","Assets\\RPG Creation Kit\\Scripts\\Persistent References\\PersistentReference.cs","Assets\\RPG Creation Kit\\Scripts\\Persistent References\\PersistentReferenceManager.cs","Assets\\RPG Creation Kit\\Scripts\\Player\\MouseLook.cs","Assets\\RPG Creation Kit\\Scripts\\Player\\PlayerBase.cs","Assets\\RPG Creation Kit\\Scripts\\Player\\PlayerInteractor.cs","Assets\\RPG Creation Kit\\Scripts\\Player\\PlayerMovements.cs","Assets\\RPG Creation Kit\\Scripts\\Player\\PlayerStatus.cs","Assets\\RPG Creation Kit\\Scripts\\Player\\PlayerUI.cs","Assets\\RPG Creation Kit\\Scripts\\Player\\PlayerUIManager.cs","Assets\\RPG Creation Kit\\Scripts\\Player\\RckPlayer.cs","Assets\\RPG Creation Kit\\Scripts\\Player\\ThirdPersonPlayer.cs","Assets\\RPG Creation Kit\\Scripts\\Player\\_General\\PlayerDeathScreen.cs","Assets\\RPG Creation Kit\\Scripts\\Quest System\\Consequences System\\Consequence.cs","Assets\\RPG Creation Kit\\Scripts\\Quest System\\Consequences System\\ConsequenceManager.cs","Assets\\RPG Creation Kit\\Scripts\\Quest System\\Consequences System\\Events.cs","Assets\\RPG Creation Kit\\Scripts\\Quest System\\Goto.cs","Assets\\RPG Creation Kit\\Scripts\\Quest System\\Player\\Interactor\\InteractableUI.cs","Assets\\RPG Creation Kit\\Scripts\\Quest System\\Player\\Quest Alerts\\Scripts\\QuestAlertManager.cs","Assets\\RPG Creation Kit\\Scripts\\Quest System\\Player\\Quest Manager UI\\Elements\\QuestInList.cs","Assets\\RPG Creation Kit\\Scripts\\Quest System\\Player\\Quest Manager UI\\Elements\\QuestManagerUI_QuestTab.cs","Assets\\RPG Creation Kit\\Scripts\\Quest System\\Player\\Quest Manager UI\\Elements\\QuestStageInList.cs","Assets\\RPG Creation Kit\\Scripts\\Quest System\\Player\\Quest Manager UI\\Naviagation Menu\\NavigationElement.cs","Assets\\RPG Creation Kit\\Scripts\\Quest System\\Player\\Quest Manager UI\\Naviagation Menu\\NavigationMenu.cs","Assets\\RPG Creation Kit\\Scripts\\Quest System\\Player\\Quest Manager UI\\QuestManagerUI.cs","Assets\\RPG Creation Kit\\Scripts\\Quest System\\Player\\QuestManager.cs","Assets\\RPG Creation Kit\\Scripts\\Quest System\\QuestDealer\\QuestDealer.cs","Assets\\RPG Creation Kit\\Scripts\\Quest System\\Quests\\Quest.cs","Assets\\RPG Creation Kit\\Scripts\\Quest System\\Quests\\QuestScripts\\QuestScript.cs","Assets\\RPG Creation Kit\\Scripts\\Quest System\\Quests\\QuestScripts\\QuestScriptManager.cs","Assets\\RPG Creation Kit\\Scripts\\Quest System\\Quests\\QuestScripts\\QuestStageScript.cs","Assets\\RPG Creation Kit\\Scripts\\Quest System\\Quests\\QuestStage.cs","Assets\\RPG Creation Kit\\Scripts\\Quest System\\QuestUpdater\\QuestUpdater.cs","Assets\\RPG Creation Kit\\Scripts\\Save System\\SaveElements\\AIData.cs","Assets\\RPG Creation Kit\\Scripts\\Save System\\SaveElements\\CreatedItemInWorldData.cs","Assets\\RPG Creation Kit\\Scripts\\Save System\\SaveElements\\DoorsData.cs","Assets\\RPG Creation Kit\\Scripts\\Save System\\SaveElements\\EffectOnEntitySaveData.cs","Assets\\RPG Creation Kit\\Scripts\\Save System\\SaveElements\\EntityAttributesSaveData.cs","Assets\\RPG Creation Kit\\Scripts\\Save System\\SaveElements\\Environment.cs","Assets\\RPG Creation Kit\\Scripts\\Save System\\SaveElements\\FaceBlendshapesSaveData.cs","Assets\\RPG Creation Kit\\Scripts\\Save System\\SaveElements\\InventorySaveData.cs","Assets\\RPG Creation Kit\\Scripts\\Save System\\SaveElements\\ItemsInWorldData.cs","Assets\\RPG Creation Kit\\Scripts\\Save System\\SaveElements\\LootingPointsData.cs","Assets\\RPG Creation Kit\\Scripts\\Save System\\SaveElements\\MutablesData.cs","Assets\\RPG Creation Kit\\Scripts\\Save System\\SaveElements\\PlayerData.cs","Assets\\RPG Creation Kit\\Scripts\\Save System\\SaveElements\\QuestsData.cs","Assets\\RPG Creation Kit\\Scripts\\Save System\\SaveElements\\RagdollSaveData.cs","Assets\\RPG Creation Kit\\Scripts\\Save System\\SaveElements\\SaveFileData.cs","Assets\\RPG Creation Kit\\Scripts\\Save System\\SaveElements\\SpellsKnowledgeSaveData.cs","Assets\\RPG Creation Kit\\Scripts\\Save System\\SaveFile.cs","Assets\\RPG Creation Kit\\Scripts\\Save System\\SaveSystemManager.cs","Assets\\RPG Creation Kit\\Scripts\\Save System\\UI\\LoadPanel.cs","Assets\\RPG Creation Kit\\Scripts\\Save System\\UI\\OverwriteAlertPanel.cs","Assets\\RPG Creation Kit\\Scripts\\Save System\\UI\\Savegame.cs","Assets\\RPG Creation Kit\\Scripts\\Save System\\UI\\SaveGameButtonUI.cs","Assets\\RPG Creation Kit\\Scripts\\Save System\\UI\\SavePanel.cs","Assets\\RPG Creation Kit\\Scripts\\ScriptsTemplates\\Code\\CreateCSFromTemplate.cs","Assets\\RPG Creation Kit\\Scripts\\Sounds\\ButtonSounds.cs","Assets\\RPG Creation Kit\\Scripts\\Trade System\\ConfirmTradePanel.cs","Assets\\RPG Creation Kit\\Scripts\\Trade System\\Merchant.cs","Assets\\RPG Creation Kit\\Scripts\\Trade System\\TradeSystemInventoryTab.cs","Assets\\RPG Creation Kit\\Scripts\\Trade System\\TradeSystemUI.cs","Assets\\RPG Creation Kit\\Scripts\\Trade System\\UI\\AmmoItemInTradeUI.cs","Assets\\RPG Creation Kit\\Scripts\\Trade System\\UI\\ArmorItemInTradeUI.cs","Assets\\RPG Creation Kit\\Scripts\\Trade System\\UI\\BookItemInTradeUI.cs","Assets\\RPG Creation Kit\\Scripts\\Trade System\\UI\\ConsumableItemInTradeUI.cs","Assets\\RPG Creation Kit\\Scripts\\Trade System\\UI\\KeyItemInTradeUI.cs","Assets\\RPG Creation Kit\\Scripts\\Trade System\\UI\\MiscItemInTradeUI.cs","Assets\\RPG Creation Kit\\Scripts\\Trade System\\UI\\WeaponItemInTradeUI.cs","Assets\\RPG Creation Kit\\Scripts\\UI\\AutoScroll.cs","Assets\\RPG Creation Kit\\Scripts\\UI\\ButtonSelectionController.cs","Assets\\RPG Creation Kit\\Scripts\\UI\\DisplayCharacterName.cs","Assets\\RPG Creation Kit\\Scripts\\UI\\DrumScroller.cs","Assets\\RPG Creation Kit\\Scripts\\UI\\ScrollRectPosition.cs","Assets\\RPG Creation Kit\\Scripts\\UI\\ScrollToSelected.cs","Assets\\RPG Creation Kit\\Scripts\\UI\\UIScrollToSelection.cs","Assets\\RPG Creation Kit\\Scripts\\UI\\UIScrollToSelectionXY.cs","Assets\\RPG Creation Kit\\Scripts\\_ General\\ConvertToRegularMesh.cs","Assets\\RPG Creation Kit\\Scripts\\_ General\\Data\\RCKTransform.cs","Assets\\RPG Creation Kit\\Scripts\\_ General\\DebugRbVelocity.cs","Assets\\RPG Creation Kit\\Scripts\\_ General\\DestroyAfter.cs","Assets\\RPG Creation Kit\\Scripts\\_ General\\Entity.cs","Assets\\RPG Creation Kit\\Scripts\\_ General\\EnumFlagsAttribute.cs","Assets\\RPG Creation Kit\\Scripts\\_ General\\EnumFlagsAttributeDrawer.cs","Assets\\RPG Creation Kit\\Scripts\\_ General\\ExistsOnlyInEditor.cs","Assets\\RPG Creation Kit\\Scripts\\_ General\\GameStatus.cs","Assets\\RPG Creation Kit\\Scripts\\_ General\\GameVersionText.cs","Assets\\RPG Creation Kit\\Scripts\\_ General\\GizmosExtension.cs","Assets\\RPG Creation Kit\\Scripts\\_ General\\GlobalVariables.cs","Assets\\RPG Creation Kit\\Scripts\\_ General\\NodesHelper.cs","Assets\\RPG Creation Kit\\Scripts\\_ General\\RCKFunctions.cs","Assets\\RPG Creation Kit\\Scripts\\_ General\\RCKLayers.cs","Assets\\RPG Creation Kit\\Scripts\\_ General\\RCKSettings.cs","Assets\\RPG Creation Kit\\Scripts\\_ General\\SerializePropertyAttributeDrawer.cs","Assets\\RPG Creation Kit\\Scripts\\_ General\\SettingsMenuManager.cs","Assets\\RPG Creation Kit\\Scripts\\_ General\\UI\\UICategorySelection.cs","Assets\\RPG Creation Kit\\Scripts\\_ General\\UI\\UISliderValueDisplayer.cs","Assets\\RPG Creation Kit\\Scripts\\_ General\\UI\\UITab.cs","Assets\\RPG Creation Kit\\Scripts\\_ General\\UINavigationHelper.cs","Assets\\RPG Creation Kit\\Standard Assets\\Environment\\Water (Basic)\\Scripts\\WaterBasic.cs","Assets\\RPG Creation Kit\\Standard Assets\\Environment\\Water\\Water\\Scripts\\Displace.cs","Assets\\RPG Creation Kit\\Standard Assets\\Environment\\Water\\Water\\Scripts\\GerstnerDisplace.cs","Assets\\RPG Creation Kit\\Standard Assets\\Environment\\Water\\Water\\Scripts\\MeshContainer.cs","Assets\\RPG Creation Kit\\Standard Assets\\Environment\\Water\\Water\\Scripts\\PlanarReflection.cs","Assets\\RPG Creation Kit\\Standard Assets\\Environment\\Water\\Water\\Scripts\\SpecularLighting.cs","Assets\\RPG Creation Kit\\Standard Assets\\Environment\\Water\\Water\\Scripts\\Water.cs","Assets\\RPG Creation Kit\\Standard Assets\\Environment\\Water\\Water\\Scripts\\WaterBase.cs","Assets\\RPG Creation Kit\\Standard Assets\\Environment\\Water\\Water\\Scripts\\WaterTile.cs","Assets\\RPG Creation Kit\\Tutorial\\TutorialAlertMessage.cs","Assets\\Samples\\Universal RP\\12.1.8\\URP Package Samples\\CameraStacking\\3D Skybox\\Scripts\\SkyboxCamera.cs","Assets\\Samples\\Universal RP\\12.1.8\\URP Package Samples\\LensFlares\\Scripts\\ScreenSpacePlacement.cs","Assets\\Samples\\Universal RP\\12.1.8\\URP Package Samples\\RendererFeatures\\KeepFrame\\KeepFrameFeature.cs","Assets\\Samples\\Universal RP\\12.1.8\\URP Package Samples\\SharedAssets\\Scripts\\AutoLoadPipelineAsset.cs","Assets\\Samples\\Universal RP\\12.1.8\\URP Package Samples\\SharedAssets\\Scripts\\FirstPersonController.cs","Assets\\Scripts\\AlchemyManager.cs","Assets\\Scripts\\AmbienceSoundFX.cs","Assets\\Scripts\\AvatarFilePrefab.cs","Assets\\Scripts\\AvatarFolderName.cs","Assets\\Scripts\\CameraSizeController.cs","Assets\\Scripts\\CatItem.cs","Assets\\Scripts\\CharacterCreationVolume.cs","Assets\\Scripts\\CharacterMenuSettings.cs","Assets\\Scripts\\ClassManager.cs","Assets\\Scripts\\CompassBar.cs","Assets\\Scripts\\LargeMapHandler.cs","Assets\\Scripts\\LoadSaveActors.cs","Assets\\Scripts\\LockpickingManager.cs","Assets\\Scripts\\Metadata.cs","Assets\\Scripts\\MinimapHandler.cs","Assets\\Scripts\\ModCategory.cs","Assets\\Scripts\\ModItem.cs","Assets\\Scripts\\ModManager.cs","Assets\\Scripts\\MyGallery.cs","Assets\\Scripts\\OnlineAccountHandler.cs","Assets\\Scripts\\PlayerCameraController.cs","Assets\\Scripts\\QuestMarker.cs","Assets\\Scripts\\ScatterMyStars.cs","Assets\\Scripts\\ScreenShotContent.cs","Assets\\Scripts\\ScreenshotTool.cs","Assets\\Scripts\\ShowNavmesh.cs","Assets\\Scripts\\SliderValue.cs","Assets\\Scripts\\SpinVert.cs","Assets\\Scripts\\StatChangeInt.cs","Assets\\Scripts\\TattooOverlay.cs","Assets\\Scripts\\ToggleOffOn.cs","Assets\\Scripts\\WaterReflection.cs","Assets\\Sky\\SunLightManager.cs","Assets\\Sky\\SunLightPreset.cs","Assets\\SWAN Dev\\AdvancedColorPicker\\Demo\\DemoScripts\\AppManager_ACP.cs","Assets\\SWAN Dev\\AdvancedColorPicker\\Demo\\DemoScripts\\MultipleColorPickersTest.cs","Assets\\SWAN Dev\\AdvancedColorPicker\\Demo\\DemoScripts\\VerySimpleExample.cs","Assets\\SWAN Dev\\AdvancedColorPicker\\Scripts\\AColorPicker.cs","Assets\\SWAN Dev\\AdvancedColorPicker\\Scripts\\AColorPickerExtends\\PickerRectComponent.cs","Assets\\SWAN Dev\\AdvancedColorPicker\\Scripts\\AColorPickerExtends\\PresetColorComponent.cs","Assets\\SWAN Dev\\Common\\DCanvasScalerHandler.cs","Assets\\SWAN Dev\\Common\\DImageDisplayHandler.cs","Assets\\SWAN Dev\\Common\\FilePathName.cs","Assets\\SWAN Dev\\Common\\FileSaveUtil.cs","Assets\\SWAN Dev\\Common\\OnEnableTrigger.cs","Assets\\SWAN Dev\\Common\\SDemoAnimation.cs","Assets\\SWAN Dev\\Common\\SDemoControl.cs","Assets\\SWAN Dev\\Common\\SelfAnimation.cs","Assets\\SWAN Dev\\Common\\SelfCountdown.cs","Assets\\SWAN Dev\\DynamicUI\\DCanvasComponent.cs","Assets\\SWAN Dev\\DynamicUI\\DCanvasLayerHandler.cs","Assets\\SWAN Dev\\DynamicUI\\DDraggableUI.cs","Assets\\SWAN Dev\\DynamicUI\\DLabel.cs","Assets\\SWAN Dev\\DynamicUI\\DOnUpdate.cs","Assets\\SWAN Dev\\DynamicUI\\DTransformRectStretch.cs","Assets\\SWAN Dev\\UnifyInput\\UnifyInputUtil.cs","Assets\\Toby Fredson\\Modular Dungeon Catacombs - Mobile\\Scripts\\ExtendedFlycam.cs","Assets\\Toby Fredson\\Modular Dungeon Catacombs - Mobile\\Scripts\\MenuManager.cs","Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp.rsp","Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp.AdditionalFile.txt"],"oldvalue":[],"dependency":"explicit"}]} {"msg":"runNodeAction","annotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)","index":624} -{"msg":"noderesult","processed_node_count":982,"number_of_nodes_ever_queued":991,"annotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)","index":624,"exitcode":0,"outputfile":"Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp.dll","stdout":"Assets\\RPG Creation Kit\\Scripts\\Inventory System\\Item In Inventory\\Scripts\\Items UI\\KeyItemInInventoryUI.cs(26,21): warning CS0114: 'KeyItemInInventoryUI.UpdateItem()' hides inherited member 'ItemInInventoryUI.UpdateItem()'. To make the current member override that implementation, add the override keyword. Otherwise add the new keyword.\r\nAssets\\RPG Creation Kit\\Scripts\\Inventory System\\Item In Inventory\\Scripts\\Items UI\\MiscItemInInventoryUI.cs(26,21): warning CS0114: 'MiscItemInInventoryUI.UpdateItem()' hides inherited member 'ItemInInventoryUI.UpdateItem()'. To make the current member override that implementation, add the override keyword. Otherwise add the new keyword.\r\nAssets\\RPG Creation Kit\\Scripts\\Inventory System\\Item In Inventory\\Scripts\\Items UI\\AmmoItemInInventoryUI.cs(26,21): warning CS0114: 'AmmoItemInInventoryUI.UpdateItem()' hides inherited member 'ItemInInventoryUI.UpdateItem()'. To make the current member override that implementation, add the override keyword. Otherwise add the new keyword.\r\nAssets\\RPG Creation Kit\\Scripts\\Inventory System\\Item In Inventory\\Scripts\\Items UI\\BookItemInInventoryUI.cs(26,21): warning CS0114: 'BookItemInInventoryUI.UpdateItem()' hides inherited member 'ItemInInventoryUI.UpdateItem()'. To make the current member override that implementation, add the override keyword. Otherwise add the new keyword.\r\nAssets\\RPG Creation Kit\\Scripts\\Inventory System\\Item In Inventory\\Scripts\\Items UI\\ConsumableItemInInventoryUI.cs(26,21): warning CS0114: 'ConsumableItemInInventoryUI.UpdateItem()' hides inherited member 'ItemInInventoryUI.UpdateItem()'. To make the current member override that implementation, add the override keyword. Otherwise add the new keyword.\r\nAssets\\RPG Creation Kit\\Scripts\\Alchemy\\Item In Inventory\\Scripts\\Items UI\\ConsumableItemInAlchemyUI.cs(27,21): warning CS0114: 'ConsumableItemInAlchemyUI.UpdateItem()' hides inherited member 'ItemInInventoryUI.UpdateItem()'. To make the current member override that implementation, add the override keyword. Otherwise add the new keyword.\r\nAssets\\RPG Creation Kit\\Scripts\\Character Creation\\BlendshapeInCreationList.cs(15,16): warning CS0108: 'BlendshapeInCreationList.name' hides inherited member 'Object.name'. Use the new keyword if hiding was intended.\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSMBRemover.cs(72,6): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSMBRemover.cs(82,5): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSMBRemover.cs(91,5): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSMBRemover.cs(100,5): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSMBRemover.cs(121,5): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSMBRemover.cs(159,7): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSMBRemover.cs(179,6): warning CS0618: 'EditorApplication.MarkSceneDirty()' is obsolete: 'Use EditorSceneManager.MarkSceneDirty or EditorSceneManager.MarkAllScenesDirty'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSMB.cs(88,5): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSMB.cs(97,5): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSMB.cs(113,5): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSMB.cs(134,5): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSMB.cs(143,5): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSMB.cs(156,17): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSMB.cs(194,7): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSMB.cs(215,6): warning CS0618: 'EditorApplication.MarkSceneDirty()' is obsolete: 'Use EditorSceneManager.MarkSceneDirty or EditorSceneManager.MarkAllScenesDirty'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSequenceSMB.cs(85,5): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSequenceSMB.cs(94,5): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSequenceSMB.cs(114,29): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSequenceSMB.cs(130,25): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSequenceSMB.cs(141,29): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSequenceSMB.cs(157,29): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSequenceSMB.cs(175,29): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSequenceSMB.cs(184,29): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSequenceSMB.cs(197,33): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSequenceSMB.cs(213,17): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSequenceSMB.cs(222,17): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSequenceSMB.cs(241,6): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSequenceSMB.cs(281,7): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSequenceSMB.cs(303,6): warning CS0618: 'EditorApplication.MarkSceneDirty()' is obsolete: 'Use EditorSceneManager.MarkSceneDirty or EditorSceneManager.MarkAllScenesDirty'\r\nAssets\\RPG Creation Kit\\Scripts\\_ General\\NodesHelper.cs(249,46): warning CS0618: 'Object.FindObjectsOfTypeIncludingAssets(Type)' is obsolete: 'use Resources.FindObjectsOfTypeAll instead.'\r\nAssets\\RPG Creation Kit\\Scripts\\_ General\\NodesHelper.cs(268,46): warning CS0618: 'Object.FindObjectsOfTypeIncludingAssets(Type)' is obsolete: 'use Resources.FindObjectsOfTypeAll instead.'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolCustomInspector.cs(80,7): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolCustomInspector.cs(119,7): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolCustomInspector.cs(183,11): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolCustomInspector.cs(199,33): warning CS0618: 'EditorGUILayout.ObjectField(string, Object, Type, params GUILayoutOption[])' is obsolete: 'Check the docs for the usage of the new parameter 'allowSceneObjects'.'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolCustomInspector.cs(201,8): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolCustomInspector.cs(222,8): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolCustomInspector.cs(244,8): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolCustomInspector.cs(289,10): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolCustomInspector.cs(327,9): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolCustomInspector.cs(362,6): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolCustomInspector.cs(374,6): warning CS0618: 'EditorApplication.MarkSceneDirty()' is obsolete: 'Use EditorSceneManager.MarkSceneDirty or EditorSceneManager.MarkAllScenesDirty'\r\nAssets\\RPG Creation Kit\\Scripts\\Looting System\\LootingInventoryUI.cs(61,13): warning CS1717: Assignment made to same variable; did you mean to assign something else?\r\nAssets\\RPG Creation Kit\\Scripts\\Player\\ThirdPersonPlayer.cs(428,17): warning CS0168: The variable 'ray' is declared but never used\r\nAssets\\RPG Creation Kit\\Scripts\\Combat System\\Player\\Scripts\\WeaponOnHand.cs(33,8): warning CS0414: The field 'WeaponOnHand.hasHit' is assigned but its value is never used\r\nAssets\\RPG Creation Kit\\Scripts\\Cells System\\Scripts\\Door.cs(16,25): warning CS0414: The field 'Door.cellInfo' is assigned but its value is never used\r\nAssets\\RPG Creation Kit\\Scripts\\Player\\PlayerInteractor.cs(54,16): warning CS0414: The field 'PlayerInteractor.cameraLookNPC' is assigned but its value is never used\r\nAssets\\RPG Creation Kit\\Scripts\\AI\\AI Scripts\\AICombatSystem.cs(61,14): warning CS0414: The field 'AICombatSystem.wantsToAttack' is assigned but its value is never used\r\nAssets\\RPG Creation Kit\\Scripts\\AI\\AI Scripts\\AIMovements.cs(75,8): warning CS0414: The field 'AIMovements.isFollowingMainTarget' is assigned but its value is never used\r\nAssets\\RPG Creation Kit\\Scripts\\Cells System\\Scripts\\Loading System\\WorldManager.cs(45,14): warning CS0414: The field 'WorldManager.isStreaming' is assigned but its value is never used\r\nAssets\\RPG Creation Kit\\Scripts\\AI\\AI Scripts\\AIMovements.cs(1751,8): warning CS0414: The field 'AIMovements.isSteeringTLink' is assigned but its value is never used\r\nAssets\\RPG Creation Kit\\Scripts\\Cells System\\Scripts\\Loading System\\WorldManager.cs(19,14): warning CS0414: The field 'WorldManager.isFreshStart' is assigned but its value is never used\r\nAssets\\RPG Creation Kit\\Scripts\\Inventory System\\Spells Tab\\SpellProjectile.cs(14,14): warning CS0414: The field 'SpellProjectile.hasCreatedItem' is assigned but its value is never used\r\nAssets\\RPG Creation Kit\\Scripts\\Inventory System\\Item In Inventory\\Scripts\\Items UI\\WeaponItemInInventoryUI.cs(67,14): warning CS0414: The field 'WeaponItemInInventoryUI.swap' is assigned but its value is never used\r\nAssets\\RPG Creation Kit\\Scripts\\Combat System\\Player\\Scripts\\Projectile.cs(14,14): warning CS0414: The field 'Projectile.hasCreatedItem' is assigned but its value is never used"} +{"msg":"noderesult","processed_node_count":982,"number_of_nodes_ever_queued":991,"annotation":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)","index":624,"exitcode":0,"outputfile":"Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp.dll","stdout":"Assets\\RPG Creation Kit\\Scripts\\Inventory System\\Item In Inventory\\Scripts\\Items UI\\KeyItemInInventoryUI.cs(26,21): warning CS0114: 'KeyItemInInventoryUI.UpdateItem()' hides inherited member 'ItemInInventoryUI.UpdateItem()'. To make the current member override that implementation, add the override keyword. Otherwise add the new keyword.\r\nAssets\\RPG Creation Kit\\Scripts\\Inventory System\\Item In Inventory\\Scripts\\Items UI\\MiscItemInInventoryUI.cs(26,21): warning CS0114: 'MiscItemInInventoryUI.UpdateItem()' hides inherited member 'ItemInInventoryUI.UpdateItem()'. To make the current member override that implementation, add the override keyword. Otherwise add the new keyword.\r\nAssets\\RPG Creation Kit\\Scripts\\Inventory System\\Item In Inventory\\Scripts\\Items UI\\AmmoItemInInventoryUI.cs(26,21): warning CS0114: 'AmmoItemInInventoryUI.UpdateItem()' hides inherited member 'ItemInInventoryUI.UpdateItem()'. To make the current member override that implementation, add the override keyword. Otherwise add the new keyword.\r\nAssets\\RPG Creation Kit\\Scripts\\Inventory System\\Item In Inventory\\Scripts\\Items UI\\BookItemInInventoryUI.cs(26,21): warning CS0114: 'BookItemInInventoryUI.UpdateItem()' hides inherited member 'ItemInInventoryUI.UpdateItem()'. To make the current member override that implementation, add the override keyword. Otherwise add the new keyword.\r\nAssets\\RPG Creation Kit\\Scripts\\Inventory System\\Item In Inventory\\Scripts\\Items UI\\ConsumableItemInInventoryUI.cs(26,21): warning CS0114: 'ConsumableItemInInventoryUI.UpdateItem()' hides inherited member 'ItemInInventoryUI.UpdateItem()'. To make the current member override that implementation, add the override keyword. Otherwise add the new keyword.\r\nAssets\\RPG Creation Kit\\Scripts\\Character Creation\\BlendshapeInCreationList.cs(15,16): warning CS0108: 'BlendshapeInCreationList.name' hides inherited member 'Object.name'. Use the new keyword if hiding was intended.\r\nAssets\\RPG Creation Kit\\Scripts\\Alchemy\\Item In Inventory\\Scripts\\Items UI\\ConsumableItemInAlchemyUI.cs(27,21): warning CS0114: 'ConsumableItemInAlchemyUI.UpdateItem()' hides inherited member 'ItemInInventoryUI.UpdateItem()'. To make the current member override that implementation, add the override keyword. Otherwise add the new keyword.\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSMBRemover.cs(72,6): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSMBRemover.cs(82,5): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSMBRemover.cs(91,5): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSMBRemover.cs(100,5): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSMBRemover.cs(121,5): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSMBRemover.cs(159,7): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSMBRemover.cs(179,6): warning CS0618: 'EditorApplication.MarkSceneDirty()' is obsolete: 'Use EditorSceneManager.MarkSceneDirty or EditorSceneManager.MarkAllScenesDirty'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSMB.cs(88,5): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSMB.cs(97,5): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSMB.cs(113,5): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSMB.cs(134,5): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSMB.cs(143,5): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSMB.cs(156,17): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSMB.cs(194,7): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSMB.cs(215,6): warning CS0618: 'EditorApplication.MarkSceneDirty()' is obsolete: 'Use EditorSceneManager.MarkSceneDirty or EditorSceneManager.MarkAllScenesDirty'\r\nAssets\\RPG Creation Kit\\Scripts\\_ General\\NodesHelper.cs(249,46): warning CS0618: 'Object.FindObjectsOfTypeIncludingAssets(Type)' is obsolete: 'use Resources.FindObjectsOfTypeAll instead.'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSequenceSMB.cs(85,5): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSequenceSMB.cs(94,5): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSequenceSMB.cs(114,29): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSequenceSMB.cs(130,25): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSequenceSMB.cs(141,29): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSequenceSMB.cs(157,29): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSequenceSMB.cs(175,29): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSequenceSMB.cs(184,29): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSequenceSMB.cs(197,33): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSequenceSMB.cs(213,17): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSequenceSMB.cs(222,17): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSequenceSMB.cs(241,6): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSequenceSMB.cs(281,7): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolSequenceSMB.cs(303,6): warning CS0618: 'EditorApplication.MarkSceneDirty()' is obsolete: 'Use EditorSceneManager.MarkSceneDirty or EditorSceneManager.MarkAllScenesDirty'\r\nAssets\\RPG Creation Kit\\Scripts\\_ General\\NodesHelper.cs(268,46): warning CS0618: 'Object.FindObjectsOfTypeIncludingAssets(Type)' is obsolete: 'use Resources.FindObjectsOfTypeAll instead.'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolCustomInspector.cs(80,7): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolCustomInspector.cs(119,7): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolCustomInspector.cs(183,11): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolCustomInspector.cs(199,33): warning CS0618: 'EditorGUILayout.ObjectField(string, Object, Type, params GUILayoutOption[])' is obsolete: 'Check the docs for the usage of the new parameter 'allowSceneObjects'.'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolCustomInspector.cs(201,8): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolCustomInspector.cs(222,8): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolCustomInspector.cs(244,8): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolCustomInspector.cs(289,10): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolCustomInspector.cs(327,9): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolCustomInspector.cs(362,6): warning CS0618: 'Undo.RegisterUndo(Object, string)' is obsolete: 'Use Undo.RegisterCompleteObjectUndo instead'\r\nAssets\\Kevin Iglesias\\IKHelperTool\\Scripts\\IKHelperToolCustomInspector.cs(374,6): warning CS0618: 'EditorApplication.MarkSceneDirty()' is obsolete: 'Use EditorSceneManager.MarkSceneDirty or EditorSceneManager.MarkAllScenesDirty'\r\nAssets\\RPG Creation Kit\\Scripts\\Looting System\\LootingInventoryUI.cs(61,13): warning CS1717: Assignment made to same variable; did you mean to assign something else?\r\nAssets\\RPG Creation Kit\\Scripts\\Player\\ThirdPersonPlayer.cs(430,17): warning CS0168: The variable 'ray' is declared but never used\r\nAssets\\RPG Creation Kit\\Scripts\\Combat System\\Player\\Scripts\\Projectile.cs(14,14): warning CS0414: The field 'Projectile.hasCreatedItem' is assigned but its value is never used\r\nAssets\\RPG Creation Kit\\Scripts\\AI\\AI Scripts\\AIMovements.cs(1751,8): warning CS0414: The field 'AIMovements.isSteeringTLink' is assigned but its value is never used\r\nAssets\\RPG Creation Kit\\Scripts\\Cells System\\Scripts\\Loading System\\WorldManager.cs(19,14): warning CS0414: The field 'WorldManager.isFreshStart' is assigned but its value is never used\r\nAssets\\RPG Creation Kit\\Scripts\\Player\\PlayerInteractor.cs(54,16): warning CS0414: The field 'PlayerInteractor.cameraLookNPC' is assigned but its value is never used\r\nAssets\\RPG Creation Kit\\Scripts\\Cells System\\Scripts\\Loading System\\WorldManager.cs(45,14): warning CS0414: The field 'WorldManager.isStreaming' is assigned but its value is never used\r\nAssets\\RPG Creation Kit\\Scripts\\Inventory System\\Item In Inventory\\Scripts\\Items UI\\WeaponItemInInventoryUI.cs(67,14): warning CS0414: The field 'WeaponItemInInventoryUI.swap' is assigned but its value is never used\r\nAssets\\RPG Creation Kit\\Scripts\\AI\\AI Scripts\\AIMovements.cs(75,8): warning CS0414: The field 'AIMovements.isFollowingMainTarget' is assigned but its value is never used\r\nAssets\\RPG Creation Kit\\Scripts\\Inventory System\\Spells Tab\\SpellProjectile.cs(14,14): warning CS0414: The field 'SpellProjectile.hasCreatedItem' is assigned but its value is never used\r\nAssets\\RPG Creation Kit\\Scripts\\AI\\AI Scripts\\AICombatSystem.cs(61,14): warning CS0414: The field 'AICombatSystem.wantsToAttack' is assigned but its value is never used\r\nAssets\\RPG Creation Kit\\Scripts\\Combat System\\Player\\Scripts\\WeaponOnHand.cs(33,8): warning CS0414: The field 'WeaponOnHand.hasHit' is assigned but its value is never used\r\nAssets\\RPG Creation Kit\\Scripts\\Cells System\\Scripts\\Door.cs(16,25): warning CS0414: The field 'Door.cellInfo' is assigned but its value is never used"} {"msg":"inputSignatureChanged","annotation":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp-Editor.dll (+pdb)","index":803,"changes":[{"key":"Action","value":"\"C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Tools\\netcorerun\\netcorerun.exe\" \"C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/Tools/ILPostProcessorRunner/ILPostProcessorRunner.exe\" @\"Library\\Bee\\artifacts\\rsp\\2781082588993088484.rsp\"","oldvalue":null},{"key":"InputFileList","value":["Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp-Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp-Editor-firstpass.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp-firstpass.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\AwesomeTechnologies.TouchReactSystemPro.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\AwesomeTechnologies.TouchReactSystemPro.Runtime.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\UnityEditor.UI.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\UnityEditor.TestRunner.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\UnityEngine.TestRunner.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEditor.Graphs.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.CoreModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.DeviceSimulatorModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.DiagnosticsModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.GraphViewModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.PackageManagerUIModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.QuickSearchModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.SceneTemplateModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.TextCoreFontEngineModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.TextCoreTextEngineModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.UIBuilderModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.UIElementsModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.UIElementsSamplesModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.UIServiceModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.UnityConnectModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.AccessibilityModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.AIModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.AndroidJNIModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.AnimationModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ARModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.AssetBundleModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.AudioModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ClothModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ClusterInputModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ClusterRendererModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.CoreModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.CrashReportingModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.DirectorModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.DSPGraphModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.GameCenterModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.GIModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.GridModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.HotReloadModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ImageConversionModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.IMGUIModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.InputLegacyModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.InputModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.JSONSerializeModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.LocalizationModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ParticleSystemModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.PerformanceReportingModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.Physics2DModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.PhysicsModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ProfilerModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ScreenCaptureModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.SharedInternalsModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.SpriteMaskModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.SpriteShapeModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.StreamingModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.SubstanceModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.SubsystemsModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TerrainModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TerrainPhysicsModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TextCoreFontEngineModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TextCoreTextEngineModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TextRenderingModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TilemapModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TLSModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UIElementsModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UIElementsNativeModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UIModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UmbraModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UNETModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityAnalyticsCommonModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityAnalyticsModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityConnectModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityCurlModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityTestProtocolModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityWebRequestAssetBundleModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityWebRequestAudioModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityWebRequestModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityWebRequestTextureModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityWebRequestWWWModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.VehiclesModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.VFXModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.VideoModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.VirtualTexturingModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.VRModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.WindModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.XRModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\mscorlib.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.ComponentModel.Composition.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Core.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Data.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Drawing.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.IO.Compression.FileSystem.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Net.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Numerics.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Runtime.Serialization.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.ServiceModel.Web.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Transactions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Web.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Windows.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Xml.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Xml.Linq.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Xml.Serialization.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\Microsoft.Win32.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.AppContext.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Buffers.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Collections.Concurrent.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Collections.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Collections.NonGeneric.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Collections.Specialized.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.ComponentModel.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.ComponentModel.EventBasedAsync.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.ComponentModel.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.ComponentModel.TypeConverter.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Console.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Data.Common.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.Contracts.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.Debug.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.FileVersionInfo.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.Process.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.StackTrace.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.TextWriterTraceListener.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.Tools.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.TraceSource.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.Tracing.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Drawing.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Dynamic.Runtime.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Globalization.Calendars.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Globalization.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Globalization.Extensions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.Compression.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.Compression.ZipFile.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.FileSystem.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.FileSystem.DriveInfo.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.FileSystem.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.FileSystem.Watcher.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.IsolatedStorage.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.MemoryMappedFiles.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.Pipes.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.UnmanagedMemoryStream.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Linq.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Linq.Expressions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Linq.Parallel.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Linq.Queryable.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Memory.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.Http.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.NameResolution.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.NetworkInformation.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.Ping.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.Requests.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.Security.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.Sockets.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.WebHeaderCollection.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.WebSockets.Client.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.WebSockets.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Numerics.Vectors.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.ObjectModel.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Reflection.DispatchProxy.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Reflection.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Reflection.Emit.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Reflection.Emit.ILGeneration.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Reflection.Emit.Lightweight.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Reflection.Extensions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Reflection.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Resources.Reader.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Resources.ResourceManager.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Resources.Writer.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.CompilerServices.VisualC.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.Extensions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.Handles.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.InteropServices.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.InteropServices.RuntimeInformation.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.Numerics.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.Serialization.Formatters.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.Serialization.Json.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.Serialization.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.Serialization.Xml.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Claims.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Cryptography.Algorithms.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Cryptography.Csp.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Cryptography.Encoding.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Cryptography.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Cryptography.X509Certificates.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Principal.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.SecureString.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Text.Encoding.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Text.Encoding.Extensions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Text.RegularExpressions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.Overlapped.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.Tasks.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.Tasks.Extensions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.Tasks.Parallel.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.Thread.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.ThreadPool.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.Timer.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.ValueTuple.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Xml.ReaderWriter.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Xml.XDocument.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Xml.XmlDocument.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Xml.XmlSerializer.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Xml.XPath.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Xml.XPath.XDocument.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\Extensions\\2.0.0\\System.Runtime.InteropServices.WindowsRuntime.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\ref\\2.1.0\\netstandard.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\PlaybackEngines\\WindowsStandaloneSupport\\UnityEditor.WindowsStandalone.Extensions.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.ext.nunit@1.0.6\\net35\\unity-custom\\nunit.framework.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.NVIDIAModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\Microsoft.Win32.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\netstandard.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.AppContext.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Buffers.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Collections.Concurrent.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Collections.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Collections.NonGeneric.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Collections.Specialized.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.ComponentModel.Annotations.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.ComponentModel.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.ComponentModel.EventBasedAsync.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.ComponentModel.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.ComponentModel.TypeConverter.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Console.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Data.Common.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Diagnostics.Contracts.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Diagnostics.Debug.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Diagnostics.FileVersionInfo.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Diagnostics.Process.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Diagnostics.StackTrace.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Diagnostics.TextWriterTraceListener.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Diagnostics.Tools.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Diagnostics.TraceSource.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Drawing.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Dynamic.Runtime.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Globalization.Calendars.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Globalization.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Globalization.Extensions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.IO.Compression.ZipFile.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.IO.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.IO.FileSystem.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.IO.FileSystem.DriveInfo.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.IO.FileSystem.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.IO.FileSystem.Watcher.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.IO.IsolatedStorage.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.IO.MemoryMappedFiles.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.IO.Pipes.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.IO.UnmanagedMemoryStream.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Linq.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Linq.Expressions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Linq.Parallel.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Linq.Queryable.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Memory.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Net.Http.Rtc.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Net.NameResolution.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Net.NetworkInformation.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Net.Ping.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Net.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Net.Requests.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Net.Security.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Net.Sockets.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Net.WebHeaderCollection.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Net.WebSockets.Client.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Net.WebSockets.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.ObjectModel.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Reflection.DispatchProxy.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Reflection.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Reflection.Emit.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Reflection.Emit.ILGeneration.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Reflection.Emit.Lightweight.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Reflection.Extensions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Reflection.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Resources.Reader.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Resources.ResourceManager.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Resources.Writer.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Runtime.CompilerServices.VisualC.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Runtime.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Runtime.Extensions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Runtime.Handles.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Runtime.InteropServices.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Runtime.InteropServices.RuntimeInformation.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Runtime.InteropServices.WindowsRuntime.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Runtime.Numerics.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Runtime.Serialization.Formatters.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Runtime.Serialization.Json.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Runtime.Serialization.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Runtime.Serialization.Xml.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Security.Claims.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Security.Cryptography.Algorithms.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Security.Cryptography.Csp.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Security.Cryptography.Encoding.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Security.Cryptography.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Security.Cryptography.X509Certificates.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Security.Principal.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Security.SecureString.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.ServiceModel.Duplex.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.ServiceModel.Http.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.ServiceModel.NetTcp.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.ServiceModel.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.ServiceModel.Security.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Text.Encoding.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Text.Encoding.Extensions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Text.RegularExpressions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Threading.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Threading.Overlapped.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Threading.Tasks.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Threading.Tasks.Extensions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Threading.Tasks.Parallel.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Threading.Thread.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Threading.ThreadPool.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Threading.Timer.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.ValueTuple.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Xml.ReaderWriter.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Xml.XDocument.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Xml.XmlDocument.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Xml.XmlSerializer.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Xml.XPath.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Xml.XPath.XDocument.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Microsoft.CSharp.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\mscorlib.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\System.ComponentModel.Composition.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\System.Core.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\System.Data.DataSetExtensions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\System.Data.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\System.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\System.Drawing.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\System.IO.Compression.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\System.IO.Compression.FileSystem.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\System.Net.Http.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\System.Numerics.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\System.Numerics.Vectors.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\System.Runtime.Serialization.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\System.Transactions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\System.Xml.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\System.Xml.Linq.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.nuget.mono-cecil@1.11.4\\Mono.Cecil.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.nuget.mono-cecil@1.11.4\\Mono.Cecil.Mdb.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.nuget.mono-cecil@1.11.4\\Mono.Cecil.Pdb.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.nuget.mono-cecil@1.11.4\\Mono.Cecil.Rocks.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\UnityEngine.UI.dll","Assets\\AutoLOD\\Plugins\\MeshDecimator.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.burst@1.7.3\\Unity.Burst.CodeGen\\Unity.Burst.Cecil.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.burst@1.7.3\\Unity.Burst.CodeGen\\Unity.Burst.Cecil.Mdb.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.burst@1.7.3\\Unity.Burst.CodeGen\\Unity.Burst.Cecil.Pdb.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.burst@1.7.3\\Unity.Burst.CodeGen\\Unity.Burst.Cecil.Rocks.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.burst@1.7.3\\Unity.Burst.Unsafe.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.collab-proxy@1.17.7\\Lib\\Editor\\PlasticSCM\\log4netPlastic.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.collab-proxy@1.17.7\\Lib\\Editor\\PlasticSCM\\Unity.Plastic.Antlr3.Runtime.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.collab-proxy@1.17.7\\Lib\\Editor\\PlasticSCM\\Unity.Plastic.Newtonsoft.Json.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.collab-proxy@1.17.7\\Lib\\Editor\\PlasticSCM\\unityplastic.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.collections@1.4.0\\Unity.Collections.LowLevel.ILSupport\\Unity.Collections.LowLevel.ILSupport.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.nuget.newtonsoft-json@3.0.2\\Runtime\\Newtonsoft.Json.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.visualscripting@1.7.8\\Editor\\VisualScripting.Core\\Dependencies\\DotNetZip\\Unity.VisualScripting.IonicZip.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.visualscripting@1.7.8\\Editor\\VisualScripting.Core\\Dependencies\\YamlDotNet\\Unity.VisualScripting.YamlDotNet.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.visualscripting@1.7.8\\Editor\\VisualScripting.Core\\EditorAssetResources\\Unity.VisualScripting.TextureAssets.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.visualscripting@1.7.8\\Runtime\\VisualScripting.Flow\\Dependencies\\NCalc\\Unity.VisualScripting.Antlr3.Runtime.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\AwesomeTechnologies.VegetationStudioPro.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\AwesomeTechnologies.VegetationStudioPro.Runtime.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Burst.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Collections.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Mathematics.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Jobs.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Postprocessing.Runtime.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Cinemachine.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.InputSystem.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.RenderPipelines.Core.Runtime.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.RenderPipelines.Universal.Runtime.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.RenderPipeline.Universal.ShaderLibrary.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Timeline.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\IngameDebugConsole.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\IngameDebugConsole.Runtime.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\JBooth.ShaderPackager.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\MeshBakerCore.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\MeshBakerEditor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\NavMeshComponents.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\NavMeshComponentsEditor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\NavMeshComponentsExamples.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\NavMeshComponentsExamplesEditor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\PPv2URPConverters.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Postprocessing.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.RenderPipelines.Core.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.RenderPipelines.Universal.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Burst.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Mathematics.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.ShaderGraph.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Searcher.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.ShaderGraph.Utilities.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\SimpleJSON.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.2D.Sprite.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Collections.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.EditorCoroutines.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.PlasticSCM.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.RenderPipelines.Core.ShaderLibrary.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.RenderPipelines.Universal.Shaders.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Rider.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Services.Core.Analytics.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Services.Core.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Services.Core.Environments.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Services.Core.Internal.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.TerrainTools.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.TerrainTools.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.TextMeshPro.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.TextMeshPro.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Timeline.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VSCode.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.Core.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.Core.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.Flow.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.Flow.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.SettingsProvider.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.State.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.Shared.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.State.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualStudio.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\UnityEngine.Advertisements.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\UnityEngine.Advertisements.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\UnityEngine.Monetization.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\XNode.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\XNodeEditor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\com.unity.cinemachine.editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Tools\\ILPostProcessorRunner\\Unity.CompilationPipeline.Common.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Tools\\ILPostProcessorRunner\\ILPostProcessorRunner.exe","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Jobs.CodeGen.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\Unity.CompilationPipeline.Common.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Burst.CodeGen.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Collections.CodeGen.dll","Library\\Bee\\artifacts\\rsp\\2781082588993088484.rsp"],"oldvalue":[],"dependency":"explicit"}]} {"msg":"runNodeAction","annotation":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp-Editor.dll (+pdb)","index":803} {"msg":"inputSignatureChanged","annotation":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp.dll (+pdb)","index":801,"changes":[{"key":"Action","value":"\"C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Tools\\netcorerun\\netcorerun.exe\" \"C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/Tools/ILPostProcessorRunner/ILPostProcessorRunner.exe\" @\"Library\\Bee\\artifacts\\rsp\\10678863128556690338.rsp\"","oldvalue":null},{"key":"InputFileList","value":["Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp-firstpass.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\AwesomeTechnologies.TouchReactSystemPro.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\AwesomeTechnologies.TouchReactSystemPro.Runtime.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\UnityEditor.UI.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\UnityEditor.TestRunner.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\UnityEngine.TestRunner.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEditor.Graphs.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.CoreModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.DeviceSimulatorModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.DiagnosticsModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.GraphViewModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.PackageManagerUIModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.QuickSearchModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.SceneTemplateModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.TextCoreFontEngineModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.TextCoreTextEngineModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.UIBuilderModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.UIElementsModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.UIElementsSamplesModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.UIServiceModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.UnityConnectModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.AccessibilityModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.AIModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.AndroidJNIModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.AnimationModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ARModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.AssetBundleModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.AudioModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ClothModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ClusterInputModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ClusterRendererModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.CoreModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.CrashReportingModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.DirectorModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.DSPGraphModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.GameCenterModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.GIModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.GridModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.HotReloadModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ImageConversionModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.IMGUIModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.InputLegacyModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.InputModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.JSONSerializeModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.LocalizationModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ParticleSystemModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.PerformanceReportingModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.Physics2DModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.PhysicsModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ProfilerModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.ScreenCaptureModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.SharedInternalsModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.SpriteMaskModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.SpriteShapeModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.StreamingModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.SubstanceModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.SubsystemsModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TerrainModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TerrainPhysicsModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TextCoreFontEngineModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TextCoreTextEngineModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TextRenderingModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TilemapModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TLSModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UIElementsModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UIElementsNativeModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UIModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UmbraModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UNETModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityAnalyticsCommonModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityAnalyticsModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityConnectModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityCurlModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityTestProtocolModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityWebRequestAssetBundleModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityWebRequestAudioModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityWebRequestModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityWebRequestTextureModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityWebRequestWWWModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.VehiclesModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.VFXModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.VideoModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.VirtualTexturingModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.VRModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.WindModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.XRModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\mscorlib.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.ComponentModel.Composition.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Core.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Data.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Drawing.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.IO.Compression.FileSystem.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Net.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Numerics.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Runtime.Serialization.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.ServiceModel.Web.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Transactions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Web.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Windows.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Xml.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Xml.Linq.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Xml.Serialization.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\Microsoft.Win32.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.AppContext.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Buffers.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Collections.Concurrent.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Collections.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Collections.NonGeneric.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Collections.Specialized.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.ComponentModel.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.ComponentModel.EventBasedAsync.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.ComponentModel.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.ComponentModel.TypeConverter.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Console.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Data.Common.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.Contracts.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.Debug.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.FileVersionInfo.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.Process.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.StackTrace.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.TextWriterTraceListener.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.Tools.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.TraceSource.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.Tracing.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Drawing.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Dynamic.Runtime.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Globalization.Calendars.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Globalization.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Globalization.Extensions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.Compression.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.Compression.ZipFile.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.FileSystem.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.FileSystem.DriveInfo.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.FileSystem.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.FileSystem.Watcher.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.IsolatedStorage.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.MemoryMappedFiles.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.Pipes.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.IO.UnmanagedMemoryStream.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Linq.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Linq.Expressions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Linq.Parallel.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Linq.Queryable.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Memory.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.Http.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.NameResolution.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.NetworkInformation.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.Ping.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.Requests.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.Security.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.Sockets.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.WebHeaderCollection.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.WebSockets.Client.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Net.WebSockets.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Numerics.Vectors.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.ObjectModel.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Reflection.DispatchProxy.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Reflection.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Reflection.Emit.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Reflection.Emit.ILGeneration.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Reflection.Emit.Lightweight.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Reflection.Extensions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Reflection.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Resources.Reader.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Resources.ResourceManager.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Resources.Writer.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.CompilerServices.VisualC.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.Extensions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.Handles.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.InteropServices.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.InteropServices.RuntimeInformation.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.Numerics.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.Serialization.Formatters.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.Serialization.Json.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.Serialization.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Runtime.Serialization.Xml.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Claims.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Cryptography.Algorithms.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Cryptography.Csp.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Cryptography.Encoding.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Cryptography.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Cryptography.X509Certificates.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.Principal.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Security.SecureString.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Text.Encoding.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Text.Encoding.Extensions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Text.RegularExpressions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.Overlapped.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.Tasks.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.Tasks.Extensions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.Tasks.Parallel.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.Thread.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.ThreadPool.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Threading.Timer.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.ValueTuple.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Xml.ReaderWriter.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Xml.XDocument.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Xml.XmlDocument.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Xml.XmlSerializer.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Xml.XPath.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Xml.XPath.XDocument.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\Extensions\\2.0.0\\System.Runtime.InteropServices.WindowsRuntime.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\NetStandard\\ref\\2.1.0\\netstandard.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\PlaybackEngines\\WindowsStandaloneSupport\\UnityEditor.WindowsStandalone.Extensions.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.ext.nunit@1.0.6\\net35\\unity-custom\\nunit.framework.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.NVIDIAModule.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\Microsoft.Win32.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\netstandard.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.AppContext.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Buffers.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Collections.Concurrent.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Collections.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Collections.NonGeneric.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Collections.Specialized.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.ComponentModel.Annotations.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.ComponentModel.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.ComponentModel.EventBasedAsync.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.ComponentModel.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.ComponentModel.TypeConverter.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Console.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Data.Common.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Diagnostics.Contracts.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Diagnostics.Debug.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Diagnostics.FileVersionInfo.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Diagnostics.Process.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Diagnostics.StackTrace.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Diagnostics.TextWriterTraceListener.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Diagnostics.Tools.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Diagnostics.TraceSource.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Drawing.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Dynamic.Runtime.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Globalization.Calendars.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Globalization.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Globalization.Extensions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.IO.Compression.ZipFile.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.IO.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.IO.FileSystem.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.IO.FileSystem.DriveInfo.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.IO.FileSystem.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.IO.FileSystem.Watcher.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.IO.IsolatedStorage.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.IO.MemoryMappedFiles.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.IO.Pipes.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.IO.UnmanagedMemoryStream.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Linq.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Linq.Expressions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Linq.Parallel.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Linq.Queryable.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Memory.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Net.Http.Rtc.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Net.NameResolution.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Net.NetworkInformation.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Net.Ping.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Net.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Net.Requests.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Net.Security.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Net.Sockets.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Net.WebHeaderCollection.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Net.WebSockets.Client.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Net.WebSockets.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.ObjectModel.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Reflection.DispatchProxy.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Reflection.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Reflection.Emit.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Reflection.Emit.ILGeneration.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Reflection.Emit.Lightweight.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Reflection.Extensions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Reflection.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Resources.Reader.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Resources.ResourceManager.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Resources.Writer.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Runtime.CompilerServices.VisualC.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Runtime.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Runtime.Extensions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Runtime.Handles.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Runtime.InteropServices.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Runtime.InteropServices.RuntimeInformation.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Runtime.InteropServices.WindowsRuntime.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Runtime.Numerics.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Runtime.Serialization.Formatters.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Runtime.Serialization.Json.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Runtime.Serialization.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Runtime.Serialization.Xml.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Security.Claims.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Security.Cryptography.Algorithms.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Security.Cryptography.Csp.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Security.Cryptography.Encoding.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Security.Cryptography.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Security.Cryptography.X509Certificates.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Security.Principal.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Security.SecureString.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.ServiceModel.Duplex.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.ServiceModel.Http.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.ServiceModel.NetTcp.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.ServiceModel.Primitives.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.ServiceModel.Security.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Text.Encoding.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Text.Encoding.Extensions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Text.RegularExpressions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Threading.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Threading.Overlapped.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Threading.Tasks.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Threading.Tasks.Extensions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Threading.Tasks.Parallel.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Threading.Thread.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Threading.ThreadPool.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Threading.Timer.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.ValueTuple.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Xml.ReaderWriter.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Xml.XDocument.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Xml.XmlDocument.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Xml.XmlSerializer.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Xml.XPath.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Xml.XPath.XDocument.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Microsoft.CSharp.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\mscorlib.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\System.ComponentModel.Composition.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\System.Core.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\System.Data.DataSetExtensions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\System.Data.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\System.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\System.Drawing.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\System.IO.Compression.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\System.IO.Compression.FileSystem.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\System.Net.Http.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\System.Numerics.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\System.Numerics.Vectors.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\System.Runtime.Serialization.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\System.Transactions.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\System.Xml.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\System.Xml.Linq.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.nuget.mono-cecil@1.11.4\\Mono.Cecil.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.nuget.mono-cecil@1.11.4\\Mono.Cecil.Mdb.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.nuget.mono-cecil@1.11.4\\Mono.Cecil.Pdb.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.nuget.mono-cecil@1.11.4\\Mono.Cecil.Rocks.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\UnityEngine.UI.dll","Assets\\AutoLOD\\Plugins\\MeshDecimator.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.burst@1.7.3\\Unity.Burst.CodeGen\\Unity.Burst.Cecil.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.burst@1.7.3\\Unity.Burst.CodeGen\\Unity.Burst.Cecil.Mdb.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.burst@1.7.3\\Unity.Burst.CodeGen\\Unity.Burst.Cecil.Pdb.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.burst@1.7.3\\Unity.Burst.CodeGen\\Unity.Burst.Cecil.Rocks.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.burst@1.7.3\\Unity.Burst.Unsafe.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.collab-proxy@1.17.7\\Lib\\Editor\\PlasticSCM\\log4netPlastic.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.collab-proxy@1.17.7\\Lib\\Editor\\PlasticSCM\\Unity.Plastic.Antlr3.Runtime.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.collab-proxy@1.17.7\\Lib\\Editor\\PlasticSCM\\Unity.Plastic.Newtonsoft.Json.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.collab-proxy@1.17.7\\Lib\\Editor\\PlasticSCM\\unityplastic.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.collections@1.4.0\\Unity.Collections.LowLevel.ILSupport\\Unity.Collections.LowLevel.ILSupport.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.nuget.newtonsoft-json@3.0.2\\Runtime\\Newtonsoft.Json.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.visualscripting@1.7.8\\Editor\\VisualScripting.Core\\Dependencies\\DotNetZip\\Unity.VisualScripting.IonicZip.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.visualscripting@1.7.8\\Editor\\VisualScripting.Core\\Dependencies\\YamlDotNet\\Unity.VisualScripting.YamlDotNet.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.visualscripting@1.7.8\\Editor\\VisualScripting.Core\\EditorAssetResources\\Unity.VisualScripting.TextureAssets.dll","C:\\Work\\Firstborn\\Library\\PackageCache\\com.unity.visualscripting@1.7.8\\Runtime\\VisualScripting.Flow\\Dependencies\\NCalc\\Unity.VisualScripting.Antlr3.Runtime.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\AwesomeTechnologies.VegetationStudioPro.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\AwesomeTechnologies.VegetationStudioPro.Runtime.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Burst.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Collections.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Mathematics.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Jobs.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Postprocessing.Runtime.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Cinemachine.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.InputSystem.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.RenderPipelines.Core.Runtime.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.RenderPipelines.Universal.Runtime.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.RenderPipeline.Universal.ShaderLibrary.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Timeline.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\IngameDebugConsole.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\IngameDebugConsole.Runtime.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\JBooth.ShaderPackager.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\MeshBakerCore.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\MeshBakerEditor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\NavMeshComponents.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\NavMeshComponentsEditor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\NavMeshComponentsExamples.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\NavMeshComponentsExamplesEditor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\PPv2URPConverters.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Postprocessing.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.RenderPipelines.Core.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.RenderPipelines.Universal.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Burst.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Mathematics.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.ShaderGraph.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Searcher.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.ShaderGraph.Utilities.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\SimpleJSON.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.2D.Sprite.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Collections.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.EditorCoroutines.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.PlasticSCM.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.RenderPipelines.Core.ShaderLibrary.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.RenderPipelines.Universal.Shaders.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Rider.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Services.Core.Analytics.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Services.Core.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Services.Core.Environments.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Services.Core.Internal.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.TerrainTools.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.TerrainTools.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.TextMeshPro.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.TextMeshPro.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Timeline.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VSCode.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.Core.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.Core.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.Flow.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.Flow.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.SettingsProvider.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.State.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.Shared.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualScripting.State.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.VisualStudio.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\UnityEngine.Advertisements.Editor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\UnityEngine.Advertisements.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\UnityEngine.Monetization.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\XNode.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\XNodeEditor.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\com.unity.cinemachine.editor.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Tools\\ILPostProcessorRunner\\Unity.CompilationPipeline.Common.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Tools\\ILPostProcessorRunner\\ILPostProcessorRunner.exe","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Jobs.CodeGen.dll","C:\\Program Files\\Unity\\Hub\\Editor\\2021.3.15f1\\Editor\\Data\\Managed\\Unity.CompilationPipeline.Common.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Burst.CodeGen.dll","Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Collections.CodeGen.dll","Library\\Bee\\artifacts\\rsp\\10678863128556690338.rsp"],"oldvalue":[],"dependency":"explicit"}]} {"msg":"runNodeAction","annotation":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp.dll (+pdb)","index":801} -{"msg":"noderesult","processed_node_count":984,"number_of_nodes_ever_queued":991,"annotation":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp-Editor.dll (+pdb)","index":803,"exitcode":0,"outputfile":"Library\\Bee\\artifacts\\1900b0aE.dag\\post-processed\\Assembly-CSharp-Editor.dll","stdout":"- Starting ILPostProcessorRunner\r\n- Starting ILPostProcessor 'Unity.Jobs.CodeGen.JobsILPostProcessor' on Assembly-CSharp-Editor.dll\r\n- Finished ILPostProcessor 'Unity.Jobs.CodeGen.JobsILPostProcessor' on Assembly-CSharp-Editor.dll in 0.486431 seconds\r\n- Starting ILPostProcessor 'zzzUnity.Burst.CodeGen.BurstILPostProcessor' on Assembly-CSharp-Editor.dll\r\n- Finished ILPostProcessor 'zzzUnity.Burst.CodeGen.BurstILPostProcessor' on Assembly-CSharp-Editor.dll in 0.170477 seconds\r\n- Finished ILPostProcessorRunner in 0.841617 seconds"} -{"msg":"noderesult","processed_node_count":986,"number_of_nodes_ever_queued":991,"annotation":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp.dll (+pdb)","index":801,"exitcode":0,"outputfile":"Library\\Bee\\artifacts\\1900b0aE.dag\\post-processed\\Assembly-CSharp.dll","stdout":"- Starting ILPostProcessorRunner\r\n- Starting ILPostProcessor 'Unity.Jobs.CodeGen.JobsILPostProcessor' on Assembly-CSharp.dll\r\n- Finished ILPostProcessor 'Unity.Jobs.CodeGen.JobsILPostProcessor' on Assembly-CSharp.dll in 0.413805 seconds\r\n- Starting ILPostProcessor 'zzzUnity.Burst.CodeGen.BurstILPostProcessor' on Assembly-CSharp.dll\r\n- Finished ILPostProcessor 'zzzUnity.Burst.CodeGen.BurstILPostProcessor' on Assembly-CSharp.dll in 0.282316 seconds\r\n- Finished ILPostProcessorRunner in 0.883178 seconds"} +{"msg":"noderesult","processed_node_count":984,"number_of_nodes_ever_queued":991,"annotation":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp-Editor.dll (+pdb)","index":803,"exitcode":0,"outputfile":"Library\\Bee\\artifacts\\1900b0aE.dag\\post-processed\\Assembly-CSharp-Editor.dll","stdout":"- Starting ILPostProcessorRunner\r\n- Starting ILPostProcessor 'Unity.Jobs.CodeGen.JobsILPostProcessor' on Assembly-CSharp-Editor.dll\r\n- Finished ILPostProcessor 'Unity.Jobs.CodeGen.JobsILPostProcessor' on Assembly-CSharp-Editor.dll in 0.156015 seconds\r\n- Starting ILPostProcessor 'zzzUnity.Burst.CodeGen.BurstILPostProcessor' on Assembly-CSharp-Editor.dll\r\n- Finished ILPostProcessor 'zzzUnity.Burst.CodeGen.BurstILPostProcessor' on Assembly-CSharp-Editor.dll in 0.152142 seconds\r\n- Finished ILPostProcessorRunner in 0.339678 seconds"} +{"msg":"noderesult","processed_node_count":986,"number_of_nodes_ever_queued":991,"annotation":"ILPostProcess Library/Bee/artifacts/1900b0aE.dag/post-processed/Assembly-CSharp.dll (+pdb)","index":801,"exitcode":0,"outputfile":"Library\\Bee\\artifacts\\1900b0aE.dag\\post-processed\\Assembly-CSharp.dll","stdout":"- Starting ILPostProcessorRunner\r\n- Starting ILPostProcessor 'Unity.Jobs.CodeGen.JobsILPostProcessor' on Assembly-CSharp.dll\r\n- Finished ILPostProcessor 'Unity.Jobs.CodeGen.JobsILPostProcessor' on Assembly-CSharp.dll in 0.208015 seconds\r\n- Starting ILPostProcessor 'zzzUnity.Burst.CodeGen.BurstILPostProcessor' on Assembly-CSharp.dll\r\n- Finished ILPostProcessor 'zzzUnity.Burst.CodeGen.BurstILPostProcessor' on Assembly-CSharp.dll in 0.191522 seconds\r\n- Finished ILPostProcessorRunner in 0.43136 seconds"} {"msg":"inputSignatureChanged","annotation":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb","index":989,"changes":[{"key":"InputFileList","value":["Library\\Bee\\artifacts\\1900b0aE.dag\\post-processed\\Assembly-CSharp.pdb"],"oldvalue":[],"dependency":"explicit"}]} {"msg":"runNodeAction","annotation":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb","index":989} {"msg":"noderesult","processed_node_count":987,"number_of_nodes_ever_queued":991,"annotation":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb","index":989,"exitcode":0,"outputfile":"Library\\ScriptAssemblies\\Assembly-CSharp.pdb"} {"msg":"inputSignatureChanged","annotation":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll","index":988,"changes":[{"key":"InputFileList","value":["Library\\Bee\\artifacts\\1900b0aE.dag\\post-processed\\Assembly-CSharp.dll"],"oldvalue":[],"dependency":"explicit"}]} {"msg":"runNodeAction","annotation":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll","index":988} -{"msg":"noderesult","processed_node_count":988,"number_of_nodes_ever_queued":991,"annotation":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll","index":988,"exitcode":0,"outputfile":"Library\\ScriptAssemblies\\Assembly-CSharp.dll"} +{"msg":"noderesult","processed_node_count":989,"number_of_nodes_ever_queued":991,"annotation":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll","index":988,"exitcode":0,"outputfile":"Library\\ScriptAssemblies\\Assembly-CSharp.dll"} diff --git a/Library/BurstCache/JIT/Hashes/a110ffe6b760e4b56cb86ae44bc7857d.bhc b/Library/BurstCache/JIT/Hashes/a110ffe6b760e4b56cb86ae44bc7857d.bhc index 1716d78545..f5ec7ff366 100644 Binary files a/Library/BurstCache/JIT/Hashes/a110ffe6b760e4b56cb86ae44bc7857d.bhc and b/Library/BurstCache/JIT/Hashes/a110ffe6b760e4b56cb86ae44bc7857d.bhc differ diff --git a/Library/BurstCache/JIT/Hashes/f890d1fdde3a07f1cb7ddaf50227f1a0.bhc b/Library/BurstCache/JIT/Hashes/f890d1fdde3a07f1cb7ddaf50227f1a0.bhc index b6e6d43189..ccc2d05e3b 100644 Binary files a/Library/BurstCache/JIT/Hashes/f890d1fdde3a07f1cb7ddaf50227f1a0.bhc and b/Library/BurstCache/JIT/Hashes/f890d1fdde3a07f1cb7ddaf50227f1a0.bhc differ diff --git a/Library/InspectorExpandedItems.asset b/Library/InspectorExpandedItems.asset index 373fd6ae2e..a7db524d36 100644 Binary files a/Library/InspectorExpandedItems.asset and b/Library/InspectorExpandedItems.asset differ diff --git a/Library/SceneVisibilityState.asset b/Library/SceneVisibilityState.asset index 86f6e24d2c..654cf0965c 100644 Binary files a/Library/SceneVisibilityState.asset and b/Library/SceneVisibilityState.asset differ diff --git a/Library/ScriptAssemblies/Assembly-CSharp-Editor.dll b/Library/ScriptAssemblies/Assembly-CSharp-Editor.dll index 63e6035fdb..7e7bb44767 100644 Binary files a/Library/ScriptAssemblies/Assembly-CSharp-Editor.dll and b/Library/ScriptAssemblies/Assembly-CSharp-Editor.dll differ diff --git a/Library/ScriptAssemblies/Assembly-CSharp-Editor.pdb b/Library/ScriptAssemblies/Assembly-CSharp-Editor.pdb index 014e6a386d..c038cc6a9d 100644 Binary files a/Library/ScriptAssemblies/Assembly-CSharp-Editor.pdb and b/Library/ScriptAssemblies/Assembly-CSharp-Editor.pdb differ diff --git a/Library/ScriptAssemblies/Assembly-CSharp.dll b/Library/ScriptAssemblies/Assembly-CSharp.dll index 14693c71e3..ffae543ed0 100644 Binary files a/Library/ScriptAssemblies/Assembly-CSharp.dll and b/Library/ScriptAssemblies/Assembly-CSharp.dll differ diff --git a/Library/ScriptAssemblies/Assembly-CSharp.pdb b/Library/ScriptAssemblies/Assembly-CSharp.pdb index c81255cbbf..18ffb4f75f 100644 Binary files a/Library/ScriptAssemblies/Assembly-CSharp.pdb and b/Library/ScriptAssemblies/Assembly-CSharp.pdb differ diff --git a/Library/Search/transactions.db b/Library/Search/transactions.db index b225e8cbec..fb9453bc03 100644 Binary files a/Library/Search/transactions.db and b/Library/Search/transactions.db differ diff --git a/Library/ShaderCache.db b/Library/ShaderCache.db index 7cf830e211..d976c87664 100644 Binary files a/Library/ShaderCache.db and b/Library/ShaderCache.db differ diff --git a/Library/ShaderCache/EditorEncounteredVariants b/Library/ShaderCache/EditorEncounteredVariants index 000f044f28..c67b2a89bf 100644 Binary files a/Library/ShaderCache/EditorEncounteredVariants and b/Library/ShaderCache/EditorEncounteredVariants differ diff --git a/Library/ShaderCache/shader/Candela Flameada8/00/8b65940d7d9b96226ab1d7cd1148ee53.bin b/Library/ShaderCache/shader/Candela Flameada8/00/8b65940d7d9b96226ab1d7cd1148ee53.bin new file mode 100644 index 0000000000..f1da140e29 Binary files /dev/null and b/Library/ShaderCache/shader/Candela Flameada8/00/8b65940d7d9b96226ab1d7cd1148ee53.bin differ diff --git a/Library/ShaderCache/shader/Candela Flameada8/00/dd9fc18035f9d7b2286b78905a5ed6ec.bin b/Library/ShaderCache/shader/Candela Flameada8/00/dd9fc18035f9d7b2286b78905a5ed6ec.bin new file mode 100644 index 0000000000..dc68ab542b Binary files /dev/null and b/Library/ShaderCache/shader/Candela Flameada8/00/dd9fc18035f9d7b2286b78905a5ed6ec.bin differ diff --git a/Library/ShaderCache/shader/Simple Coveragec7de/00/18a94cb468506c7bba5abae41f1d124b.bin b/Library/ShaderCache/shader/Simple Coveragec7de/00/18a94cb468506c7bba5abae41f1d124b.bin new file mode 100644 index 0000000000..867384dff0 Binary files /dev/null and b/Library/ShaderCache/shader/Simple Coveragec7de/00/18a94cb468506c7bba5abae41f1d124b.bin differ diff --git a/Library/ShaderCache/shader/Simple Coveragec7de/00/8534543621b5e0931e9efd1aab5aa22a.bin b/Library/ShaderCache/shader/Simple Coveragec7de/00/8534543621b5e0931e9efd1aab5aa22a.bin new file mode 100644 index 0000000000..91019e6afd Binary files /dev/null and b/Library/ShaderCache/shader/Simple Coveragec7de/00/8534543621b5e0931e9efd1aab5aa22a.bin differ diff --git a/Library/ShaderCache/shader/Standard Decal4011/00/3cf4b8401b466b0693a6a242b6a8fada.bin b/Library/ShaderCache/shader/Standard Decal4011/00/3cf4b8401b466b0693a6a242b6a8fada.bin new file mode 100644 index 0000000000..22d8c1222d Binary files /dev/null and b/Library/ShaderCache/shader/Standard Decal4011/00/3cf4b8401b466b0693a6a242b6a8fada.bin differ diff --git a/Library/ShaderCache/shader/Standard Decal4011/00/a63dac550dc917154a5bc5c81af0eec5.bin b/Library/ShaderCache/shader/Standard Decal4011/00/a63dac550dc917154a5bc5c81af0eec5.bin new file mode 100644 index 0000000000..3a67ff29d0 Binary files /dev/null and b/Library/ShaderCache/shader/Standard Decal4011/00/a63dac550dc917154a5bc5c81af0eec5.bin differ diff --git a/Library/ShaderCache/shader/TerrainLitAdd0a7e/00/0dc3cfa7765833af4bd27f17b96ffcab.bin b/Library/ShaderCache/shader/TerrainLitAdd0a7e/00/0dc3cfa7765833af4bd27f17b96ffcab.bin new file mode 100644 index 0000000000..9b08aa0daa Binary files /dev/null and b/Library/ShaderCache/shader/TerrainLitAdd0a7e/00/0dc3cfa7765833af4bd27f17b96ffcab.bin differ diff --git a/Library/ShaderCache/shader/TerrainLitAdd0a7e/00/1f4e1acc560ce278555adb4e51f13e69.bin b/Library/ShaderCache/shader/TerrainLitAdd0a7e/00/1f4e1acc560ce278555adb4e51f13e69.bin new file mode 100644 index 0000000000..3768ae6b2e Binary files /dev/null and b/Library/ShaderCache/shader/TerrainLitAdd0a7e/00/1f4e1acc560ce278555adb4e51f13e69.bin differ diff --git a/Library/ShaderCache/shader/TerrainLitAdd0a7e/00/31dc8b72ca324f0b279fca404c39961d.bin b/Library/ShaderCache/shader/TerrainLitAdd0a7e/00/31dc8b72ca324f0b279fca404c39961d.bin new file mode 100644 index 0000000000..8fb35d99f6 Binary files /dev/null and b/Library/ShaderCache/shader/TerrainLitAdd0a7e/00/31dc8b72ca324f0b279fca404c39961d.bin differ diff --git a/Library/ShaderCache/shader/TerrainLitAdd0a7e/00/85d708dc2788a2f30533682a832093ea.bin b/Library/ShaderCache/shader/TerrainLitAdd0a7e/00/85d708dc2788a2f30533682a832093ea.bin new file mode 100644 index 0000000000..2d4198e06a Binary files /dev/null and b/Library/ShaderCache/shader/TerrainLitAdd0a7e/00/85d708dc2788a2f30533682a832093ea.bin differ diff --git a/Library/ShaderCache/shader/TerrainLitAdd0a7e/00/a742fbfd29bfa163942b9d9de6463984.bin b/Library/ShaderCache/shader/TerrainLitAdd0a7e/00/a742fbfd29bfa163942b9d9de6463984.bin new file mode 100644 index 0000000000..72c394df16 Binary files /dev/null and b/Library/ShaderCache/shader/TerrainLitAdd0a7e/00/a742fbfd29bfa163942b9d9de6463984.bin differ diff --git a/Library/SourceAssetDB b/Library/SourceAssetDB index 6c9a8c768d..b47b6bb9db 100644 Binary files a/Library/SourceAssetDB and b/Library/SourceAssetDB differ diff --git a/Library/SplashScreenCache/69/69ce67cb866082e3c8b469a28c2da3ac b/Library/SplashScreenCache/69/69ce67cb866082e3c8b469a28c2da3ac deleted file mode 100644 index ee0242425e..0000000000 Binary files a/Library/SplashScreenCache/69/69ce67cb866082e3c8b469a28c2da3ac and /dev/null differ diff --git a/Library/StateCache/PrefabStageHierarchy/32/32f005b795403344d5eab10bb4d24a6b.json b/Library/StateCache/PrefabStageHierarchy/32/32f005b795403344d5eab10bb4d24a6b.json new file mode 100644 index 0000000000..4652c82293 --- /dev/null +++ b/Library/StateCache/PrefabStageHierarchy/32/32f005b795403344d5eab10bb4d24a6b.json @@ -0,0 +1 @@ +{"m_ScrollY":0.0,"m_ExpandedPrefabGameObjectFileIDs":[5643021899365176294,7107883402286952820,2230733046286892603,1095402215460925564,8811482293151569284,8723151953468371354],"m_LastClickedFileID":7107883402286952820} \ No newline at end of file diff --git a/Library/StateCache/PrefabStageHierarchy/a6/a6bba33e936065f65237163a9d58dea3.json b/Library/StateCache/PrefabStageHierarchy/a6/a6bba33e936065f65237163a9d58dea3.json new file mode 100644 index 0000000000..a932cf5c04 --- /dev/null +++ b/Library/StateCache/PrefabStageHierarchy/a6/a6bba33e936065f65237163a9d58dea3.json @@ -0,0 +1 @@ +{"m_ScrollY":4915.173828125,"m_ExpandedPrefabGameObjectFileIDs":[3565348552681410404,893460555258563701,6397148928236602997,7339637266148284214,893460556169464597,893460554970765888,976796659773151438,8148168706750273339,2725271147465802199,893460556180993395,5724408757275579198,893460555563535992,6878199856367377458,893460554954919681,7625226410099758934,3834290404275300682,2273805703786577896,2419219700588460753,3008883842344569800,893460556711011525,893460556120581668,1058224171238587249,2505120889981065035,893460555195038530,893460556523916554,7339637265776739374,8148168707818007162,893460555042404624,893460555923838148,7339637264647814562,893460555441221521,5283842312287165923,3760538892698397216,893460555521283699,8148168706905951101,893460556559393344,8354720070789802915,18540599810575414,8148168708092613054,8148168708254760702,893460555066902793,5904688445390276882,2206470395508951001,893460555987671266,8148168707299918054,8148168708023424727,8148168707703644582,8148168708342376222,8148168706416962204,8148168706576882594,1037475292194919342,6993709834685672051,7261702355551480159,8081675863972940696,2038701072181187867,4245921545203109770,1507237556419742058,690991616580362487,5851763162326898963,3976887855650923210,6912385772997921713,1277253284418500839,1872367326266234610,1425201432561664037,6067058898816668935,5857928938169770391,4640456666486394752,8578823871408519407,5662550078067541166,3050050699558830219,5110862530211773115,6673630404206480488,893460555224280655,3584774846790081252,1882695032001597620,4732865899177508117,7339637264692479586,6009671193755975343,9178749114131553625,1322109837007666289,6138877407692115987,6465718933755083683,8867698783718800126,6517656310181190599,4534989016305413641,1345135945714237945,1106006338743885614,3330173650760348827,1687558357707408142,3555079382937791610,2857148682518389143,7999202912005407057,3366372709278368374,8844895740025651698,1764741316165935330,1007595550369867689,1561605530424499217,6210758169448625386,1499625490205975409,1499625491408629173,1499625490021338270,4135573084070806993,8783435516476206261,3770350663790260494,6936912136430914595,900611117563234776,1594700035894054656,7305487470152754550,5484078822338923978,8016693706057941456,4233282820160980144,2195171226368580456,6287819706766156277,6179815438628740841,7657301729198093751,6381773963552224049,5402247954275287646,8515130290845952006,5521430840319574700,2775280591858468524,3245607128353900672,1800047400267721178,5636150339105177405,7992758502901674223,536677164916499777,891927486712137780,7619409494552307527,1499625490279989578,1499625490090892799,8327549682551339067,5787622157570048956,3829443492880071893,893460556099390765,4745040950720373554,1706633866385253979,75260758827173435,6263741556661009064,5429093337816381629,5429093337790921985,5429093336792260926,5842769494334172311,3655565099502534933,5115944404087779074,7032302638234004034,8148168707089643140,8148168707728049113,8148168707778240779,7619409494924594867,1499625491165227825,1499625490286256126,1499625490447876556,1499625490819735565,3691361341723695753,5693015162878363860,5233964003795489126,3240591807167442221,6108786155041482019,2824812536879457447,4906786700283772054,6772243955125206636,6068249983649798835,4051760696829422080,4244075277154635627,3470741033932154702,893460555414770638,8180972712181584482,7818713866123993869,1459287447906035897,7619409494911962047,4968151406477725954,5011132820168175599,670491927983493374,1499625490375116951,1499625491461615003,1499625490632263832,3919002257200833218,4652554101693057057,8476207060228997172,6529202378819092773,1088692795511729479,6067476108924895825,3010785843747145130,8966454992840347228,1817641074686396504,1588526409970914589,5127258104701425017,1253683282968621896,8738208180370099811,3610983060451255305,8542029329373696947,4359780389814507295,7752050427267053784,5380252534879241350,9152691172161904875,8645515300293711461,8148140630401637823,4125678515221116697,2332803789956421564,8448334471803604735,4890062339702094594,1291877015960161376,6891707641872913991,4061057035671645889,2893609953924078377,5157757943690420830,2545120239295984910,7207301165909568177,366786171873663894,3977297436416765788,1393589601866014856,239181799848696666,7954364155340899453,1934751490061781946,9214087644740772845,6283029851459134979,3329308378724731257,5243085464263772261,3089731795362443036,5913694994957455659,6648179775748891519,415536458412466753,4673138934715648346,5063734282396821678,8594892124425919226,7126521810065663808,7016234486323688301,1658613766919978913,4213869763416761319,8991139506674051110,7176229018271045586,6064760715384207960,2820168552586847754,2807863627468050423,8510760637011405055,854287214683801283,2010588227874328444,2003658412099319510,195337362283028892,8108988160108241236,7235417815045932987,6256880232797843241,2515267091986452104,5658730852536228484,7808976304113179728,8663982618350487689,1386302403010466055,6800543349619067093,7072767745882024142,7112626511328240976,6234260826478083479,6079020844679309620,6611566903700970767,8072266770943447299,8503194922821246112,5933814532824933125,3566255689296401624,4234768445216541024,6153841021590159522,5816316584541911914,1700250720090053016,7868916093516560987,8538724713562683187,6993026864818500686,2188717363546173519,3128676136104566011,121057022007351097,6756416669899543877,5876075491764653405,4430223020333840473,195350742459939610,1299994696845526853,1746971947112678211,8009728337535656185,2660410027437600363,8901739613262875752,7487643879081733262,5823936502346533077,1727558381751198805,4255950613576796457,4407464071574134451,960724342740291476,5932893802290993655,3220835406744077129,7495702815220901830,6392354931128791361,8075990745276576174,893460556159174230,893460556297113766,893460555035252351],"m_LastClickedFileID":1499625490375116951} \ No newline at end of file diff --git a/Library/StateCache/PrefabStageHierarchy/e4/e4849815b5c34abafcd9b62d2f0e38f8.json b/Library/StateCache/PrefabStageHierarchy/e4/e4849815b5c34abafcd9b62d2f0e38f8.json new file mode 100644 index 0000000000..5ea0144c93 --- /dev/null +++ b/Library/StateCache/PrefabStageHierarchy/e4/e4849815b5c34abafcd9b62d2f0e38f8.json @@ -0,0 +1 @@ +{"m_ScrollY":0.0,"m_ExpandedPrefabGameObjectFileIDs":[6727712027222871105,8101864762807684724,3808023776319559960,6991569951941209211,4823672042703400310],"m_LastClickedFileID":0} \ No newline at end of file diff --git a/Library/StateCache/PrefabStageHierarchy/f9/f9043f6c5a592519e729312c030b797c.json b/Library/StateCache/PrefabStageHierarchy/f9/f9043f6c5a592519e729312c030b797c.json new file mode 100644 index 0000000000..7158f6714d --- /dev/null +++ b/Library/StateCache/PrefabStageHierarchy/f9/f9043f6c5a592519e729312c030b797c.json @@ -0,0 +1 @@ +{"m_ScrollY":0.0,"m_ExpandedPrefabGameObjectFileIDs":[8299048400542714914],"m_LastClickedFileID":0} \ No newline at end of file diff --git a/Library/StateCache/SceneView/1d/1de5a0b6f6369749cb23f36bedcce923.json b/Library/StateCache/SceneView/1d/1de5a0b6f6369749cb23f36bedcce923.json index 99fec505ed..8ead7c46a3 100644 --- a/Library/StateCache/SceneView/1d/1de5a0b6f6369749cb23f36bedcce923.json +++ b/Library/StateCache/SceneView/1d/1de5a0b6f6369749cb23f36bedcce923.json @@ -1 +1 @@ -{"cameraMode":{"drawMode":0,"name":"Shaded","section":"Shading Mode"},"sceneLighting":true,"audioPlay":false,"sceneViewState":{"m_AlwaysRefresh":true,"showFog":true,"showSkybox":true,"showFlares":true,"showImageEffects":true,"showParticleSystems":true,"showVisualEffectGraphs":true,"m_FxEnabled":false},"in2DMode":false,"pivot":{"x":1929.9483642578125,"y":1064.846435546875,"z":4795.41650390625},"rotation":{"x":0.004465759731829166,"y":0.000747109588701278,"z":0.0021624474320560695,"w":1.0003821849822999},"size":3416.513427734375,"orthographic":false} \ No newline at end of file +{"cameraMode":{"drawMode":0,"name":"Shaded","section":"Shading Mode"},"sceneLighting":true,"audioPlay":false,"sceneViewState":{"m_AlwaysRefresh":true,"showFog":true,"showSkybox":true,"showFlares":true,"showImageEffects":true,"showParticleSystems":true,"showVisualEffectGraphs":true,"m_FxEnabled":true},"in2DMode":false,"pivot":{"x":1954.1781005859375,"y":1104.2547607421875,"z":-2147.928466796875},"rotation":{"x":-0.014436688274145127,"y":0.010877645574510098,"z":-0.0028221081010997297,"w":-1.0002424716949463},"size":10.0,"orthographic":false} \ No newline at end of file diff --git a/Library/StateCache/SceneView/3b/3b97cc3c0dfab761deb3083c5f9da8d4.json b/Library/StateCache/SceneView/3b/3b97cc3c0dfab761deb3083c5f9da8d4.json new file mode 100644 index 0000000000..2356eef0a3 --- /dev/null +++ b/Library/StateCache/SceneView/3b/3b97cc3c0dfab761deb3083c5f9da8d4.json @@ -0,0 +1 @@ +{"cameraMode":{"drawMode":0,"name":"Shaded","section":"Shading Mode"},"sceneLighting":false,"audioPlay":false,"sceneViewState":{"m_AlwaysRefresh":true,"showFog":true,"showSkybox":false,"showFlares":true,"showImageEffects":true,"showParticleSystems":true,"showVisualEffectGraphs":true,"m_FxEnabled":true},"in2DMode":false,"pivot":{"x":150.44073486328126,"y":-12.909501075744629,"z":-14.285039901733399},"rotation":{"x":0.005872822366654873,"y":-0.20077423751354218,"z":-0.003926211502403021,"w":-0.9800305366516113},"size":4.352721691131592,"orthographic":false} \ No newline at end of file diff --git a/Library/StateCache/SceneView/42/42da8c16ed5908a2e4b618675a564f06.json b/Library/StateCache/SceneView/42/42da8c16ed5908a2e4b618675a564f06.json new file mode 100644 index 0000000000..198bdba3a5 --- /dev/null +++ b/Library/StateCache/SceneView/42/42da8c16ed5908a2e4b618675a564f06.json @@ -0,0 +1 @@ +{"cameraMode":{"drawMode":0,"name":"Shaded","section":"Shading Mode"},"sceneLighting":false,"audioPlay":false,"sceneViewState":{"m_AlwaysRefresh":true,"showFog":true,"showSkybox":false,"showFlares":true,"showImageEffects":true,"showParticleSystems":true,"showVisualEffectGraphs":true,"m_FxEnabled":true},"in2DMode":false,"pivot":{"x":0.003446340560913086,"y":1.9047768115997315,"z":0.004334688186645508},"rotation":{"x":0.005872822366654873,"y":-0.20077423751354218,"z":-0.003926211502403021,"w":-0.9800305366516113},"size":3.255319595336914,"orthographic":false} \ No newline at end of file diff --git a/Library/StateCache/SceneView/f4/f46b1e67a063596b662d0f678a0fe0ee.json b/Library/StateCache/SceneView/f4/f46b1e67a063596b662d0f678a0fe0ee.json new file mode 100644 index 0000000000..8fc2e81e85 --- /dev/null +++ b/Library/StateCache/SceneView/f4/f46b1e67a063596b662d0f678a0fe0ee.json @@ -0,0 +1 @@ +{"cameraMode":{"drawMode":0,"name":"Shaded","section":"Shading Mode"},"sceneLighting":false,"audioPlay":false,"sceneViewState":{"m_AlwaysRefresh":true,"showFog":true,"showSkybox":false,"showFlares":true,"showImageEffects":true,"showParticleSystems":true,"showVisualEffectGraphs":true,"m_FxEnabled":false},"in2DMode":false,"pivot":{"x":-0.06195724010467529,"y":-0.06049811840057373,"z":-0.10314303636550904},"rotation":{"x":0.02065006084740162,"y":-0.8241171836853027,"z":0.5656982660293579,"w":0.034379929304122928},"size":0.40503352880477908,"orthographic":false} \ No newline at end of file diff --git a/Library/expandedItems b/Library/expandedItems index 0daac0134f..bfd0e6a29f 100644 Binary files a/Library/expandedItems and b/Library/expandedItems differ diff --git a/Logs/AssetImportWorker0-prev.log b/Logs/AssetImportWorker0-prev.log index 4926f2ace2..47979b49d2 100644 --- a/Logs/AssetImportWorker0-prev.log +++ b/Logs/AssetImportWorker0-prev.log @@ -15,7 +15,7 @@ C:/Work/Firstborn -logFile Logs/AssetImportWorker0.log -srvPort -57022 +61352 Successfully changed project path to: C:/Work/Firstborn C:/Work/Firstborn [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -47,11 +47,11 @@ C:/Work/Firstborn "memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gfx=262144" -Player connection [23536] Host "[IP] 192.168.1.140 [Port] 0 [Flags] 2 [Guid] 3386775430 [EditorId] 3386775430 [Version] 1048832 [Id] WindowsEditor(7,THE-BEAST) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... +Player connection [2080] Host "[IP] 192.168.1.140 [Port] 0 [Flags] 2 [Guid] 569330305 [EditorId] 569330305 [Version] 1048832 [Id] WindowsEditor(7,THE-BEAST) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... -Player connection [23536] Host "[IP] 192.168.1.140 [Port] 0 [Flags] 2 [Guid] 3386775430 [EditorId] 3386775430 [Version] 1048832 [Id] WindowsEditor(7,THE-BEAST) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... +Player connection [2080] Host "[IP] 192.168.1.140 [Port] 0 [Flags] 2 [Guid] 569330305 [EditorId] 569330305 [Version] 1048832 [Id] WindowsEditor(7,THE-BEAST) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... -Refreshing native plugins compatible for Editor in 336.82 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 383.56 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2021.3.15f1 (e8e88683f834) [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/Resources/UnitySubsystems @@ -67,3074 +67,45 @@ Initialize mono Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/Managed' Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono config path = 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56160 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56208 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.007779 seconds. +Registered in 0.009845 seconds. Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 337.52 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 373.95 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.988 seconds +- Completed reload, in 1.146 seconds Domain Reload Profiling: - ReloadAssembly (988ms) - BeginReloadAssembly (89ms) + ReloadAssembly (1147ms) + BeginReloadAssembly (95ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) - EndReloadAssembly (777ms) - LoadAssemblies (86ms) + EndReloadAssembly (904ms) + LoadAssemblies (92ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (136ms) + SetupTypeCache (161ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (30ms) - SetupLoadedEditorAssemblies (549ms) + RebuildScriptCaches (35ms) + SetupLoadedEditorAssemblies (632ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (10ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (338ms) + RefreshPlugins (374ms) BeforeProcessingInitializeOnLoad (1ms) - ProcessInitializeOnLoadAttributes (146ms) - ProcessInitializeOnLoadMethodAttributes (53ms) + ProcessInitializeOnLoadAttributes (187ms) + ProcessInitializeOnLoadMethodAttributes (59ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (0ms) Platform modules already initialized, skipping Registering precompiled user dll's ... -Registered in 0.013426 seconds. +Registered in 0.012620 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 346.52 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 3.189 seconds -Domain Reload Profiling: - ReloadAssembly (3190ms) - BeginReloadAssembly (133ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (28ms) - EndReloadAssembly (2912ms) - LoadAssemblies (123ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (403ms) - ReleaseScriptCaches (1ms) - RebuildScriptCaches (128ms) - SetupLoadedEditorAssemblies (2201ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (347ms) - BeforeProcessingInitializeOnLoad (160ms) - ProcessInitializeOnLoadAttributes (929ms) - ProcessInitializeOnLoadMethodAttributes (751ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -======================================================================== -Worker process is ready to serve import requests -Launched and connected shader compiler UnityShaderCompiler.exe after 0.05 seconds -Refreshing native plugins compatible for Editor in 4.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7671 Unused Serialized files (Serialized files now loaded: 0) -Unloading 3615 unused Assets / (9.9 MB). Loaded Objects now: 7795. -Memory consumption went from 425.7 MB to 415.8 MB. -Total: 12.904900 ms (FindLiveObjects: 1.163500 ms CreateObjectMapping: 1.459400 ms MarkObjects: 4.263600 ms DeleteObjects: 6.016800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 94469.461660 seconds. - path: Assets/Daz3D/Races/Jaz/[RACE] Jaz.asset - artifactKey: Guid(0d38a72e7b4360c48980c009b6b1aaa8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Jaz/[RACE] Jaz.asset using Guid(0d38a72e7b4360c48980c009b6b1aaa8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ed1eb40c25cac4363a4a6e5cd9fe4fb6') in 118.286010 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000051 seconds. - path: Assets/Daz3D/Races/Ogre/Female/Body.prefab - artifactKey: Guid(c939ad4a4134a3948a664275f8c9ff8a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ogre/Female/Body.prefab using Guid(c939ad4a4134a3948a664275f8c9ff8a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4912efe04ff892c78d762f56136f3ba7') in 6.809754 seconds -======================================================================== -Received Import Request. - Time since last request: 199.383646 seconds. - path: Assets/Daz3D/Races/Ogre/Female/Body.prefab - artifactKey: Guid(c939ad4a4134a3948a664275f8c9ff8a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ogre/Female/Body.prefab using Guid(c939ad4a4134a3948a664275f8c9ff8a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '06d018251aef0fbe4f9685563e7baca9') in 6.348151 seconds -======================================================================== -Received Import Request. - Time since last request: 202.317716 seconds. - path: Assets/Daz3D/Races/Ogre/Female/Materials/Pupils.mat - artifactKey: Guid(c53249bdbc35b3d439d5b4795c0ed15c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ogre/Female/Materials/Pupils.mat using Guid(c53249bdbc35b3d439d5b4795c0ed15c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '15cf23724f8de64949c2afec40402d90') in 0.063589 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000042 seconds. - path: Assets/Daz3D/Races/Ogre/Female/Materials/TWKtaryaMouth_1005.jpg - artifactKey: Guid(57dd553b5c9f20f469b9b0f277514ac2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ogre/Female/Materials/TWKtaryaMouth_1005.jpg using Guid(57dd553b5c9f20f469b9b0f277514ac2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '33e84cf61b07dc9c01eac513db010b68') in 0.077044 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000045 seconds. - path: Assets/Daz3D/Races/Ogre/Female/Materials/TWKtaryaMouthB_1005_nm.png - artifactKey: Guid(2c227d70328ae014598310d7291be51c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ogre/Female/Materials/TWKtaryaMouthB_1005_nm.png using Guid(2c227d70328ae014598310d7291be51c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'affa8b9b70bd7bf1d954ba1f2f0fb66c') in 0.032939 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000037 seconds. - path: Assets/Daz3D/Races/Ogre/Female/Materials/TWKtaryaMouthB_1005.jpg - artifactKey: Guid(6514bfcf21287ff439849f5ee53c5f42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ogre/Female/Materials/TWKtaryaMouthB_1005.jpg using Guid(6514bfcf21287ff439849f5ee53c5f42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fa2e34a90f920c00016da73f057cfd23') in 0.023596 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000052 seconds. - path: Assets/Daz3D/Races/Ogre/Female/Materials/TWKtaryaMU03_1001.jpg - artifactKey: Guid(a850a5efcc0d6434eaab3301f3251a7e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ogre/Female/Materials/TWKtaryaMU03_1001.jpg using Guid(a850a5efcc0d6434eaab3301f3251a7e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ee3f30eca1163f860051d1a950d6c9f0') in 0.022746 seconds -======================================================================== -Received Import Request. - Time since last request: 3.088835 seconds. - path: Assets/Daz3D/Races/Ogre/Female/Materials/TWKtaryaTorso_1002.jpg - artifactKey: Guid(7a97931a36e48b74b82a49af1552166b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ogre/Female/Materials/TWKtaryaTorso_1002.jpg using Guid(7a97931a36e48b74b82a49af1552166b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '04731ecb8d8b01b81b867218fad1c022') in 0.020039 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000033 seconds. - path: Assets/Daz3D/Races/Ogre/Female/Materials/TWKtaryaTorsoSSS_1002.jpg - artifactKey: Guid(26d80cc1717421f43a29b04964487ed1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ogre/Female/Materials/TWKtaryaTorsoSSS_1002.jpg using Guid(26d80cc1717421f43a29b04964487ed1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cbc703159de44d7a5e86c0fa569b1293') in 0.020921 seconds -======================================================================== -Received Import Request. - Time since last request: 13.061711 seconds. - path: Assets/Daz3D/Races/Ogre/Female/Materials/Irises.mat - artifactKey: Guid(7e2db15fcfbf7a64284ea1145b37a69a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ogre/Female/Materials/Irises.mat using Guid(7e2db15fcfbf7a64284ea1145b37a69a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '72710d9b8779b0435d480c9b7fa48100') in 0.015991 seconds -======================================================================== -Received Import Request. - Time since last request: 47.133191 seconds. - path: Assets/Daz3D/Races/Ogre/Female/Body.prefab - artifactKey: Guid(c939ad4a4134a3948a664275f8c9ff8a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ogre/Female/Body.prefab using Guid(c939ad4a4134a3948a664275f8c9ff8a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1dd5ebbcb4e3280c7b09a046bea989f0') in 6.177455 seconds -======================================================================== -Received Import Request. - Time since last request: 16.988518 seconds. - path: Assets/Daz3D/Races/Ogre/Male/Body.prefab - artifactKey: Guid(999d1ed96455feb41a71980c56d6dd53) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ogre/Male/Body.prefab using Guid(999d1ed96455feb41a71980c56d6dd53) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '326935644df420946b9b0e697ddf47e0') in 1.296255 seconds -======================================================================== -Received Import Request. - Time since last request: 99.753765 seconds. - path: Assets/Daz3D/Races/Ogre/Female/Body.prefab - artifactKey: Guid(c939ad4a4134a3948a664275f8c9ff8a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ogre/Female/Body.prefab using Guid(c939ad4a4134a3948a664275f8c9ff8a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd55e913678ce7b9d299d85a11c0efe35') in 6.372398 seconds -======================================================================== -Received Import Request. - Time since last request: 299.103713 seconds. - path: Assets/Daz3D/Races/Oni/[RACE] Oni.asset - artifactKey: Guid(6e063ea130700764cb8166294c3f5385) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/[RACE] Oni.asset using Guid(6e063ea130700764cb8166294c3f5385) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '01b51dc652c26a734b8f155e91f3e4dd') in 6.664999 seconds -======================================================================== -Received Import Request. - Time since last request: 5.410101 seconds. - path: Assets/Daz3D/Races/Oni/Female/Body 1.prefab - artifactKey: Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Female/Body 1.prefab using Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6dfa249e3479590eb127023412d08730') in 6.225514 seconds -======================================================================== -Received Import Request. - Time since last request: 26.634539 seconds. - path: Assets/Daz3D/Races/Oni/Female/Body 1.prefab - artifactKey: Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Female/Body 1.prefab using Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'df5d24e69599b83df606f0465223c43a') in 6.320741 seconds -======================================================================== -Received Import Request. - Time since last request: 15.675329 seconds. - path: Assets/Daz3D/Races/Oni/Female/Body 1.prefab - artifactKey: Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Female/Body 1.prefab using Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '02c020d28366eaa02398ecff84cb5a52') in 6.359130 seconds -======================================================================== -Received Import Request. - Time since last request: 5.998064 seconds. - path: Assets/Daz3D/Races/Oni/Female/Body 1.prefab - artifactKey: Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Female/Body 1.prefab using Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f3465b2c714d70a53c9caf22d3ed43a0') in 6.325222 seconds -======================================================================== -Received Import Request. - Time since last request: 132.556029 seconds. - path: Assets/Daz3D/Races/Oni/Female/Body 1.prefab - artifactKey: Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Female/Body 1.prefab using Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ebb6813f2408354552cfef5e4e22c56a') in 6.319992 seconds -======================================================================== -Received Import Request. - Time since last request: 5.194172 seconds. - path: Assets/Daz3D/Races/Oni/Female/Body 1.prefab - artifactKey: Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Female/Body 1.prefab using Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1ec3a799ea01493a5f0bb243d8ccae71') in 6.349841 seconds -======================================================================== -Received Import Request. - Time since last request: 0.561268 seconds. - path: Assets/Daz3D/Races/Oni/Female/Body 1.prefab - artifactKey: Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Female/Body 1.prefab using Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5baae3bedf22030e583e564e3b733f3f') in 6.627448 seconds -======================================================================== -Received Import Request. - Time since last request: 0.073862 seconds. - path: Assets/Daz3D/Races/Oni/Female/Body 1.prefab - artifactKey: Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Female/Body 1.prefab using Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0f012a053f37b8c0a2bef7582eafefa3') in 6.637686 seconds -======================================================================== -Received Import Request. - Time since last request: 6.174909 seconds. - path: Assets/Daz3D/Races/Oni/Female/Body 1.prefab - artifactKey: Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Female/Body 1.prefab using Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f1db68e45eb78b6dc612741a2ae6e286') in 6.794922 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000047 seconds. - path: Assets/Daz3D/Races/Oni/Female/Body 1.prefab - artifactKey: Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Female/Body 1.prefab using Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '56858ee32aca23548d2d6533b583c335') in 7.359618 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000052 seconds. - path: Assets/Daz3D/Races/Oni/Female/Body 1.prefab - artifactKey: Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Female/Body 1.prefab using Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '15a88bc14c34470ffaa1776f517552df') in 7.317304 seconds -======================================================================== -Received Import Request. - Time since last request: 7.300829 seconds. - path: Assets/Daz3D/Races/Oni/Female/Materials - artifactKey: Guid(c8f1afbc2a690154da9c7be1cd95bfe2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Female/Materials using Guid(c8f1afbc2a690154da9c7be1cd95bfe2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '28cda9a76d3c5ae9fba7b02cfa2777a5') in 0.002444 seconds -======================================================================== -Received Import Request. - Time since last request: 21.137300 seconds. - path: Assets/Daz3D/Races/Oni/Female/Materials/Shariana_Torso-1002B_nm.png - artifactKey: Guid(eaeb49e8280589d4997a63dc6bae6de0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Female/Materials/Shariana_Torso-1002B_nm.png using Guid(eaeb49e8280589d4997a63dc6bae6de0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f48d3c2a5240aa7f34d256de3f74d38e') in 0.034629 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000044 seconds. - path: Assets/Daz3D/Races/Oni/Female/Materials/Torso.mat - artifactKey: Guid(53ef738514d36d44984d371678e7243d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Female/Materials/Torso.mat using Guid(53ef738514d36d44984d371678e7243d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fc82c60d50198fd8fb3e3321ea5f2574') in 0.145718 seconds -======================================================================== -Received Import Request. - Time since last request: 255.493075 seconds. - path: Assets/Daz3D/Races/Oni/Female/Materials/Irises.mat - artifactKey: Guid(ba958938eca8d35429353e5d0ffee4ca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Female/Materials/Irises.mat using Guid(ba958938eca8d35429353e5d0ffee4ca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6c222d37b3de29bcc15b647cf7a25665') in 0.026481 seconds -======================================================================== -Received Import Request. - Time since last request: 226.644806 seconds. - path: Assets/Daz3D/Races/Oni/Male - artifactKey: Guid(1cae160278dde704a8aa2e1799060cf1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male using Guid(1cae160278dde704a8aa2e1799060cf1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '87bc7c56abeb011610b8ac8be4bb73a7') in 0.002529 seconds -======================================================================== -Received Import Request. - Time since last request: 7.953829 seconds. - path: Assets/Daz3D/Races/Oni/Female/Body 1.prefab - artifactKey: Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Female/Body 1.prefab using Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '95bd4f042ee106fa1749feaf25d98edf') in 1.685520 seconds -======================================================================== -Received Import Request. - Time since last request: 3.735661 seconds. - path: Assets/Daz3D/Races/Oni/Female/Body.prefab - artifactKey: Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Female/Body.prefab using Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ec8831ced1110788c6aa289b712ecb2f') in 1.670980 seconds -======================================================================== -Received Import Request. - Time since last request: 28.822640 seconds. - path: Assets/Daz3D/Races/Oni/Male/Body.prefab - artifactKey: Guid(0b7b005f2ae3d8649904a4bb3b3feb9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Body.prefab using Guid(0b7b005f2ae3d8649904a4bb3b3feb9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cbc660ac6386981e2a855fd4ee93f0cb') in 1.042361 seconds -======================================================================== -Received Import Request. - Time since last request: 53.931076 seconds. - path: Assets/Daz3D/Races/Oumua/[RACE] Oumua.asset - artifactKey: Guid(b94601af4c791184ca16bd6398e66809) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/[RACE] Oumua.asset using Guid(b94601af4c791184ca16bd6398e66809) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a5950180f7c9c149340bb63c3e8bcbbc') in 106.194398 seconds -======================================================================== -Received Import Request. - Time since last request: 52.339630 seconds. - path: Assets/Daz3D/Races/Human/Male/Materials/g8mbasefacemapb01_1001.jpg - artifactKey: Guid(6f610b2641c206a47bdcace0d0080340) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Male/Materials/g8mbasefacemapb01_1001.jpg using Guid(6f610b2641c206a47bdcace0d0080340) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f5265029c639da86be1db0de0c0c59dd') in 0.026652 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000038 seconds. - path: Assets/Daz3D/Races/Human/Male/Materials/g8mbaselegsmapsss_1003.jpg - artifactKey: Guid(737f5708c5c602b448ceb4d471b8629a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Male/Materials/g8mbaselegsmapsss_1003.jpg using Guid(737f5708c5c602b448ceb4d471b8629a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '45cf55e4dbdfe723d776fffc327d722e') in 0.024712 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000031 seconds. - path: Assets/Daz3D/Races/Human/Male/Materials/g8mbaselegsmapb_1003_nm.png - artifactKey: Guid(61d9c0ce010ff3445b28843c4f60bd63) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Male/Materials/g8mbaselegsmapb_1003_nm.png using Guid(61d9c0ce010ff3445b28843c4f60bd63) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '75763e5c6c920e5fff7d5f6703347393') in 0.025869 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000051 seconds. - path: Assets/Daz3D/Races/Human/Male/Materials/g8mbaselegsmapd_1003.jpg - artifactKey: Guid(a077953897524a94daca4415d41e40d0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Male/Materials/g8mbaselegsmapd_1003.jpg using Guid(a077953897524a94daca4415d41e40d0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b139b43abef683426944e599f38537b9') in 0.023997 seconds -======================================================================== -Received Import Request. - Time since last request: 0.540345 seconds. - path: Assets/Daz3D/Races/Human/Male/Materials/g8mbasemouthmapb_1005_nm.png - artifactKey: Guid(f355fbcbff5834745a7ac87f3c76bd11) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Male/Materials/g8mbasemouthmapb_1005_nm.png using Guid(f355fbcbff5834745a7ac87f3c76bd11) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7b612270d729c6ad1a43ca23bd9dd887') in 0.023847 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000034 seconds. - path: Assets/Daz3D/Races/Human/Male/Materials/g8mbasetorsomapd_1002.jpg - artifactKey: Guid(4c207b891c0ea8c4e93d8c6851790e20) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Male/Materials/g8mbasetorsomapd_1002.jpg using Guid(4c207b891c0ea8c4e93d8c6851790e20) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7c25c19c39e0fd141f1f013208c12c32') in 0.022493 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000032 seconds. - path: Assets/Daz3D/Races/Human/Male/Materials/g8mbasetorsomapsss_1002.jpg - artifactKey: Guid(2fd423d8c79a7c24f9c637218062107d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Male/Materials/g8mbasetorsomapsss_1002.jpg using Guid(2fd423d8c79a7c24f9c637218062107d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '06c18737aa9fa8f6d40fcc81007f4478') in 0.022072 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/Daz3D/Races/Human/Male/Materials/Irises.mat - artifactKey: Guid(2f89ca6fc6b48784fb5b49dbbaf72645) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Male/Materials/Irises.mat using Guid(2f89ca6fc6b48784fb5b49dbbaf72645) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd77e13205811b267dd3187790e113b1d') in 0.048642 seconds -======================================================================== -Received Import Request. - Time since last request: 0.387489 seconds. - path: Assets/Daz3D/Races/Human/Male/Materials/Mouth.mat - artifactKey: Guid(03e73449250c88e46bfbda65acbf3b6d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Male/Materials/Mouth.mat using Guid(03e73449250c88e46bfbda65acbf3b6d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '36b8cd50940ef005d0f634ffff031865') in 0.027045 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000038 seconds. - path: Assets/Daz3D/Races/Human/Male/Materials/Toenails.mat - artifactKey: Guid(e8bccfbfd29a0ff4cb65c66d845d755b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Male/Materials/Toenails.mat using Guid(e8bccfbfd29a0ff4cb65c66d845d755b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '332aa65c23d65e7569c5cee1749b5112') in 0.034346 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000049 seconds. - path: Assets/Daz3D/Races/Human/Male/Materials/Torso.mat - artifactKey: Guid(c413b4a1cfad34d40ab37eecf7d242ad) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Male/Materials/Torso.mat using Guid(c413b4a1cfad34d40ab37eecf7d242ad) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e89688929bc37d881b09a277bd2905fb') in 0.028862 seconds -======================================================================== -Received Import Request. - Time since last request: 158.779082 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Body.prefab - artifactKey: Guid(0a7177ce4aa30c242a9000177411d5a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Body.prefab using Guid(0a7177ce4aa30c242a9000177411d5a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd181a4068a53911c0dd1eee1379fb4e9') in 1.653278 seconds -======================================================================== -Received Import Request. - Time since last request: 5.644545 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Materials/Arms.mat - artifactKey: Guid(eb068d2c43b664a489b25ef6c522c3ad) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Materials/Arms.mat using Guid(eb068d2c43b664a489b25ef6c522c3ad) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8dc771d8ac57e52e54276c9c4126e38c') in 0.054280 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000031 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Materials/OumuaFem_Legs_BaseColor.jpg - artifactKey: Guid(18d1095f8e80c5740b1eead91dd6d4b5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Materials/OumuaFem_Legs_BaseColor.jpg using Guid(18d1095f8e80c5740b1eead91dd6d4b5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a3bedc0ab037588321666a37fde91590') in 0.026161 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000035 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Materials/OumuaFem_Arms_Height.jpg - artifactKey: Guid(cd7f5a5214a14d44abb39e75e962a41a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Materials/OumuaFem_Arms_Height.jpg using Guid(cd7f5a5214a14d44abb39e75e962a41a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2f35dbcc38817e8346a056e2656bf2b4') in 0.029444 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000039 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Materials/OumuaFem_Arms_BaseColor.jpg - artifactKey: Guid(5f7fceda6b5429b43a084cf7486f88fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Materials/OumuaFem_Arms_BaseColor.jpg using Guid(5f7fceda6b5429b43a084cf7486f88fd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'da375ebbcca540a0a56ffcce91add798') in 0.032332 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Materials/OumuaFem_Face_Roughness.jpg - artifactKey: Guid(91cfe15f782ea374d8b9d38f3654d86b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Materials/OumuaFem_Face_Roughness.jpg using Guid(91cfe15f782ea374d8b9d38f3654d86b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5728cfa65d54b555d5c1e5d16fddd9f1') in 0.019608 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000032 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Materials/OumuaFem_Eye_BaseColor.jpg - artifactKey: Guid(a238c7a79efc27e4ab5f44cfc37c6f3d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Materials/OumuaFem_Eye_BaseColor.jpg using Guid(a238c7a79efc27e4ab5f44cfc37c6f3d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '11f5286c4808961b6d6b593173d84563') in 0.025764 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000029 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Materials/Legs.mat - artifactKey: Guid(8bdd013f7436ed34e8565a2d8927f8e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Materials/Legs.mat using Guid(8bdd013f7436ed34e8565a2d8927f8e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '869a8ad460e0a8b70c016389c73e5b49') in 0.049700 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000032 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Materials/OumuaFem_Torso_Height.jpg - artifactKey: Guid(cd8b6b4fc2e83bc45ba48ebfe5f25fd5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Materials/OumuaFem_Torso_Height.jpg using Guid(cd8b6b4fc2e83bc45ba48ebfe5f25fd5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9c5863ba8ad80333677eba62b06d53a2') in 0.020421 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000042 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Materials/OumuaFem_Mouth_Roughness.jpg - artifactKey: Guid(5ec887621f55f26438512f54e681b039) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Materials/OumuaFem_Mouth_Roughness.jpg using Guid(5ec887621f55f26438512f54e681b039) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cd2c7c9ec5e750b819d20a3913298605') in 0.018816 seconds -======================================================================== -Received Import Request. - Time since last request: 26.920067 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Materials/OumuaFem_Torso_Normal.jpg - artifactKey: Guid(f80e2add5a284a24f9d720e00ae54b09) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Materials/OumuaFem_Torso_Normal.jpg using Guid(f80e2add5a284a24f9d720e00ae54b09) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bf8a115d6d174adafed63678f840521e') in 0.028526 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000031 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Materials/Teeth.mat - artifactKey: Guid(9d77f1feb1f08d24ba774502f6114571) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Materials/Teeth.mat using Guid(9d77f1feb1f08d24ba774502f6114571) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f5024acc061e77326a3343050ae5c3a4') in 0.051106 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Materials/Pupils.mat - artifactKey: Guid(f93282938ec6dea4a94bf79d39b46321) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Materials/Pupils.mat using Guid(f93282938ec6dea4a94bf79d39b46321) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '551d5fc530052d2bca9db333bbe71389') in 0.023667 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000034 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Materials/Sclera.mat - artifactKey: Guid(d886b43918df6984ca371d6ecdef9471) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Materials/Sclera.mat using Guid(d886b43918df6984ca371d6ecdef9471) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ef002080bcec8a85650063a91c70c31f') in 0.021768 seconds -======================================================================== -Received Import Request. - Time since last request: 288.397608 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Body.prefab - artifactKey: Guid(0a7177ce4aa30c242a9000177411d5a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Body.prefab using Guid(0a7177ce4aa30c242a9000177411d5a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8c45d3acf9a8854bfa4fdbc82d70370b') in 5.995458 seconds -======================================================================== -Received Import Request. - Time since last request: 167.584825 seconds. - path: Assets/Daz3D/Races/Ozias/[RACE] Ozias.asset - artifactKey: Guid(2a727b4644ea58c4c9e88a3b82aa7291) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/[RACE] Ozias.asset using Guid(2a727b4644ea58c4c9e88a3b82aa7291) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ef4d04e4eda90f6d90a4f7b7363fbbd5') in 106.599544 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000062 seconds. - path: Assets/Daz3D/Races/Ozias/Female/Body.prefab - artifactKey: Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Female/Body.prefab using Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9fb0304ac4dda2143553474b97e6a029') in 6.412503 seconds -======================================================================== -Received Import Request. - Time since last request: 30.290277 seconds. - path: Assets/Daz3D/Races/Ozias/Female/Body.prefab - artifactKey: Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Female/Body.prefab using Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f774acadab6e62ef26bb387ae1d29e42') in 6.450492 seconds -======================================================================== -Received Import Request. - Time since last request: 5.529608 seconds. - path: Assets/Daz3D/Races/Ozias/Female/Body.prefab - artifactKey: Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Female/Body.prefab using Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a499f8c6b14d371f12b5e1cac2e2e96e') in 6.246272 seconds -======================================================================== -Received Import Request. - Time since last request: 0.125422 seconds. - path: Assets/Daz3D/Races/Ozias/Female/Body.prefab - artifactKey: Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Female/Body.prefab using Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '09e3096cb207fc306308e860c9bacea3') in 6.685611 seconds -======================================================================== -Received Import Request. - Time since last request: 0.073835 seconds. - path: Assets/Daz3D/Races/Ozias/Female/Body.prefab - artifactKey: Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Female/Body.prefab using Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'da50368efdfcefbc6d1572e36aa1e2fa') in 7.074096 seconds -======================================================================== -Received Import Request. - Time since last request: 0.262869 seconds. - path: Assets/Daz3D/Races/Ozias/Female/Body.prefab - artifactKey: Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Female/Body.prefab using Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '57ebed48ab52dbefe8ccad07d4174a3b') in 6.681036 seconds -======================================================================== -Received Import Request. - Time since last request: 0.023626 seconds. - path: Assets/Daz3D/Races/Ozias/Female/Body.prefab - artifactKey: Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Female/Body.prefab using Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8e3fd79cfcade688fa7fba44c1060afe') in 6.623748 seconds -======================================================================== -Received Import Request. - Time since last request: 1.805127 seconds. - path: Assets/Daz3D/Races/Ozias/Female/Body.prefab - artifactKey: Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Female/Body.prefab using Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '78268a9bc6002af407823e85509c5e2a') in 6.812777 seconds -======================================================================== -Received Import Request. - Time since last request: 3.495229 seconds. - path: Assets/Daz3D/Races/Ozias/Female/Body.prefab - artifactKey: Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Female/Body.prefab using Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4f4683eea556c86e83818041baae4f84') in 6.024159 seconds -======================================================================== -Received Import Request. - Time since last request: 1.640755 seconds. - path: Assets/Daz3D/Races/Ozias/Female/Body.prefab - artifactKey: Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Female/Body.prefab using Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b047da17df70f83a50aa891b91ac0b11') in 6.583470 seconds -======================================================================== -Received Import Request. - Time since last request: 18.357728 seconds. - path: Assets/Daz3D/Races/Ozias/Female/Materials/Mouth.mat - artifactKey: Guid(fdb3d294021935c4d887e95836a88b9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Female/Materials/Mouth.mat using Guid(fdb3d294021935c4d887e95836a88b9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7f8a8fee57012a6ba5437141710de9de') in 0.071559 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000034 seconds. - path: Assets/Daz3D/Races/Ozias/Female/Materials/Toenails.mat - artifactKey: Guid(3d64c2c2fe1486241ae86c6c196208d0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Female/Materials/Toenails.mat using Guid(3d64c2c2fe1486241ae86c6c196208d0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3918b798512c1cec3e6b30040c6ea2d4') in 0.113039 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000048 seconds. - path: Assets/Daz3D/Races/Ozias/Female/Materials/Sclera.mat - artifactKey: Guid(a26609c982cbbaf4ba0694d2534af7b2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Female/Materials/Sclera.mat using Guid(a26609c982cbbaf4ba0694d2534af7b2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '85e3f464c9dd34825598a3c71538fdfd') in 0.078510 seconds -======================================================================== -Received Import Request. - Time since last request: 206.915033 seconds. - path: Assets/Daz3D/Races/Oumua/[RACE] Oumua.asset - artifactKey: Guid(b94601af4c791184ca16bd6398e66809) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/[RACE] Oumua.asset using Guid(b94601af4c791184ca16bd6398e66809) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'be291ac5395d07d971140863c99cfbdc') in 111.394087 seconds -======================================================================== -Received Import Request. - Time since last request: 1.003917 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/01.asset - artifactKey: Guid(b6b33070b154c074484a24062fe0fe7b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/01.asset using Guid(b6b33070b154c074484a24062fe0fe7b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fa6cbaf17f2e10d662f9adf0156a29f0') in 0.015341 seconds -======================================================================== -Received Import Request. - Time since last request: 298.131489 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/01 1.asset - artifactKey: Guid(c5a7914bbff9ff040abbce3fedf2bd86) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/01 1.asset using Guid(c5a7914bbff9ff040abbce3fedf2bd86) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c37a02712d5d7513c6571ef3854cde35') in 0.014089 seconds -======================================================================== -Received Import Request. - Time since last request: 12.420255 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/01 2.asset - artifactKey: Guid(ead705a6359e72f46b514f50bf57f613) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/01 2.asset using Guid(ead705a6359e72f46b514f50bf57f613) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '96ed9272b7953321ff0dc041147d3769') in 0.012920 seconds -======================================================================== -Received Import Request. - Time since last request: 1.157011 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/01 3.asset - artifactKey: Guid(0f8bdff4e4cbd084995111194da21981) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/01 3.asset using Guid(0f8bdff4e4cbd084995111194da21981) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3b015940c8c122d826e209a1f0f8b3f0') in 0.013114 seconds -======================================================================== -Received Import Request. - Time since last request: 1.004227 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/01 4.asset - artifactKey: Guid(e2ad320c07c840045874f525b8ef869f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/01 4.asset using Guid(e2ad320c07c840045874f525b8ef869f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f7b97d181e7643180ae91fd0222beb7e') in 0.013959 seconds -======================================================================== -Received Import Request. - Time since last request: 1.076188 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/01 5.asset - artifactKey: Guid(c36a46144f0eb9e49a48eec820a4ff98) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/01 5.asset using Guid(c36a46144f0eb9e49a48eec820a4ff98) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6fe0ea3b7f7ae87bfec9f1bb6c518ebc') in 0.013991 seconds -======================================================================== -Received Import Request. - Time since last request: 1.248914 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/01 6.asset - artifactKey: Guid(512f8c1ff8d502449afb04f317973315) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/01 6.asset using Guid(512f8c1ff8d502449afb04f317973315) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7677d6d366b7ebaef30de2169a67e632') in 0.012666 seconds -======================================================================== -Received Import Request. - Time since last request: 1.172033 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/01 7.asset - artifactKey: Guid(839598611dbaef44c8cccfa50bf50e91) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/01 7.asset using Guid(839598611dbaef44c8cccfa50bf50e91) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b7200a39c2e8ec4f32f29c678e41e499') in 0.013188 seconds -======================================================================== -Received Import Request. - Time since last request: 1.057163 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/01 8.asset - artifactKey: Guid(b6c4643d22f4a544c841bb772d3efacf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/01 8.asset using Guid(b6c4643d22f4a544c841bb772d3efacf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bf864da8d6356a672c37995d0f8347d3') in 0.012287 seconds -======================================================================== -Received Import Request. - Time since last request: 1.078504 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/01 9.asset - artifactKey: Guid(3e5442109d6162c44bfe03ac6683fa60) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/01 9.asset using Guid(3e5442109d6162c44bfe03ac6683fa60) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '484d1a84a92f53d352ca6ddc66830f1c') in 0.012230 seconds -======================================================================== -Received Import Request. - Time since last request: 12.098581 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/02.asset - artifactKey: Guid(c5a7914bbff9ff040abbce3fedf2bd86) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/02.asset using Guid(c5a7914bbff9ff040abbce3fedf2bd86) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0f450a3bfdae99a3e0746f0201f6714e') in 0.013186 seconds -======================================================================== -Received Import Request. - Time since last request: 6.008128 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/03.asset - artifactKey: Guid(ead705a6359e72f46b514f50bf57f613) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/03.asset using Guid(ead705a6359e72f46b514f50bf57f613) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5a42b57ca0d02ca4152d8160718aafc0') in 0.011631 seconds -======================================================================== -Received Import Request. - Time since last request: 5.819759 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/04.asset - artifactKey: Guid(0f8bdff4e4cbd084995111194da21981) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/04.asset using Guid(0f8bdff4e4cbd084995111194da21981) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '804e33cfb0760421204b22ef84d8e679') in 0.011275 seconds -======================================================================== -Received Import Request. - Time since last request: 5.237719 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/05.asset - artifactKey: Guid(e2ad320c07c840045874f525b8ef869f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/05.asset using Guid(e2ad320c07c840045874f525b8ef869f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '02649707c004e14571fbf21ad0ce8bdc') in 0.011497 seconds -======================================================================== -Received Import Request. - Time since last request: 4.817519 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/06.asset - artifactKey: Guid(c36a46144f0eb9e49a48eec820a4ff98) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/06.asset using Guid(c36a46144f0eb9e49a48eec820a4ff98) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1c622d60b952ca5baf8fd1df91869217') in 0.011974 seconds -======================================================================== -Received Import Request. - Time since last request: 4.640864 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/07.asset - artifactKey: Guid(512f8c1ff8d502449afb04f317973315) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/07.asset using Guid(512f8c1ff8d502449afb04f317973315) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cb9bb4987987ceda04cad72b8c5910e6') in 0.011887 seconds -======================================================================== -Received Import Request. - Time since last request: 4.789013 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/08.asset - artifactKey: Guid(839598611dbaef44c8cccfa50bf50e91) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/08.asset using Guid(839598611dbaef44c8cccfa50bf50e91) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1dabd6a67b69d8ebba4907cffc60d5b5') in 0.012198 seconds -======================================================================== -Received Import Request. - Time since last request: 9.608958 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/09.asset - artifactKey: Guid(b6c4643d22f4a544c841bb772d3efacf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/09.asset using Guid(b6c4643d22f4a544c841bb772d3efacf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8e7d13a0e65937bbd96c2e82ab126023') in 0.011712 seconds -======================================================================== -Received Import Request. - Time since last request: 26.909143 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/10.asset - artifactKey: Guid(3e5442109d6162c44bfe03ac6683fa60) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/10.asset using Guid(3e5442109d6162c44bfe03ac6683fa60) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9426408f960d379ed2be12559c6addf2') in 0.011353 seconds -======================================================================== -Received Import Request. - Time since last request: 5.298256 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/02.prefab - artifactKey: Guid(dd1ab08883ead8d4b91a41c0675995b0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/02.prefab using Guid(dd1ab08883ead8d4b91a41c0675995b0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e0885ae1c6afdc87a0766236b1428dcf') in 0.037572 seconds -======================================================================== -Received Import Request. - Time since last request: 5.886342 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/03.prefab - artifactKey: Guid(caeb1dbcef457f04a9bfbb4ffaae019a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/03.prefab using Guid(caeb1dbcef457f04a9bfbb4ffaae019a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e9967a5d1711405511c890b77f938df0') in 0.034384 seconds -======================================================================== -Received Import Request. - Time since last request: 3.983709 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/04.prefab - artifactKey: Guid(d698ab8931674c8429a18a6a3389e0b2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/04.prefab using Guid(d698ab8931674c8429a18a6a3389e0b2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '803eb8bbbf8336cc9ac556f9c3e370c6') in 0.034902 seconds -======================================================================== -Received Import Request. - Time since last request: 4.776555 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/05.prefab - artifactKey: Guid(fcabbd4d2c94b954c961bdee18f0620b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/05.prefab using Guid(fcabbd4d2c94b954c961bdee18f0620b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '44df5dcc48a5b81e1a78c7fedd97b59b') in 0.033324 seconds -======================================================================== -Received Import Request. - Time since last request: 4.691845 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/06.prefab - artifactKey: Guid(2ce91a382ee892e4eb9afe21685bf4f5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/06.prefab using Guid(2ce91a382ee892e4eb9afe21685bf4f5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1b883af100b3c11a2a7074aaf4a054ca') in 0.033524 seconds -======================================================================== -Received Import Request. - Time since last request: 5.066922 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/07.prefab - artifactKey: Guid(9ec0b0f8a6792fc4290d7ee947cb00e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/07.prefab using Guid(9ec0b0f8a6792fc4290d7ee947cb00e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '06017b1046fbad9083958a05ecb50afa') in 0.034141 seconds -======================================================================== -Received Import Request. - Time since last request: 6.272116 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/08.prefab - artifactKey: Guid(228c7bfc689f2d640b7a55c70695c295) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/08.prefab using Guid(228c7bfc689f2d640b7a55c70695c295) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '419247795392d7ca9cc868a3ab6d88c0') in 0.033367 seconds -======================================================================== -Received Import Request. - Time since last request: 4.232125 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/09.prefab - artifactKey: Guid(c2f12f2b668515c4d8c46c5a892737c1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/09.prefab using Guid(c2f12f2b668515c4d8c46c5a892737c1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dd42153905192dca527bfc3b99ec2fac') in 0.034561 seconds -======================================================================== -Received Import Request. - Time since last request: 4.840827 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/10.prefab - artifactKey: Guid(264be9105ee6330469f7844678e78bc9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/10.prefab using Guid(264be9105ee6330469f7844678e78bc9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '54d6cbcbb490ab61e5c8a3f030834446') in 0.033559 seconds -======================================================================== -Received Import Request. - Time since last request: 21.444009 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/Materials/Irises 1.mat - artifactKey: Guid(f8dac29a0ceab2a43b4be76b2faa5edc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/Materials/Irises 1.mat using Guid(f8dac29a0ceab2a43b4be76b2faa5edc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '799fa24c83e456f7bc57eae7c5b0b836') in 0.018848 seconds -======================================================================== -Received Import Request. - Time since last request: 4.544998 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/Materials/Irises 2.mat - artifactKey: Guid(eb18333576afcd7409da30b9dcae6a1b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/Materials/Irises 2.mat using Guid(eb18333576afcd7409da30b9dcae6a1b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '57732101754e7fd7eef3df0f4cf45dc3') in 0.020206 seconds -======================================================================== -Received Import Request. - Time since last request: 0.758332 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/Materials/Irises 3.mat - artifactKey: Guid(1adfea7869fe37a4d8a9846eb9a2500f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/Materials/Irises 3.mat using Guid(1adfea7869fe37a4d8a9846eb9a2500f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2c0680f799e619d4b8e5323b6b0e284e') in 0.017167 seconds -======================================================================== -Received Import Request. - Time since last request: 0.685274 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/Materials/Irises 4.mat - artifactKey: Guid(480f77f9e824eea409ff3ccf600d2699) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/Materials/Irises 4.mat using Guid(480f77f9e824eea409ff3ccf600d2699) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c208800bf5416ff635719483e5a6d8d2') in 0.017283 seconds -======================================================================== -Received Import Request. - Time since last request: 0.683657 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/Materials/Irises 5.mat - artifactKey: Guid(0895bb380fe2abb42bfb6d1f0e8bf104) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/Materials/Irises 5.mat using Guid(0895bb380fe2abb42bfb6d1f0e8bf104) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7e277fee98e2a4b031297eeaf2b3626e') in 0.017075 seconds -======================================================================== -Received Import Request. - Time since last request: 0.748262 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/Materials/Irises 6.mat - artifactKey: Guid(fc3b538c09861884e8d0a848ad10f6aa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/Materials/Irises 6.mat using Guid(fc3b538c09861884e8d0a848ad10f6aa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '16db77c3fc7a48d98481fd03e9f7420b') in 0.017133 seconds -======================================================================== -Received Import Request. - Time since last request: 1.964818 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/Materials/Irises 7.mat - artifactKey: Guid(6142e523f4c81714ca131b653e66297f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/Materials/Irises 7.mat using Guid(6142e523f4c81714ca131b653e66297f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '757918c83aeeec05f6956c71645a1abb') in 0.017196 seconds -======================================================================== -Received Import Request. - Time since last request: 0.904290 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/Materials/Irises 8.mat - artifactKey: Guid(07eba2a2ca2da2d44af388d9e74ecc38) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/Materials/Irises 8.mat using Guid(07eba2a2ca2da2d44af388d9e74ecc38) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8d05d579b91936c8aac188c507c712c5') in 0.018996 seconds -======================================================================== -Received Import Request. - Time since last request: 0.805194 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/Materials/Irises 9.mat - artifactKey: Guid(3a22e2723e982f042bb2e4d9ede3eaef) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/Materials/Irises 9.mat using Guid(3a22e2723e982f042bb2e4d9ede3eaef) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '457b46e1d79c9ec0648c0340c7271797') in 0.016892 seconds -======================================================================== -Received Import Request. - Time since last request: 6.146407 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/Materials/Irises 10.mat - artifactKey: Guid(52c0d28674fd72e49bc0fb8c0a116295) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/Materials/Irises 10.mat using Guid(52c0d28674fd72e49bc0fb8c0a116295) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ed92cbf47327eb5a36968777e4f1df0e') in 0.017525 seconds -======================================================================== -Received Import Request. - Time since last request: 35.295921 seconds. - path: Assets/Daz3D/Races/FP_Unarmed.controller - artifactKey: Guid(65fa3bb2af6982049ae950fa5a4e9cd5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/FP_Unarmed.controller using Guid(65fa3bb2af6982049ae950fa5a4e9cd5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e4b93227ff3b3c64f2cc8d89fcede4a1') in 0.211559 seconds -======================================================================== -Received Import Request. - Time since last request: 2825.559359 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/Materials/Eye05.mat - artifactKey: Guid(a32f7dbcdbe099b4ea30d015affdab05) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/Materials/Eye05.mat using Guid(a32f7dbcdbe099b4ea30d015affdab05) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '06639cf164dd84714d89bdb8a95be789') in 0.048319 seconds -======================================================================== -Received Import Request. - Time since last request: 4.969554 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/Materials/Eye 1.mat - artifactKey: Guid(a32f7dbcdbe099b4ea30d015affdab05) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/Materials/Eye 1.mat using Guid(a32f7dbcdbe099b4ea30d015affdab05) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8983fc9df8877acba6dfcfcd76b2bfc0') in 0.038767 seconds -======================================================================== -Received Import Request. - Time since last request: 2.446612 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/Materials/Eye 2.mat - artifactKey: Guid(da36b5ffd288b354aa12015134834b89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/Materials/Eye 2.mat using Guid(da36b5ffd288b354aa12015134834b89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ac73b50b01155984465d4429adbc1877') in 0.037917 seconds -======================================================================== -Received Import Request. - Time since last request: 0.645911 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/Materials/Eye 3.mat - artifactKey: Guid(11246da6d69fb6744b36b0fd2d39bd78) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/Materials/Eye 3.mat using Guid(11246da6d69fb6744b36b0fd2d39bd78) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e2907a8f7ce82f9bb85046dbd6336368') in 0.046657 seconds -======================================================================== -Received Import Request. - Time since last request: 0.568757 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/Materials/Eye 4.mat - artifactKey: Guid(5f43cbce0a77fc74e99ee7f0553a7eb0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/Materials/Eye 4.mat using Guid(5f43cbce0a77fc74e99ee7f0553a7eb0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '655f6d27853c897c0130d79255e88ea5') in 0.039648 seconds -======================================================================== -Received Import Request. - Time since last request: 0.477879 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/Materials/Eye 5.mat - artifactKey: Guid(f2470a6119bca884085ecf60f8cc1f60) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/Materials/Eye 5.mat using Guid(f2470a6119bca884085ecf60f8cc1f60) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '63bf4b4a32b8ea3a1aed2b361a42e311') in 0.036279 seconds -======================================================================== -Received Import Request. - Time since last request: 0.529336 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/Materials/Eye 6.mat - artifactKey: Guid(f311686bb872477419fc88114a218b7e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/Materials/Eye 6.mat using Guid(f311686bb872477419fc88114a218b7e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ad358b49591e132bafac52d554385627') in 0.035092 seconds -======================================================================== -Received Import Request. - Time since last request: 0.466340 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/Materials/Eye 7.mat - artifactKey: Guid(dcc880a7f1353ae44a9d3d8218a874d0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/Materials/Eye 7.mat using Guid(dcc880a7f1353ae44a9d3d8218a874d0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '882b3dfd68a595282ca2b1e1a94c66a2') in 0.079381 seconds -======================================================================== -Received Import Request. - Time since last request: 0.444592 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/Materials/Eye 8.mat - artifactKey: Guid(8d772caff95412b4f8367b75fb90945f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/Materials/Eye 8.mat using Guid(8d772caff95412b4f8367b75fb90945f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '64b234b9a80fb77df606fb94805af8b5') in 0.080727 seconds -======================================================================== -Received Import Request. - Time since last request: 0.448640 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/Materials/Eye 9.mat - artifactKey: Guid(13c4fb4ba6169724ba5cba73a8902903) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/Materials/Eye 9.mat using Guid(13c4fb4ba6169724ba5cba73a8902903) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f59e4058dbfdad54ae7c6dd7382ea264') in 0.035533 seconds -======================================================================== -Received Import Request. - Time since last request: 0.573928 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/Materials/Eye 10.mat - artifactKey: Guid(fc9f0c43df14c29408790b9963bc3b0f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/Materials/Eye 10.mat using Guid(fc9f0c43df14c29408790b9963bc3b0f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1e2f197a6828ecca0a1c1c2851556fa8') in 0.036909 seconds -======================================================================== -Received Import Request. - Time since last request: 79.521200 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/01.asset - artifactKey: Guid(b6b33070b154c074484a24062fe0fe7b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/01.asset using Guid(b6b33070b154c074484a24062fe0fe7b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '88d68c6a659cb7e1f73e22444aa4f799') in 0.013877 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000049 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/04.asset - artifactKey: Guid(0f8bdff4e4cbd084995111194da21981) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/04.asset using Guid(0f8bdff4e4cbd084995111194da21981) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9f6fb10af61c29aa8c26b6cb7d3a1332') in 0.006330 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000029 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/07.asset - artifactKey: Guid(512f8c1ff8d502449afb04f317973315) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/07.asset using Guid(512f8c1ff8d502449afb04f317973315) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fca5c56e4b57d51f613fdfd6b2536a21') in 0.010754 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000037 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/03.asset - artifactKey: Guid(ead705a6359e72f46b514f50bf57f613) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/03.asset using Guid(ead705a6359e72f46b514f50bf57f613) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '85116cd9baa5fb458fe0e041bba55bf0') in 0.012413 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000034 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/08.asset - artifactKey: Guid(839598611dbaef44c8cccfa50bf50e91) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/08.asset using Guid(839598611dbaef44c8cccfa50bf50e91) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a8091c25993e9c2c74f723fa82358bf8') in 0.006685 seconds -======================================================================== -Received Import Request. - Time since last request: 18.154398 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/01.prefab - artifactKey: Guid(1e41649e61cf8de4c929834aa06cce1b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/01.prefab using Guid(1e41649e61cf8de4c929834aa06cce1b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0c0a88bd060517c7875f3e19aa5b9255') in 0.045421 seconds -======================================================================== -Received Import Request. - Time since last request: 2.887778 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/01.prefab - artifactKey: Guid(1e41649e61cf8de4c929834aa06cce1b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/01.prefab using Guid(1e41649e61cf8de4c929834aa06cce1b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd14f35bcfa9ce38a11c580a44015c228') in 0.043137 seconds -======================================================================== -Received Import Request. - Time since last request: 2.320764 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/01.prefab - artifactKey: Guid(1e41649e61cf8de4c929834aa06cce1b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/01.prefab using Guid(1e41649e61cf8de4c929834aa06cce1b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '323971394dd94c9cdb18b81763a669a1') in 0.036046 seconds -======================================================================== -Received Import Request. - Time since last request: 71.332896 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/02.prefab - artifactKey: Guid(dd1ab08883ead8d4b91a41c0675995b0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/02.prefab using Guid(dd1ab08883ead8d4b91a41c0675995b0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bb68bf9847f55212b42303af6fed1672') in 0.042802 seconds -======================================================================== -Received Import Request. - Time since last request: 6.351813 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/02.prefab - artifactKey: Guid(dd1ab08883ead8d4b91a41c0675995b0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/02.prefab using Guid(dd1ab08883ead8d4b91a41c0675995b0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0016e56d00b5a97e3021c49b1c5caa51') in 0.043225 seconds -======================================================================== -Received Import Request. - Time since last request: 2.202348 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/02.prefab - artifactKey: Guid(dd1ab08883ead8d4b91a41c0675995b0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/02.prefab using Guid(dd1ab08883ead8d4b91a41c0675995b0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '35e82defe65b6b3ed802564f48343b7e') in 0.033421 seconds -======================================================================== -Received Import Request. - Time since last request: 29.109850 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/03.prefab - artifactKey: Guid(caeb1dbcef457f04a9bfbb4ffaae019a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/03.prefab using Guid(caeb1dbcef457f04a9bfbb4ffaae019a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '427660eb98e2ce7a528ce9836a86a05a') in 0.044325 seconds -======================================================================== -Received Import Request. - Time since last request: 2.869657 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/03.prefab - artifactKey: Guid(caeb1dbcef457f04a9bfbb4ffaae019a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/03.prefab using Guid(caeb1dbcef457f04a9bfbb4ffaae019a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '203f1f8288521d841d36ceefb04c2ec6') in 0.046454 seconds -======================================================================== -Received Import Request. - Time since last request: 1.990510 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/03.prefab - artifactKey: Guid(caeb1dbcef457f04a9bfbb4ffaae019a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/03.prefab using Guid(caeb1dbcef457f04a9bfbb4ffaae019a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5496552826520dd2d1d4b74fc567d9f4') in 0.035459 seconds -======================================================================== -Received Import Request. - Time since last request: 32.607909 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/04.prefab - artifactKey: Guid(d698ab8931674c8429a18a6a3389e0b2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/04.prefab using Guid(d698ab8931674c8429a18a6a3389e0b2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '024c7841035760e91a9f6c941fba2180') in 0.043062 seconds -======================================================================== -Received Import Request. - Time since last request: 2.497345 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/04.prefab - artifactKey: Guid(d698ab8931674c8429a18a6a3389e0b2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/04.prefab using Guid(d698ab8931674c8429a18a6a3389e0b2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd1907b826a8e0237db96c1388db613e7') in 0.046049 seconds -======================================================================== -Received Import Request. - Time since last request: 2.529191 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/04.prefab - artifactKey: Guid(d698ab8931674c8429a18a6a3389e0b2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/04.prefab using Guid(d698ab8931674c8429a18a6a3389e0b2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd27d25d5cd05d09c43cf29e16cb92992') in 0.035755 seconds -======================================================================== -Received Import Request. - Time since last request: 40.029224 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/05.prefab - artifactKey: Guid(fcabbd4d2c94b954c961bdee18f0620b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/05.prefab using Guid(fcabbd4d2c94b954c961bdee18f0620b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f9d593e3328973af0a592521202f00f6') in 0.043174 seconds -======================================================================== -Received Import Request. - Time since last request: 2.217920 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/05.prefab - artifactKey: Guid(fcabbd4d2c94b954c961bdee18f0620b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/05.prefab using Guid(fcabbd4d2c94b954c961bdee18f0620b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9ad58410ebf94f0e6e8e7ba4e0211dde') in 0.042743 seconds -======================================================================== -Received Import Request. - Time since last request: 1.816464 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/05.prefab - artifactKey: Guid(fcabbd4d2c94b954c961bdee18f0620b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/05.prefab using Guid(fcabbd4d2c94b954c961bdee18f0620b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '30f9c0dc0ad117e58ac49a3ab25222ab') in 0.035260 seconds -======================================================================== -Received Import Request. - Time since last request: 35.491818 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/06.prefab - artifactKey: Guid(2ce91a382ee892e4eb9afe21685bf4f5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/06.prefab using Guid(2ce91a382ee892e4eb9afe21685bf4f5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '34cf63094afbcc815d3dc16eccdcb308') in 0.046869 seconds -======================================================================== -Received Import Request. - Time since last request: 1.847224 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/06.prefab - artifactKey: Guid(2ce91a382ee892e4eb9afe21685bf4f5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/06.prefab using Guid(2ce91a382ee892e4eb9afe21685bf4f5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e96e91c944426436401a53ba2437282a') in 0.043322 seconds -======================================================================== -Received Import Request. - Time since last request: 2.632573 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/06.prefab - artifactKey: Guid(2ce91a382ee892e4eb9afe21685bf4f5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/06.prefab using Guid(2ce91a382ee892e4eb9afe21685bf4f5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9a2c6cd3fcb0eb8867b2ea5a25a5de54') in 0.034139 seconds -======================================================================== -Received Import Request. - Time since last request: 30.784486 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/07.prefab - artifactKey: Guid(9ec0b0f8a6792fc4290d7ee947cb00e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/07.prefab using Guid(9ec0b0f8a6792fc4290d7ee947cb00e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'df02fac8cb47ab0f6830af534bd65d6e') in 0.042574 seconds -======================================================================== -Received Import Request. - Time since last request: 2.695985 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/07.prefab - artifactKey: Guid(9ec0b0f8a6792fc4290d7ee947cb00e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/07.prefab using Guid(9ec0b0f8a6792fc4290d7ee947cb00e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '792d1bb516ba0aa92bcf513380ff312a') in 0.041234 seconds -======================================================================== -Received Import Request. - Time since last request: 2.919945 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/07.prefab - artifactKey: Guid(9ec0b0f8a6792fc4290d7ee947cb00e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/07.prefab using Guid(9ec0b0f8a6792fc4290d7ee947cb00e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '60231c06f3b6c793e8cda777a76f1ddd') in 0.035278 seconds -======================================================================== -Received Import Request. - Time since last request: 26.839419 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/08.prefab - artifactKey: Guid(228c7bfc689f2d640b7a55c70695c295) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/08.prefab using Guid(228c7bfc689f2d640b7a55c70695c295) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c0567bf73fd3ac61a0933c6e3fa054c9') in 0.042751 seconds -======================================================================== -Received Import Request. - Time since last request: 2.854985 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/08.prefab - artifactKey: Guid(228c7bfc689f2d640b7a55c70695c295) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/08.prefab using Guid(228c7bfc689f2d640b7a55c70695c295) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f08a4d39054c37054c74174de41801d6') in 0.045046 seconds -======================================================================== -Received Import Request. - Time since last request: 2.850170 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/08.prefab - artifactKey: Guid(228c7bfc689f2d640b7a55c70695c295) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/08.prefab using Guid(228c7bfc689f2d640b7a55c70695c295) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '27a727fd96a6031171096d727c5b4637') in 0.033093 seconds -======================================================================== -Received Import Request. - Time since last request: 43.450323 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/09.prefab - artifactKey: Guid(c2f12f2b668515c4d8c46c5a892737c1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/09.prefab using Guid(c2f12f2b668515c4d8c46c5a892737c1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f3610685674580b163050e583c7cb77c') in 0.044212 seconds -======================================================================== -Received Import Request. - Time since last request: 2.201950 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/09.prefab - artifactKey: Guid(c2f12f2b668515c4d8c46c5a892737c1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/09.prefab using Guid(c2f12f2b668515c4d8c46c5a892737c1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '947f6167a9c389ca6b1fbda4712c5445') in 0.041130 seconds -======================================================================== -Received Import Request. - Time since last request: 1.988793 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/09.prefab - artifactKey: Guid(c2f12f2b668515c4d8c46c5a892737c1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/09.prefab using Guid(c2f12f2b668515c4d8c46c5a892737c1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1aea9fa1b16bedacf79fa7f25a664b02') in 0.032888 seconds -======================================================================== -Received Import Request. - Time since last request: 23.679844 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/10.prefab - artifactKey: Guid(264be9105ee6330469f7844678e78bc9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/10.prefab using Guid(264be9105ee6330469f7844678e78bc9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd5302cc1981b8f30be686f9cbd5a5ab2') in 0.042751 seconds -======================================================================== -Received Import Request. - Time since last request: 2.824078 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/10.prefab - artifactKey: Guid(264be9105ee6330469f7844678e78bc9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/10.prefab using Guid(264be9105ee6330469f7844678e78bc9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '72e29c1c38417b82a1affe9bff356697') in 0.043751 seconds -======================================================================== -Received Import Request. - Time since last request: 2.101572 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/10.prefab - artifactKey: Guid(264be9105ee6330469f7844678e78bc9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/10.prefab using Guid(264be9105ee6330469f7844678e78bc9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c0a228f175de03b7753b5a477d0f0754') in 0.033744 seconds -======================================================================== -Received Import Request. - Time since last request: 25.911722 seconds. - path: Assets/Daz3D/Races/Ozias/Female/Body.prefab - artifactKey: Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Female/Body.prefab using Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bd4abf4b57c043878b2b49cf69c06ae7') in 6.042037 seconds -======================================================================== -Received Import Request. - Time since last request: 6.804646 seconds. - path: Assets/Daz3D/Races/Ozias/Female/Body.prefab - artifactKey: Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Female/Body.prefab using Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c6563b606f523eb6f8c263d42d1eb8d9') in 6.483820 seconds -======================================================================== -Received Import Request. - Time since last request: 17.207839 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Body.prefab - artifactKey: Guid(ddf6a9dc3b4549f4b911f7cf7b63f026) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Body.prefab using Guid(ddf6a9dc3b4549f4b911f7cf7b63f026) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '69c5d66d525512190712a9fdf2ade849') in 1.718820 seconds -======================================================================== -Received Import Request. - Time since last request: 4.940806 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials - artifactKey: Guid(7a01688cacecd5843a3fdd5416d85397) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials using Guid(7a01688cacecd5843a3fdd5416d85397) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9ef156865cbe1f3fca5dfb9d3eb91f04') in 0.007903 seconds -======================================================================== -Received Import Request. - Time since last request: 0.497945 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/Arms.mat - artifactKey: Guid(827df739485ff034eb6232ab093b227d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/Arms.mat using Guid(827df739485ff034eb6232ab093b227d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '59bda1545fed0420bf59fbde1c7010ac') in 0.063322 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000042 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-FaceN.tif - artifactKey: Guid(6ef26e120ec0fef4a8fe9c0847035dd0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-FaceN.tif using Guid(6ef26e120ec0fef4a8fe9c0847035dd0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '73d7ad20471bc521b3170f7a385b6fa9') in 0.038656 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000062 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-FaceS.jpg - artifactKey: Guid(1ada25d5a6f7b264ab4183fd8bc432c8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-FaceS.jpg using Guid(1ada25d5a6f7b264ab4183fd8bc432c8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7b427ef213eac7bf253b63290e18db1b') in 0.030313 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000045 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-ArmsB.jpg - artifactKey: Guid(41a32110b979fee4d82e087404d33b67) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-ArmsB.jpg using Guid(41a32110b979fee4d82e087404d33b67) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6f79fdd387b8bb8c1f38c426b20297f2') in 0.023689 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000037 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-TorsoSSS.jpg - artifactKey: Guid(9c60de83049039746957479270c0325e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-TorsoSSS.jpg using Guid(9c60de83049039746957479270c0325e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '96b8772e8e4efb5596605b2a9da4ce4c') in 0.021556 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000031 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-TorsoN.tif - artifactKey: Guid(7d6c7fd7a35eef14c83d9f7ad4c5964c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-TorsoN.tif using Guid(7d6c7fd7a35eef14c83d9f7ad4c5964c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6536ae8e92d51da29a8fbaf99e8b1dce') in 0.025483 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000033 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-EyesB.jpg - artifactKey: Guid(6d4b0b90714edbb4aaef0d4937517351) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-EyesB.jpg using Guid(6d4b0b90714edbb4aaef0d4937517351) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '117a52dac6205a8ea472365c809bf2a8') in 0.023983 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000037 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-Legs.jpg - artifactKey: Guid(2f542f4d891c2604b8bb1fcb1245b7c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-Legs.jpg using Guid(2f542f4d891c2604b8bb1fcb1245b7c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c5ace55fdf9d882b03c916735e829779') in 0.021448 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000034 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-Torso.jpg - artifactKey: Guid(5d1a96d1ede95ae4a99a8d64dcda4513) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-Torso.jpg using Guid(5d1a96d1ede95ae4a99a8d64dcda4513) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0096f61039225d4e59a67d21773542ff') in 0.022777 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000039 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-LegsB.jpg - artifactKey: Guid(5b11c17eb232d754ba3a7b9c2462d87e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-LegsB.jpg using Guid(5b11c17eb232d754ba3a7b9c2462d87e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '08136fe998721063be33fc4c84eb3218') in 0.021292 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000044 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-LegsN.tif - artifactKey: Guid(937f3666ae205ee4e870686ba03cd066) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-LegsN.tif using Guid(937f3666ae205ee4e870686ba03cd066) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6994ab3e023c8665174976b8f3687352') in 0.026666 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000032 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-TorsoB.jpg - artifactKey: Guid(b2469b9ef44b58a41b499ab5353689c1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-TorsoB.jpg using Guid(b2469b9ef44b58a41b499ab5353689c1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fe1d038de5d3c40ea7b5b877c333e9b4') in 0.021397 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000030 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-ArmsSSS.jpg - artifactKey: Guid(ec1aa17456cc0c742bc2fc0c6b042182) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-ArmsSSS.jpg using Guid(ec1aa17456cc0c742bc2fc0c6b042182) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cdcd8e55c046aec41145626d36a6f27e') in 0.023106 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000034 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-Arms.jpg - artifactKey: Guid(dcd049f5dcf040f4fb06573dba91c003) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-Arms.jpg using Guid(dcd049f5dcf040f4fb06573dba91c003) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5a266f93f5a7a92eb236ffccb61f73db') in 0.023406 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000031 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-EyesN.tif - artifactKey: Guid(ebf2356e8c5b299498fd2acaee61ddae) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-EyesN.tif using Guid(ebf2356e8c5b299498fd2acaee61ddae) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '72502095fbc99ba2107252b0d4f894ad') in 0.025268 seconds -======================================================================== -Received Import Request. - Time since last request: 9.254545 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias_Mouth.jpg - artifactKey: Guid(a554e425030fe974ab884865ee5776dd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias_Mouth.jpg using Guid(a554e425030fe974ab884865ee5776dd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '10016a8756eb6201b8a264673af09b76') in 0.029471 seconds -======================================================================== -Received Import Request. - Time since last request: 6.751853 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/Irises.mat - artifactKey: Guid(58fe4e12f6efb8243834690b2e4c6425) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/Irises.mat using Guid(58fe4e12f6efb8243834690b2e4c6425) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'df04344b798c266d1ec232997f8df5fd') in 0.025852 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/Teeth.mat - artifactKey: Guid(7c12c913a7a60e8458d09dcc5819d8bc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/Teeth.mat using Guid(7c12c913a7a60e8458d09dcc5819d8bc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'efd8d122f5a8c036d9b2ece43fc5114e') in 0.048958 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000043 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/Mouth.mat - artifactKey: Guid(afe54184a20727a4fa53e3aa2e56a1ba) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/Mouth.mat using Guid(afe54184a20727a4fa53e3aa2e56a1ba) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3687d82b40550fb8f8227d9e38622d60') in 0.047144 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000035 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/Toenails.mat - artifactKey: Guid(e22e84a20ec78df4daad487b76ae2498) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/Toenails.mat using Guid(e22e84a20ec78df4daad487b76ae2498) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '03959fced3bb34712ce38ac69169ba60') in 0.055379 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000042 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/Sclera.mat - artifactKey: Guid(a2e35e9a68b631547bca6fd833b40220) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/Sclera.mat using Guid(a2e35e9a68b631547bca6fd833b40220) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '253baae6667afc4bf2ce2ec428d2e3df') in 0.018416 seconds -======================================================================== -Received Import Request. - Time since last request: 40.264766 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Body.prefab - artifactKey: Guid(ddf6a9dc3b4549f4b911f7cf7b63f026) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Body.prefab using Guid(ddf6a9dc3b4549f4b911f7cf7b63f026) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '256f7fe2957cf734c7e496713c5aea90') in 1.733205 seconds -======================================================================== -Received Import Request. - Time since last request: 51.629792 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Body.prefab - artifactKey: Guid(ddf6a9dc3b4549f4b911f7cf7b63f026) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Body.prefab using Guid(ddf6a9dc3b4549f4b911f7cf7b63f026) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0f443f9be6d441b0494eb277dfa55873') in 1.676481 seconds -======================================================================== -Received Import Request. - Time since last request: 31.512394 seconds. - path: Assets/Daz3D/Races/Ozias/Female/Materials/Irises.mat - artifactKey: Guid(5d6cecd733d5e424dbeafc6aa967e57e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Female/Materials/Irises.mat using Guid(5d6cecd733d5e424dbeafc6aa967e57e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2cd2cee2ad99faf53ed56fdb3d0194f5') in 0.019497 seconds -======================================================================== -Received Import Request. - Time since last request: 4.421309 seconds. - path: Assets/Daz3D/Races/Ozias/Female/Materials/Mouth.mat - artifactKey: Guid(fdb3d294021935c4d887e95836a88b9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Female/Materials/Mouth.mat using Guid(fdb3d294021935c4d887e95836a88b9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3b4b13b23002e5b58ea6e5401d68488f') in 0.020702 seconds -======================================================================== -Received Import Request. - Time since last request: 237.412418 seconds. - path: Assets/Daz3D/_Cangfa - artifactKey: Guid(045fee32e01ce404c8494c78e03109a1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_Cangfa using Guid(045fee32e01ce404c8494c78e03109a1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1318f811078cdd2ee9eabcac056e119e') in 0.008179 seconds -======================================================================== -Received Import Request. - Time since last request: 0.314671 seconds. - path: Assets/Daz3D/_KeyA - artifactKey: Guid(4c3a6b5cd78d8994fa70a3e0003abc4a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_KeyA using Guid(4c3a6b5cd78d8994fa70a3e0003abc4a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0fdda2f39079d2e87f858d352cddda8c') in 0.007320 seconds -======================================================================== -Received Import Request. - Time since last request: 300.002875 seconds. - path: Assets/Daz3D/_StreetMouse/_StreetMouse.fbx - artifactKey: Guid(d30237002668f7249876a911d33bcb65) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/_StreetMouse.fbx using Guid(d30237002668f7249876a911d33bcb65) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd6068bff0c207ef0c7f9513625f6e7d3') in 0.266939 seconds -======================================================================== -Received Import Request. - Time since last request: 2.470427 seconds. - path: Assets/Daz3D/_StreetMouse/Mouse_Fur/Arms_1.mat - artifactKey: Guid(c3ac2472fd40751428bcbe8f9e6dda1f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Mouse_Fur/Arms_1.mat using Guid(c3ac2472fd40751428bcbe8f9e6dda1f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7609f2ed54bb6b88e4fbacc7bec14fe1') in 0.021985 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000044 seconds. - path: Assets/Daz3D/_StreetMouse/Mouse_Fur/Mouse_G8FLegs-1003T2.jpg - artifactKey: Guid(04b50874b74eb154d847e962ae354a29) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Mouse_Fur/Mouse_G8FLegs-1003T2.jpg using Guid(04b50874b74eb154d847e962ae354a29) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0b317e7de7737c6de99052a601af3ff5') in 0.017620 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000033 seconds. - path: Assets/Daz3D/_StreetMouse/Mouse_Fur/Mouse_G8FArm-1004T2.jpg - artifactKey: Guid(351967a0943ceda40a1155b5bae8d5c1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Mouse_Fur/Mouse_G8FArm-1004T2.jpg using Guid(351967a0943ceda40a1155b5bae8d5c1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '657501fee48db01b84843de140070f6f') in 0.019959 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000033 seconds. - path: Assets/Daz3D/_StreetMouse/Mouse_Fur/Torso_1.mat - artifactKey: Guid(95360dbb87764c3409763cae06e143b0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Mouse_Fur/Torso_1.mat using Guid(95360dbb87764c3409763cae06e143b0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '79febfa3bef0b39662a1df69d60af6f1') in 0.035399 seconds -======================================================================== -Received Import Request. - Time since last request: 10.138147 seconds. - path: Assets/Daz3D/_StreetMouse/Mouse_Tail_Fur/Mouse_G8FTail-T2.jpg - artifactKey: Guid(5de42f681d46471488501c1bad82e910) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Mouse_Tail_Fur/Mouse_G8FTail-T2.jpg using Guid(5de42f681d46471488501c1bad82e910) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5023b397f0039a07ff8a0689a7b016a8') in 0.018756 seconds -======================================================================== -Received Import Request. - Time since last request: 4.573496 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8FemaleEyelashes/Eyelashes.mat - artifactKey: Guid(67b63c53cc2909f4587d2d651d646a57) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8FemaleEyelashes/Eyelashes.mat using Guid(67b63c53cc2909f4587d2d651d646a57) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '189476abf60eb57f43b32bf2750bacda') in 0.018852 seconds -======================================================================== -Received Import Request. - Time since last request: 2.014889 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Arms.mat - artifactKey: Guid(19f1994c6087f7240836f7329b1f0d39) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Arms.mat using Guid(19f1994c6087f7240836f7329b1f0d39) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9ad16c5315c94c8a21405cddbbcf811d') in 0.092174 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000046 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8F-Eye-1006B.jpg - artifactKey: Guid(f3ba9ac4d5da2914e86f31b19c4cb068) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8F-Eye-1006B.jpg using Guid(f3ba9ac4d5da2914e86f31b19c4cb068) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6be0dcf1926f1a5122436673268204b2') in 0.027421 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000044 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FLegs-1003B.jpg - artifactKey: Guid(bfa6602fb4a009d418fcdc94ac4a052b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FLegs-1003B.jpg using Guid(bfa6602fb4a009d418fcdc94ac4a052b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2ec9ce7b0255ad4f223c63d843dbfb7e') in 0.018229 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000033 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FLegs-1003T2.jpg - artifactKey: Guid(177c8e6db77dd7244b423222a62dfa2d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FLegs-1003T2.jpg using Guid(177c8e6db77dd7244b423222a62dfa2d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ecbef6a03a67692eb8ab3d810d51d978') in 0.017697 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000034 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FFace-1001B_nm.png - artifactKey: Guid(97bc3b03d34e5b943946756427f4ae29) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FFace-1001B_nm.png using Guid(97bc3b03d34e5b943946756427f4ae29) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bec9c54cb8b68fc87c8ae8762005f7b5') in 0.018584 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000031 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/EyeSocket.mat - artifactKey: Guid(0c1bccc55b8094c47951d362c7981fc9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/EyeSocket.mat using Guid(0c1bccc55b8094c47951d362c7981fc9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '394fc5927d87cb503559c4b2399b15dd') in 0.025829 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000031 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FArm-1004B_nm.png - artifactKey: Guid(d2ba6c14e93c226419a2ab333d5bf749) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FArm-1004B_nm.png using Guid(d2ba6c14e93c226419a2ab333d5bf749) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e72a3195d51fbfc99ed6ebb13b4a88f0') in 0.018148 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000033 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Ears.mat - artifactKey: Guid(e79dfa915a2f6164daf63ddacdf4940f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Ears.mat using Guid(e79dfa915a2f6164daf63ddacdf4940f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b2d17af10cd9a6c3bec2844708b59f34') in 0.022277 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000039 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Face.mat - artifactKey: Guid(594338443798d7142a0a34c7babfe304) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Face.mat using Guid(594338443798d7142a0a34c7babfe304) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4397949c42d7f4dad5069fa09caa887b') in 0.023795 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000046 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/EyeMoisture.mat - artifactKey: Guid(8f4b62d109a28384f91a09c85728d6ce) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/EyeMoisture.mat using Guid(8f4b62d109a28384f91a09c85728d6ce) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4625734631468fb90c08ddebcd20fa3f') in 0.015538 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000033 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FFace-1001T2.jpg - artifactKey: Guid(cbe1d23d3aeb2144d8090dec19f7a07d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FFace-1001T2.jpg using Guid(cbe1d23d3aeb2144d8090dec19f7a07d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2f83e15ea36a7c801c6dfb63d2257e76') in 0.014417 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000032 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FArm-1004Trlu2.jpg - artifactKey: Guid(24723c36be8aa3d44b2098dc5a7614ae) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FArm-1004Trlu2.jpg using Guid(24723c36be8aa3d44b2098dc5a7614ae) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5f1da7e9a82d6c8e1169ed35455e4a65') in 0.016660 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000034 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Fingernails.mat - artifactKey: Guid(71b7f570f3232ab49aaf3bee2b26f22e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Fingernails.mat using Guid(71b7f570f3232ab49aaf3bee2b26f22e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ad1c0aaaaab5349379d74485b24d2ac6') in 0.025769 seconds -======================================================================== -Received Import Request. - Time since last request: 2.341239 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FLegs-1003Trlu2.jpg - artifactKey: Guid(6e36dedcf9c26a34aa9afb169c23be35) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FLegs-1003Trlu2.jpg using Guid(6e36dedcf9c26a34aa9afb169c23be35) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '492bddc10e827ee06b5eeb6ad600120f') in 0.015790 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000034 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Pupils.mat - artifactKey: Guid(0ec08f5b6787fb647a5665cdff84c6b2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Pupils.mat using Guid(0ec08f5b6787fb647a5665cdff84c6b2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4ffdbaaf86a260da1381d94bb8e31c65') in 0.024453 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000031 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FTorso-1002S.jpg - artifactKey: Guid(2baa8d63c697c004fa1654499c885b60) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FTorso-1002S.jpg using Guid(2baa8d63c697c004fa1654499c885b60) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cc336000978429477a2ddd1d4b5909c2') in 0.018913 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000034 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FTorso-1002Trlu2.jpg - artifactKey: Guid(eed931b999dce5c4ba07722d5816e197) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FTorso-1002Trlu2.jpg using Guid(eed931b999dce5c4ba07722d5816e197) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'aee44700b1ac0226ea9caafe927d9e1a') in 0.021405 seconds -======================================================================== -Received Import Request. - Time since last request: 1.292998 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Teeth.mat - artifactKey: Guid(c96874d211403e747b570d1db09130b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Teeth.mat using Guid(c96874d211403e747b570d1db09130b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '48a15a89a1952463500de99e34b8a9eb') in 0.022648 seconds -======================================================================== -Received Import Request. - Time since last request: 5.506193 seconds. - path: Assets/Daz3D/_StreetMouse/G8FMouseTail_Shell/Mouse_G8FTail-SkinBump.jpg - artifactKey: Guid(7caf93b13a2e99649afe47f3b35e4d13) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/G8FMouseTail_Shell/Mouse_G8FTail-SkinBump.jpg using Guid(7caf93b13a2e99649afe47f3b35e4d13) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e0c93b1b92547cd6db9b99da29510441') in 0.018185 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000030 seconds. - path: Assets/Daz3D/_StreetMouse/G8FMouseTail_Shell/Mouse_G8FTail-SkinMask.jpg - artifactKey: Guid(c383347efff24a8499425ebe845e2919) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/G8FMouseTail_Shell/Mouse_G8FTail-SkinMask.jpg using Guid(c383347efff24a8499425ebe845e2919) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '904f5863455d6f6ac6efa9fd6ffc89a2') in 0.018975 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000042 seconds. - path: Assets/Daz3D/_StreetMouse/G8FMouseTail_Shell/Mouse_G8FTail-SkinTex.jpg - artifactKey: Guid(80da728cf98473e4694007c56e4ef3eb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/G8FMouseTail_Shell/Mouse_G8FTail-SkinTex.jpg using Guid(80da728cf98473e4694007c56e4ef3eb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5a851fae4981224332711fc3fa1b684e') in 0.016948 seconds -======================================================================== -Received Import Request. - Time since last request: 24.329713 seconds. - path: Assets/Daz3D/_StreetMouse/G8FMouseTail - artifactKey: Guid(e64a2a2503eea5f4d996f5e9093bbb0e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/G8FMouseTail using Guid(e64a2a2503eea5f4d996f5e9093bbb0e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '04386278b4ba13e0661265af14e8be2d') in 0.007398 seconds -======================================================================== -Received Import Request. - Time since last request: 0.429132 seconds. - path: Assets/Daz3D/_StreetMouse/G8FMouseTail/Mouse_G8FTail-B.jpg - artifactKey: Guid(e737aaf5f7382f0408831bfe7081488c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/G8FMouseTail/Mouse_G8FTail-B.jpg using Guid(e737aaf5f7382f0408831bfe7081488c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7b7ddba3cfde8b1bafcf4634d4866180') in 0.020163 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000029 seconds. - path: Assets/Daz3D/_StreetMouse/G8FMouseTail/Mouse_Tail.mat - artifactKey: Guid(ff3f226134062ff4da7a46fba3a8c577) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/G8FMouseTail/Mouse_Tail.mat using Guid(ff3f226134062ff4da7a46fba3a8c577) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ed69a363de626208bcb04753f9945861') in 0.027821 seconds -======================================================================== -Received Import Request. - Time since last request: 29.887867 seconds. - path: Assets/Daz3D/_StreetMouse/ExportTextures/Mouse_G8F-Eye-1006B_nm.png - artifactKey: Guid(232033312fcbb4c4da9c340bf1fced58) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/ExportTextures/Mouse_G8F-Eye-1006B_nm.png using Guid(232033312fcbb4c4da9c340bf1fced58) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2129c4feafa72e4279e54660111ea128') in 0.019208 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000043 seconds. - path: Assets/Daz3D/_StreetMouse/ExportTextures/Mouse_G8FTorso-1002B_nm.png - artifactKey: Guid(5aeb0978a5d81eb41af2f6e2aed70e52) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/ExportTextures/Mouse_G8FTorso-1002B_nm.png using Guid(5aeb0978a5d81eb41af2f6e2aed70e52) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dc7f501cf7dc83aa8d6570606895cc9e') in 0.014325 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000048 seconds. - path: Assets/Daz3D/_StreetMouse/ExportTextures/Mouse_G8FLegs-1003B_nm.png - artifactKey: Guid(9fee2b5cf0ab40b4fb699fed9aa1679b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/ExportTextures/Mouse_G8FLegs-1003B_nm.png using Guid(9fee2b5cf0ab40b4fb699fed9aa1679b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2554a8ac3f44d754144fc4d077f963f0') in 0.015678 seconds -======================================================================== -Received Import Request. - Time since last request: 0.688860 seconds. - path: Assets/Daz3D/_StreetMouse/_StreetMouse_Prefab/Daz3D__StreetMouse.prefab - artifactKey: Guid(163e3e98cb2b47041bab3bde63394ef5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/_StreetMouse_Prefab/Daz3D__StreetMouse.prefab using Guid(163e3e98cb2b47041bab3bde63394ef5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '12916573f4446f74d12449b086c05d44') in 0.118085 seconds -======================================================================== -Received Import Request. - Time since last request: 77.698648 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Mouth.mat - artifactKey: Guid(9a90aa09437dab54591103b90e74997a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Mouth.mat using Guid(9a90aa09437dab54591103b90e74997a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3e747df892fe08000cadc1dcc7d2aac5') in 0.015818 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000029 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Teeth.mat - artifactKey: Guid(c96874d211403e747b570d1db09130b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Teeth.mat using Guid(c96874d211403e747b570d1db09130b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fd8f56c6d921504ce9176e0de55e4648') in 0.021308 seconds -======================================================================== -Received Import Request. - Time since last request: 22.680976 seconds. - path: Assets/Daz3D/_StreetMouse/_StreetMouse.fbx - artifactKey: Guid(d30237002668f7249876a911d33bcb65) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/_StreetMouse.fbx using Guid(d30237002668f7249876a911d33bcb65) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ff4b27ed61ce4ef1211d2083da4a2a8c') in 0.173910 seconds -======================================================================== -Received Import Request. - Time since last request: 2.224532 seconds. - path: Assets/Daz3D/_StreetMouse/Materials - artifactKey: Guid(5961af6e1d30dad4c8b19b618ba171a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Materials using Guid(5961af6e1d30dad4c8b19b618ba171a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '93edfe5808004784ba5c2887e9ef5f18') in 0.002327 seconds -======================================================================== -Received Import Request. - Time since last request: 11.726024 seconds. - path: Assets/Daz3D/Races/Rat/[RACE] Rat.asset - artifactKey: Guid(a04abbaa1e9ee144588b9c65a3b75187) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/[RACE] Rat.asset using Guid(a04abbaa1e9ee144588b9c65a3b75187) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b1be29e10081855c6cfef929e2bd3544') in 0.956302 seconds -======================================================================== -Received Import Request. - Time since last request: 11.487627 seconds. - path: Assets/Daz3D/Races/Rat/Female - artifactKey: Guid(f1fc925dc5ec6a84d9772f915751ec0c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female using Guid(f1fc925dc5ec6a84d9772f915751ec0c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '343b29e78ba57759594a0dca12b43ef2') in 0.007237 seconds -======================================================================== -Received Import Request. - Time since last request: 9.678373 seconds. - path: Assets/Daz3D/Races/Goblin/Female/Body.prefab - artifactKey: Guid(9b5fb873976e0054a854b443fec66f42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Goblin/Female/Body.prefab using Guid(9b5fb873976e0054a854b443fec66f42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '22a66b0411b42059ae563ed53ce8d753') in 6.329279 seconds -======================================================================== -Received Import Request. - Time since last request: 1.616203 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e2ef349feff4f3d40a7e56ef43ff2230') in 6.157993 seconds -======================================================================== -Received Import Request. - Time since last request: 15.092174 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a39b59c3545a37c6ddfb7a756647017b') in 6.262918 seconds -======================================================================== -Received Import Request. - Time since last request: 5.169258 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '013a6abe639c13670e5896758182c1da') in 6.148242 seconds -======================================================================== -Received Import Request. - Time since last request: 1.451992 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5531dd306945a7bea0145e21a7232adc') in 6.530849 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000053 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '97c3a882ebeb58e6510d17e085abaab1') in 6.537216 seconds -======================================================================== -Received Import Request. - Time since last request: 0.676701 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '855b155d65a97358f1f9fd61dbbadf5e') in 6.353601 seconds -======================================================================== -Received Import Request. - Time since last request: 4.178196 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '118d306f4d5c21fc02fe34684d760f03') in 6.310308 seconds -======================================================================== -Received Import Request. - Time since last request: 2.122257 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '313ebfea39539024643bf70f802682fa') in 6.309807 seconds -======================================================================== -Received Import Request. - Time since last request: 2.597240 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9d2e485c5633f2ed043df4e4ee53b338') in 6.489339 seconds -======================================================================== -Received Import Request. - Time since last request: 3.127420 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '899b91225cc51d7f34bd2c2dd9f65cc6') in 1.697555 seconds -======================================================================== -Received Import Request. - Time since last request: 1.675842 seconds. - path: Assets/Daz3D/Races/Rat/Female/Materials/Arms.mat - artifactKey: Guid(19f1994c6087f7240836f7329b1f0d39) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Materials/Arms.mat using Guid(19f1994c6087f7240836f7329b1f0d39) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a16b314f90b97043dbf46f0b21a62b0e') in 0.029354 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000035 seconds. - path: Assets/Daz3D/Races/Rat/Female/Materials/EyeSocket.mat - artifactKey: Guid(0c1bccc55b8094c47951d362c7981fc9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Materials/EyeSocket.mat using Guid(0c1bccc55b8094c47951d362c7981fc9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5d95dbe47c0a2a3094dad6dc3ee6c959') in 0.020595 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000032 seconds. - path: Assets/Daz3D/Races/Rat/Female/Materials/Lips.mat - artifactKey: Guid(95a4d6bd9d645924f8578e346fe12cf9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Materials/Lips.mat using Guid(95a4d6bd9d645924f8578e346fe12cf9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'effca8b678b26e38cdf37bfa532fecd5') in 0.019404 seconds -======================================================================== -Received Import Request. - Time since last request: 18.652028 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b1a8276397c3ba44cea0b176dbe5515f') in 1.684711 seconds -======================================================================== -Received Import Request. - Time since last request: 1.565495 seconds. - path: Assets/Daz3D/Races/Rat/Male - artifactKey: Guid(32b59ab02d935d2489f9061f68d37ea5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Male using Guid(32b59ab02d935d2489f9061f68d37ea5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '857215e9f92b027995c5bc7faffc89a1') in 0.006630 seconds -======================================================================== -Received Import Request. - Time since last request: 0.024529 seconds. - path: Assets/Daz3D/Races/Rat/Male/Body.prefab - artifactKey: Guid(213ee0a7d52f53a4abb60cb8c9d42b14) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Male/Body.prefab using Guid(213ee0a7d52f53a4abb60cb8c9d42b14) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '588e1613bb92f740d1cdc82048ac6734') in 1.362822 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000038 seconds. - path: Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Face_1001-Trlu2.jpg - artifactKey: Guid(f6c1e11d22bf4b64c8caf8469d41d57d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Face_1001-Trlu2.jpg using Guid(f6c1e11d22bf4b64c8caf8469d41d57d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '40fc9955ffe8066a619e98b4425d91f4') in 0.027114 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000046 seconds. - path: Assets/Daz3D/Races/Rat/Male/Materials/EyeSocket.mat - artifactKey: Guid(2c411ac08d676f04bb697f380cf8f457) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Male/Materials/EyeSocket.mat using Guid(2c411ac08d676f04bb697f380cf8f457) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a24e35e2cd2dbe9ee6d902a109374f29') in 0.065281 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000042 seconds. - path: Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Tail-B_nm.png - artifactKey: Guid(7aae23cd18e273645af65a5234dc8c55) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Tail-B_nm.png using Guid(7aae23cd18e273645af65a5234dc8c55) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '213ecd911a69c0d89929b68f35ff88eb') in 0.025141 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000033 seconds. - path: Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Torso_1002-Trlu2.jpg - artifactKey: Guid(0c52f69295e0f864fa6cdaee21b7f196) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Torso_1002-Trlu2.jpg using Guid(0c52f69295e0f864fa6cdaee21b7f196) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9283b2610b2e8a6fa0617b27f89658dc') in 0.021099 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000042 seconds. - path: Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Torso_1002-T2.jpg - artifactKey: Guid(55a0fab93003abc4f830818e01670b21) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Torso_1002-T2.jpg using Guid(55a0fab93003abc4f830818e01670b21) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5d3953d87ac4a9aa35740029ae2dc976') in 0.021201 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000035 seconds. - path: Assets/Daz3D/Races/Rat/Male/Materials/G8MRatEye-1006B_nm.png - artifactKey: Guid(ddd37e666b3227549b325164398ce06c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Male/Materials/G8MRatEye-1006B_nm.png using Guid(ddd37e666b3227549b325164398ce06c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8845c25b8a8303d34c273898b71527b3') in 0.027452 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000049 seconds. - path: Assets/Daz3D/Races/Rat/Male/Materials/G8MRatEye-1006B.jpg - artifactKey: Guid(0ccbbcfec8ce91a4f9690396934f873e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Male/Materials/G8MRatEye-1006B.jpg using Guid(0ccbbcfec8ce91a4f9690396934f873e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '38c9f11c0c39a55b6d9cc4dcd83b33e5') in 0.021783 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000049 seconds. - path: Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Face_1001-B_nm.png - artifactKey: Guid(b6454c3708ab4e7488db36143b3c4c65) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Face_1001-B_nm.png using Guid(b6454c3708ab4e7488db36143b3c4c65) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9f4ea338008447c3f860296625b46bdd') in 0.028440 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000043 seconds. - path: Assets/Daz3D/Races/Rat/Male/Materials/Fingernails.mat - artifactKey: Guid(3a565d3231f2284458300b3d6153991a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Male/Materials/Fingernails.mat using Guid(3a565d3231f2284458300b3d6153991a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '46a60e804db6f7f15be1ff422e2d0a52') in 0.053398 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000044 seconds. - path: Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Legs_1003-B_nm.png - artifactKey: Guid(d23f9366b380bd744821670bdbf74e51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Legs_1003-B_nm.png using Guid(d23f9366b380bd744821670bdbf74e51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '23a8d0841aa20035a64f72de767f7e9b') in 0.031584 seconds -======================================================================== -Received Import Request. - Time since last request: 13.232342 seconds. - path: Assets/Daz3D/Races/Rat/Female/Materials/Mouse_Tail.mat - artifactKey: Guid(ff3f226134062ff4da7a46fba3a8c577) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Materials/Mouse_Tail.mat using Guid(ff3f226134062ff4da7a46fba3a8c577) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e92b77ca660cb50dd1c4cbb4dc9be7c0') in 0.021595 seconds -======================================================================== -Received Import Request. - Time since last request: 588.446318 seconds. - path: Assets/Daz3D/Races/Rat/Female/Materials/Toenails.mat - artifactKey: Guid(dfcac921ff7d4294b835bdaa21ea59e8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Materials/Toenails.mat using Guid(dfcac921ff7d4294b835bdaa21ea59e8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '80ad9d6ca8208dc68d94aad537ce41be') in 0.030273 seconds -======================================================================== -Received Import Request. - Time since last request: 61270.427458 seconds. - path: Assets/Daz3D/Races/Rat/Female/Materials/Fingernails.mat - artifactKey: Guid(71b7f570f3232ab49aaf3bee2b26f22e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Materials/Fingernails.mat using Guid(71b7f570f3232ab49aaf3bee2b26f22e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cc0d59d15adb38266d2cf4b30a1065cb') in 0.055278 seconds -======================================================================== -Received Import Request. - Time since last request: 4.462386 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3fb16be671061709aa32baf895b36efa') in 1.999835 seconds -======================================================================== -Received Import Request. - Time since last request: 23.336950 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/01.asset - artifactKey: Guid(838e746b66bae7345aaf419560ef87c8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/01.asset using Guid(838e746b66bae7345aaf419560ef87c8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f3d6870749e92499272a9504b9a356c3') in 0.015456 seconds -======================================================================== -Received Import Request. - Time since last request: 21.350140 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/Materials/Eye01.mat - artifactKey: Guid(e5b3feddc38894049b9ca87cd9563e17) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/Materials/Eye01.mat using Guid(e5b3feddc38894049b9ca87cd9563e17) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '17b92cb9b93ab1825ce0837eeb476c09') in 0.037473 seconds -======================================================================== -Received Import Request. - Time since last request: 5.221497 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 1.mat - artifactKey: Guid(e5b3feddc38894049b9ca87cd9563e17) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 1.mat using Guid(e5b3feddc38894049b9ca87cd9563e17) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c264199bf5704f500a14edf0978aad19') in 0.041906 seconds -======================================================================== -Received Import Request. - Time since last request: 10.006242 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 2.mat - artifactKey: Guid(3805560a6073fb140a0de5ad4bd8e2c6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 2.mat using Guid(3805560a6073fb140a0de5ad4bd8e2c6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '18ce36a8ed32a64e83cedea53774f303') in 0.050003 seconds -======================================================================== -Received Import Request. - Time since last request: 0.691990 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 3.mat - artifactKey: Guid(af0d4e6c560dd724ba1aa121fd4b0ddc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 3.mat using Guid(af0d4e6c560dd724ba1aa121fd4b0ddc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '669a8a6069580745e4eea0afc8153e71') in 0.032798 seconds -======================================================================== -Received Import Request. - Time since last request: 0.608831 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 4.mat - artifactKey: Guid(8e59ab9d6310f9146ba3290e6f58bbff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 4.mat using Guid(8e59ab9d6310f9146ba3290e6f58bbff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9e38bf376206b32aa7adb76479b25d1f') in 0.034118 seconds -======================================================================== -Received Import Request. - Time since last request: 0.568520 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 5.mat - artifactKey: Guid(fd457c25d81665d4f96127c683013349) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 5.mat using Guid(fd457c25d81665d4f96127c683013349) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0074cb7d2130daac207b003e7117c8ee') in 0.033852 seconds -======================================================================== -Received Import Request. - Time since last request: 0.488906 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 6.mat - artifactKey: Guid(9e132d018a785c546aa3aafc19d247b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 6.mat using Guid(9e132d018a785c546aa3aafc19d247b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '544223e24054bd0efb0d9537547453d4') in 0.034242 seconds -======================================================================== -Received Import Request. - Time since last request: 0.491765 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 7.mat - artifactKey: Guid(b4a2f32ab7155844e8bb03e64441edb6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 7.mat using Guid(b4a2f32ab7155844e8bb03e64441edb6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '43657ce6b00cfcf02db4d4fa893a355d') in 0.033309 seconds -======================================================================== -Received Import Request. - Time since last request: 0.493707 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 8.mat - artifactKey: Guid(f0efd14fb4e87da489a98ad7eb383dff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 8.mat using Guid(f0efd14fb4e87da489a98ad7eb383dff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '261cf67151444c014cd6b1cdc6a91c04') in 0.036852 seconds -======================================================================== -Received Import Request. - Time since last request: 0.429054 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 9.mat - artifactKey: Guid(0a64edbc27745f240a96173c1da5e7bc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 9.mat using Guid(0a64edbc27745f240a96173c1da5e7bc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f3465593cba05c6f2cfa2b7c4e0306b8') in 0.036630 seconds -======================================================================== -Received Import Request. - Time since last request: 1.369382 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 10.mat - artifactKey: Guid(adbcb29e80be4b84697b1033c3adf276) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 10.mat using Guid(adbcb29e80be4b84697b1033c3adf276) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ee612895547f0abbb1cae5d12c501609') in 0.037683 seconds -======================================================================== -Received Import Request. - Time since last request: 102.021195 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/01 1.asset - artifactKey: Guid(98306a916a15b0744ac39bf849ba3070) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/01 1.asset using Guid(98306a916a15b0744ac39bf849ba3070) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '451f2b88c9b3a6bdaf129226023bf1d6') in 0.012056 seconds -======================================================================== -Received Import Request. - Time since last request: 1.433112 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/01 2.asset - artifactKey: Guid(7ff794d5724e346418f34ff2126cf055) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/01 2.asset using Guid(7ff794d5724e346418f34ff2126cf055) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '43659184c0ca0894874f3d394f73898a') in 0.012778 seconds -======================================================================== -Received Import Request. - Time since last request: 1.145648 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/01 3.asset - artifactKey: Guid(b0c308ac30afc8e499984da1d1932d4a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/01 3.asset using Guid(b0c308ac30afc8e499984da1d1932d4a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'df1be309c9ec653b73cb05ade9f28977') in 0.013484 seconds -======================================================================== -Received Import Request. - Time since last request: 4.524948 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/01 4.asset - artifactKey: Guid(2ce555f9080b15546b1c398390a3fcc6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/01 4.asset using Guid(2ce555f9080b15546b1c398390a3fcc6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '540802507e9dd6bbf9f844a78fd1c5e6') in 0.011301 seconds -======================================================================== -Received Import Request. - Time since last request: 0.798890 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/01 5.asset - artifactKey: Guid(75ff640b9529d67499f5f5751e367f56) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/01 5.asset using Guid(75ff640b9529d67499f5f5751e367f56) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3957362b6df2a2f3da609d78b7d92965') in 0.011855 seconds -======================================================================== -Received Import Request. - Time since last request: 1.247208 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/01 6.asset - artifactKey: Guid(a7525295b8ea96248bf09b0ac11539e1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/01 6.asset using Guid(a7525295b8ea96248bf09b0ac11539e1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '19b6001f0bc2f01bf3c17018e5c9c88b') in 0.012027 seconds -======================================================================== -Received Import Request. - Time since last request: 1.092888 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/01 7.asset - artifactKey: Guid(674a2365c13410a4b87333b9a5843060) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/01 7.asset using Guid(674a2365c13410a4b87333b9a5843060) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f5b86d90e36eee8a43172a9781b4f9e3') in 0.011380 seconds -======================================================================== -Received Import Request. - Time since last request: 1.087540 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/01 8.asset - artifactKey: Guid(824c89a33acd25d4398e869be4ee40ce) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/01 8.asset using Guid(824c89a33acd25d4398e869be4ee40ce) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '953ff159063fcf997767a786b8b6251c') in 0.013751 seconds -======================================================================== -Received Import Request. - Time since last request: 2.166080 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/01 9.asset - artifactKey: Guid(18c77d6669f606e4996456c2c2595564) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/01 9.asset using Guid(18c77d6669f606e4996456c2c2595564) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1367cdca279e4841eff70afb39fae154') in 0.011415 seconds -======================================================================== -Received Import Request. - Time since last request: 8.494178 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/02.asset - artifactKey: Guid(98306a916a15b0744ac39bf849ba3070) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/02.asset using Guid(98306a916a15b0744ac39bf849ba3070) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6273b3b2d2dc28f23ac2bb64008e2f4e') in 0.013854 seconds -======================================================================== -Received Import Request. - Time since last request: 4.420426 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/02.prefab - artifactKey: Guid(d7379855bac2c7e44ba6dfa9d8fdb363) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/02.prefab using Guid(d7379855bac2c7e44ba6dfa9d8fdb363) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd069c16e2016905e0127b1ce69339625') in 0.039004 seconds -======================================================================== -Received Import Request. - Time since last request: 3.851235 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/03.asset - artifactKey: Guid(7ff794d5724e346418f34ff2126cf055) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/03.asset using Guid(7ff794d5724e346418f34ff2126cf055) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f4007fde9218a9244086e7512b34bef2') in 0.011135 seconds -======================================================================== -Received Import Request. - Time since last request: 4.807926 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/03.prefab - artifactKey: Guid(670f5a9c0c13cd949b094e0974d2c7c5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/03.prefab using Guid(670f5a9c0c13cd949b094e0974d2c7c5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6fb10a176dc553ed80b65bc4396f5694') in 0.034073 seconds -======================================================================== -Received Import Request. - Time since last request: 6.591243 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/04.asset - artifactKey: Guid(b0c308ac30afc8e499984da1d1932d4a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/04.asset using Guid(b0c308ac30afc8e499984da1d1932d4a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4f1942936c233ff2d19cc327e11fc5b5') in 0.011253 seconds -======================================================================== -Received Import Request. - Time since last request: 68.079532 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/04.prefab - artifactKey: Guid(d47454d4895e72946a6b50d0267c1d4b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/04.prefab using Guid(d47454d4895e72946a6b50d0267c1d4b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e48166af4f4a3a1f40c6a75f81781eba') in 0.046282 seconds -======================================================================== -Received Import Request. - Time since last request: 5.061334 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/05.asset - artifactKey: Guid(2ce555f9080b15546b1c398390a3fcc6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/05.asset using Guid(2ce555f9080b15546b1c398390a3fcc6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2e8a579b030264165ed8168b04da09b5') in 0.011330 seconds -======================================================================== -Received Import Request. - Time since last request: 4.083380 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/05.prefab - artifactKey: Guid(43c39622209a7d148858cf97fa8418f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/05.prefab using Guid(43c39622209a7d148858cf97fa8418f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8bd00dcaf638c6c8ce16972c360e028c') in 0.034448 seconds -======================================================================== -Received Import Request. - Time since last request: 4.152824 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/06.asset - artifactKey: Guid(75ff640b9529d67499f5f5751e367f56) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/06.asset using Guid(75ff640b9529d67499f5f5751e367f56) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f0de8cf3b67d8ace9065955164766769') in 0.011386 seconds -======================================================================== -Received Import Request. - Time since last request: 4.033336 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/06.prefab - artifactKey: Guid(43ddc00804957bf44a05d2f3eb8cc3bd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/06.prefab using Guid(43ddc00804957bf44a05d2f3eb8cc3bd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ae86977197afe514748fce4e7805cfc6') in 0.034606 seconds -======================================================================== -Received Import Request. - Time since last request: 4.030837 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/07.asset - artifactKey: Guid(a7525295b8ea96248bf09b0ac11539e1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/07.asset using Guid(a7525295b8ea96248bf09b0ac11539e1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '24b017d37120a53ff7d30233c34811cd') in 0.011374 seconds -======================================================================== -Received Import Request. - Time since last request: 3.653827 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/07.prefab - artifactKey: Guid(d45eaf884b4a88e47bd756efcadb31a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/07.prefab using Guid(d45eaf884b4a88e47bd756efcadb31a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e248eaed59a281694bd53765b4cf9152') in 0.034932 seconds -======================================================================== -Received Import Request. - Time since last request: 4.114540 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/08.asset - artifactKey: Guid(674a2365c13410a4b87333b9a5843060) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/08.asset using Guid(674a2365c13410a4b87333b9a5843060) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4547ea51b8fb4a2ae4c12e92e549d44c') in 0.011890 seconds -======================================================================== -Received Import Request. - Time since last request: 11.947641 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/08.prefab - artifactKey: Guid(c26068c902fa6ed4281c395b8d37fc28) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/08.prefab using Guid(c26068c902fa6ed4281c395b8d37fc28) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0ced87a181d7ea851664f5eb0630be09') in 0.035595 seconds -======================================================================== -Received Import Request. - Time since last request: 5.262199 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/09.asset - artifactKey: Guid(824c89a33acd25d4398e869be4ee40ce) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/09.asset using Guid(824c89a33acd25d4398e869be4ee40ce) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b8ee86e4ed11e9ea0b620b8b512b7a89') in 0.011986 seconds -======================================================================== -Received Import Request. - Time since last request: 5.042076 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/09.prefab - artifactKey: Guid(be5736078a141df4285874b23d288585) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/09.prefab using Guid(be5736078a141df4285874b23d288585) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ecf7b54f29590f353afd3b8b7f095dfa') in 0.035237 seconds -======================================================================== -Received Import Request. - Time since last request: 3.967416 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/10.asset - artifactKey: Guid(18c77d6669f606e4996456c2c2595564) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/10.asset using Guid(18c77d6669f606e4996456c2c2595564) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e0e186097f47dc112cb25cdc880c6f0f') in 0.011356 seconds -======================================================================== -Received Import Request. - Time since last request: 5.184944 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/10.prefab - artifactKey: Guid(f2b112dcbc6e33c4d8e277aa45a31291) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/10.prefab using Guid(f2b112dcbc6e33c4d8e277aa45a31291) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '19d11eaa0ef4ce76415583f54433d192') in 0.039966 seconds -======================================================================== -Received Import Request. - Time since last request: 223.168346 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 1.mat - artifactKey: Guid(e5b3feddc38894049b9ca87cd9563e17) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 1.mat using Guid(e5b3feddc38894049b9ca87cd9563e17) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2e521e05ee70d04e468a29e09d4d166e') in 0.040030 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000035 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 3.mat - artifactKey: Guid(af0d4e6c560dd724ba1aa121fd4b0ddc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 3.mat using Guid(af0d4e6c560dd724ba1aa121fd4b0ddc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '999cd2b72a2a53738a9f90ffed10bdd5') in 0.038360 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000031 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 8.mat - artifactKey: Guid(f0efd14fb4e87da489a98ad7eb383dff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 8.mat using Guid(f0efd14fb4e87da489a98ad7eb383dff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '64ab419c2565ea02c04ee6dc3a8436ec') in 0.035409 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 9.mat - artifactKey: Guid(0a64edbc27745f240a96173c1da5e7bc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 9.mat using Guid(0a64edbc27745f240a96173c1da5e7bc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '590fa093b0bb62a3e276a54ec997110b') in 0.035213 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000041 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 10.mat - artifactKey: Guid(adbcb29e80be4b84697b1033c3adf276) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 10.mat using Guid(adbcb29e80be4b84697b1033c3adf276) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6c2d35d2b8d831a27caafd41d55945ae') in 0.034251 seconds -======================================================================== -Received Import Request. - Time since last request: 13.346063 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/01.prefab - artifactKey: Guid(602fd6eeefe0e2b4f83687a5a954bae5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/01.prefab using Guid(602fd6eeefe0e2b4f83687a5a954bae5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '898a7269976f8353c70634ee77006dbf') in 0.042139 seconds -======================================================================== -Received Import Request. - Time since last request: 2.623449 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/01.prefab - artifactKey: Guid(602fd6eeefe0e2b4f83687a5a954bae5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/01.prefab using Guid(602fd6eeefe0e2b4f83687a5a954bae5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5e06a7a7a44b8235c8c7a1cf56da2422') in 0.042156 seconds -======================================================================== -Received Import Request. - Time since last request: 2.274728 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/01.prefab - artifactKey: Guid(602fd6eeefe0e2b4f83687a5a954bae5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/01.prefab using Guid(602fd6eeefe0e2b4f83687a5a954bae5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a93ea1d2780cc7aeb7fec986f750935a') in 0.032942 seconds -======================================================================== -Received Import Request. - Time since last request: 147.326804 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/02.prefab - artifactKey: Guid(d7379855bac2c7e44ba6dfa9d8fdb363) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/02.prefab using Guid(d7379855bac2c7e44ba6dfa9d8fdb363) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fb163167df992ef7d7a39835381d8eab') in 0.072957 seconds -======================================================================== -Received Import Request. - Time since last request: 2.396269 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/02.prefab - artifactKey: Guid(d7379855bac2c7e44ba6dfa9d8fdb363) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/02.prefab using Guid(d7379855bac2c7e44ba6dfa9d8fdb363) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ff4588be0e916318314fc47e95f233f2') in 0.042751 seconds -======================================================================== -Received Import Request. - Time since last request: 2.178603 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/02.prefab - artifactKey: Guid(d7379855bac2c7e44ba6dfa9d8fdb363) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/02.prefab using Guid(d7379855bac2c7e44ba6dfa9d8fdb363) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c7082fa1e3a2f53a594f2a6d5f092fee') in 0.034244 seconds -======================================================================== -Received Import Request. - Time since last request: 27.419418 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/03.prefab - artifactKey: Guid(670f5a9c0c13cd949b094e0974d2c7c5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/03.prefab using Guid(670f5a9c0c13cd949b094e0974d2c7c5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '55f5eec504469745777d85f7c74d5ca9') in 0.044923 seconds -======================================================================== -Received Import Request. - Time since last request: 2.471323 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/03.prefab - artifactKey: Guid(670f5a9c0c13cd949b094e0974d2c7c5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/03.prefab using Guid(670f5a9c0c13cd949b094e0974d2c7c5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2655e60f27d7fcf70f72c4ca1e4e9cdd') in 0.045618 seconds -======================================================================== -Received Import Request. - Time since last request: 2.233245 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/03.prefab - artifactKey: Guid(670f5a9c0c13cd949b094e0974d2c7c5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/03.prefab using Guid(670f5a9c0c13cd949b094e0974d2c7c5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4fb0e2728f6c66b83728aca8cb6df791') in 0.035676 seconds -======================================================================== -Received Import Request. - Time since last request: 29.735640 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/04.prefab - artifactKey: Guid(d47454d4895e72946a6b50d0267c1d4b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/04.prefab using Guid(d47454d4895e72946a6b50d0267c1d4b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9519f09f3a3dde3e73b0be8a76c232d3') in 0.043506 seconds -======================================================================== -Received Import Request. - Time since last request: 2.282780 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/04.prefab - artifactKey: Guid(d47454d4895e72946a6b50d0267c1d4b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/04.prefab using Guid(d47454d4895e72946a6b50d0267c1d4b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7f3757b6809b0e71f9dff17111d14881') in 0.050015 seconds -======================================================================== -Received Import Request. - Time since last request: 2.166198 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/04.prefab - artifactKey: Guid(d47454d4895e72946a6b50d0267c1d4b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/04.prefab using Guid(d47454d4895e72946a6b50d0267c1d4b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '24bb7b806f5d98f37080f5f79b2459ac') in 0.037021 seconds -======================================================================== -Received Import Request. - Time since last request: 36.882322 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/05.prefab - artifactKey: Guid(43c39622209a7d148858cf97fa8418f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/05.prefab using Guid(43c39622209a7d148858cf97fa8418f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd75c1511e575d689cc8313ee5ff1d906') in 0.042269 seconds -======================================================================== -Received Import Request. - Time since last request: 2.654937 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/05.prefab - artifactKey: Guid(43c39622209a7d148858cf97fa8418f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/05.prefab using Guid(43c39622209a7d148858cf97fa8418f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '724587c70993e6f65b192526e8f4f286') in 0.047127 seconds -======================================================================== -Received Import Request. - Time since last request: 1.684441 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/05.prefab - artifactKey: Guid(43c39622209a7d148858cf97fa8418f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/05.prefab using Guid(43c39622209a7d148858cf97fa8418f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1fead07e3a8bda1579aba935e0546682') in 0.034984 seconds -======================================================================== -Received Import Request. - Time since last request: 26.425168 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/06.prefab - artifactKey: Guid(43ddc00804957bf44a05d2f3eb8cc3bd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/06.prefab using Guid(43ddc00804957bf44a05d2f3eb8cc3bd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3a13f554c835764fb6188c5bdbd8a37a') in 0.041808 seconds -======================================================================== -Received Import Request. - Time since last request: 2.672541 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/06.prefab - artifactKey: Guid(43ddc00804957bf44a05d2f3eb8cc3bd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/06.prefab using Guid(43ddc00804957bf44a05d2f3eb8cc3bd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c670cbcb0c65bdf6beaca5ef179f8bbd') in 0.050119 seconds -======================================================================== -Received Import Request. - Time since last request: 2.767030 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/06.prefab - artifactKey: Guid(43ddc00804957bf44a05d2f3eb8cc3bd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/06.prefab using Guid(43ddc00804957bf44a05d2f3eb8cc3bd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '25077b0c7006369973e83d4740a9a83f') in 0.036209 seconds -======================================================================== -Received Import Request. - Time since last request: 3046.526005 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/07.prefab - artifactKey: Guid(d45eaf884b4a88e47bd756efcadb31a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/07.prefab using Guid(d45eaf884b4a88e47bd756efcadb31a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0f89b96cc7abc5f8838f072d7a820d32') in 0.047316 seconds -======================================================================== -Received Import Request. - Time since last request: 2.015412 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/07.prefab - artifactKey: Guid(d45eaf884b4a88e47bd756efcadb31a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/07.prefab using Guid(d45eaf884b4a88e47bd756efcadb31a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4bc29223510aaa6068a554d14c944709') in 0.042559 seconds -======================================================================== -Received Import Request. - Time since last request: 2.029842 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/07.prefab - artifactKey: Guid(d45eaf884b4a88e47bd756efcadb31a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/07.prefab using Guid(d45eaf884b4a88e47bd756efcadb31a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e63da2e26cee62c31f3e00843777c012') in 0.036407 seconds -======================================================================== -Received Import Request. - Time since last request: 26.582824 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/08.prefab - artifactKey: Guid(c26068c902fa6ed4281c395b8d37fc28) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/08.prefab using Guid(c26068c902fa6ed4281c395b8d37fc28) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3b620d41416e79f99a661ae94f3e41f2') in 0.050575 seconds -======================================================================== -Received Import Request. - Time since last request: 1.996158 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/08.prefab - artifactKey: Guid(c26068c902fa6ed4281c395b8d37fc28) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/08.prefab using Guid(c26068c902fa6ed4281c395b8d37fc28) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0b146e7ffa3ccfda5917d6d2d09d7c1d') in 0.046703 seconds -======================================================================== -Received Import Request. - Time since last request: 2.093660 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/08.prefab - artifactKey: Guid(c26068c902fa6ed4281c395b8d37fc28) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/08.prefab using Guid(c26068c902fa6ed4281c395b8d37fc28) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7e1f3d0862e524ad9092967fb232a534') in 0.037905 seconds -======================================================================== -Received Import Request. - Time since last request: 49.229342 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/09.prefab - artifactKey: Guid(be5736078a141df4285874b23d288585) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/09.prefab using Guid(be5736078a141df4285874b23d288585) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4a9b60b47afe9f4c049f18514832a47f') in 0.107128 seconds -======================================================================== -Received Import Request. - Time since last request: 1.953944 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/09.prefab - artifactKey: Guid(be5736078a141df4285874b23d288585) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/09.prefab using Guid(be5736078a141df4285874b23d288585) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b2e3bce63814aa0dbb597e85507d512a') in 0.044893 seconds -======================================================================== -Received Import Request. - Time since last request: 1.784313 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/09.prefab - artifactKey: Guid(be5736078a141df4285874b23d288585) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/09.prefab using Guid(be5736078a141df4285874b23d288585) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1f1a19fa2e7acc2878efe78d28e8f8c3') in 0.035308 seconds -======================================================================== -Received Import Request. - Time since last request: 26.177379 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/10.prefab - artifactKey: Guid(f2b112dcbc6e33c4d8e277aa45a31291) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/10.prefab using Guid(f2b112dcbc6e33c4d8e277aa45a31291) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1d69d058bd451d4d98e439ddb9ce5293') in 0.045326 seconds -======================================================================== -Received Import Request. - Time since last request: 2.903794 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/10.prefab - artifactKey: Guid(f2b112dcbc6e33c4d8e277aa45a31291) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/10.prefab using Guid(f2b112dcbc6e33c4d8e277aa45a31291) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '59bd1d6fe1542655928b831e8f862162') in 0.046108 seconds -======================================================================== -Received Import Request. - Time since last request: 2.596598 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/10.prefab - artifactKey: Guid(f2b112dcbc6e33c4d8e277aa45a31291) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/10.prefab using Guid(f2b112dcbc6e33c4d8e277aa45a31291) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7437c06bcbfe749acda57613b4570d46') in 0.034761 seconds -======================================================================== -Received Import Request. - Time since last request: 104.322259 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/01.asset - artifactKey: Guid(838e746b66bae7345aaf419560ef87c8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/01.asset using Guid(838e746b66bae7345aaf419560ef87c8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9a94a47857b397bcfea7193af4d5b199') in 0.007473 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000034 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/09.asset - artifactKey: Guid(824c89a33acd25d4398e869be4ee40ce) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/09.asset using Guid(824c89a33acd25d4398e869be4ee40ce) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '654c7ae509e5a6d98fd3ea3a159d1d10') in 0.006537 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000059 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/04.asset - artifactKey: Guid(b0c308ac30afc8e499984da1d1932d4a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/04.asset using Guid(b0c308ac30afc8e499984da1d1932d4a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'da08b79a89976d749976927b90b1c950') in 0.006379 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000035 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/06.asset - artifactKey: Guid(75ff640b9529d67499f5f5751e367f56) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/06.asset using Guid(75ff640b9529d67499f5f5751e367f56) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dd3fc55bc81c2fdba8c8fff342fae0b2') in 0.007839 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000032 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/03.asset - artifactKey: Guid(7ff794d5724e346418f34ff2126cf055) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/03.asset using Guid(7ff794d5724e346418f34ff2126cf055) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b5ea45c1832f5200acd00e630fa228c0') in 0.006750 seconds -======================================================================== -Received Import Request. - Time since last request: 21.187365 seconds. - path: Assets/Daz3D/Races/Rat/Male/Body.prefab - artifactKey: Guid(213ee0a7d52f53a4abb60cb8c9d42b14) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Male/Body.prefab using Guid(213ee0a7d52f53a4abb60cb8c9d42b14) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bfff3b62cffd7e62d1c19d56d6d55914') in 1.229865 seconds -======================================================================== -Received Import Request. - Time since last request: 25.643427 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '44d8b068c8657472cf46b033344ab780') in 1.659797 seconds -======================================================================== -Received Import Request. - Time since last request: 117.142445 seconds. - path: Assets/Daz3D/Races/Human/Female/TPS_Base_Female.controller - artifactKey: Guid(aa3acc9b300678747b883ac25f588ea4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Female/TPS_Base_Female.controller using Guid(aa3acc9b300678747b883ac25f588ea4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c3b668fbbfc1b6046ac7823bdb1b9676') in 0.982933 seconds -======================================================================== -Received Import Request. - Time since last request: 7.191317 seconds. - path: Assets/Daz3D/Races/Repthila/[RACE] Repthilia.asset - artifactKey: Guid(cbed5217185d6054ba43dbc815a97b66) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/[RACE] Repthilia.asset using Guid(cbed5217185d6054ba43dbc815a97b66) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f6bda4465e815c6a614a0b018183c7ce') in 6.359177 seconds -======================================================================== -Received Import Request. - Time since last request: 0.204063 seconds. - path: Assets/Daz3D/Races/Repthila/Female/Body.prefab - artifactKey: Guid(8bdec2c277392e641906fb2b0a52be99) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Female/Body.prefab using Guid(8bdec2c277392e641906fb2b0a52be99) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2c02d49b51033b77b43e443a2f91ba90') in 5.314533 seconds -======================================================================== -Received Import Request. - Time since last request: 1.527095 seconds. - path: Assets/Daz3D/Races/Repthila/Female/Body.prefab - artifactKey: Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Female/Body.prefab using Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b08e916ab1447836ea7899a8292d3a3d') in 6.145903 seconds -======================================================================== -Received Import Request. - Time since last request: 6.559762 seconds. - path: Assets/Daz3D/Races/Repthila/Female/Body.prefab - artifactKey: Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Female/Body.prefab using Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '33c0ce6ae15ea88aec1614b9d52c5d89') in 1.537512 seconds -======================================================================== -Received Import Request. - Time since last request: 12.389315 seconds. - path: Assets/Daz3D/Races/Repthila/Male - artifactKey: Guid(80955f3e5f1b6c14085e0ab8b355a690) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male using Guid(80955f3e5f1b6c14085e0ab8b355a690) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8498b56abc4ba69e70bb755d59238c36') in 0.007016 seconds -======================================================================== -Received Import Request. - Time since last request: 0.032905 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Body.prefab - artifactKey: Guid(f048a72bdceae9245be13b418402525a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Body.prefab using Guid(f048a72bdceae9245be13b418402525a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cac7c2870cd716f6da394965031c687d') in 1.795168 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000039 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Irises_B_1005_nm.png - artifactKey: Guid(139189417de13b64ca8cfe471120a97e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Irises_B_1005_nm.png using Guid(139189417de13b64ca8cfe471120a97e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1dd7be14af837f9d76bec75a737c1a30') in 0.030109 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000046 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Sclera_B_1005.jpg - artifactKey: Guid(7896be4885c526746b09fbb4bd2524fb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Sclera_B_1005.jpg using Guid(7896be4885c526746b09fbb4bd2524fb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '666cd5e6cef30719419fcc390497f9bc') in 0.023820 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000038 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Mouth_Base_Color_1006.jpg - artifactKey: Guid(469862c8bb941e54783f8db7593ad6ac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Mouth_Base_Color_1006.jpg using Guid(469862c8bb941e54783f8db7593ad6ac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8b0453c03e7ddb26346565e6a0dd1243') in 0.021596 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000032 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Mouth_B_1006_nm.png - artifactKey: Guid(5d551da610f86d34f95e86038e2a92a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Mouth_B_1006_nm.png using Guid(5d551da610f86d34f95e86038e2a92a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1041dbfed0158f2fa440318f09bb07fc') in 0.027041 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000030 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Ears.mat - artifactKey: Guid(50703518edc26be4da1de12c0d81df4f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Ears.mat using Guid(50703518edc26be4da1de12c0d81df4f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '584d8d2b1d483d4761a300e9ccab7cbc') in 0.051048 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000033 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Sclera_B_1005_nm.png - artifactKey: Guid(8801b2618452db94fa9b40cc931dcb3b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Sclera_B_1005_nm.png using Guid(8801b2618452db94fa9b40cc931dcb3b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'de72080fd2d6a7050f3b6c365681e584') in 0.024453 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000061 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Arms_1002_B.jpg - artifactKey: Guid(1b831771c36d6774f8326eeb080c6dde) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Arms_1002_B.jpg using Guid(1b831771c36d6774f8326eeb080c6dde) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e3ffab20247f4cc42b27c41f910b3eb3') in 0.030618 seconds -======================================================================== -Received Import Request. - Time since last request: 10.015612 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Sclera_Base_Color_1005.jpg - artifactKey: Guid(aeb6b4bb7912d9d4f82853b8360c0c00) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Sclera_Base_Color_1005.jpg using Guid(aeb6b4bb7912d9d4f82853b8360c0c00) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7dc3260b9541134e8b807f1dab5acb71') in 0.028212 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000029 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Teeth.mat - artifactKey: Guid(98bb8a6f949d9d545b7914723a260c23) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Teeth.mat using Guid(98bb8a6f949d9d545b7914723a260c23) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e6b92d0cbc65720d0e951a5acd1a1e38') in 0.049204 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000033 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Teeth_Base_Color_1006.jpg - artifactKey: Guid(7130c63832048f7409c4cbf8c6e6d408) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Teeth_Base_Color_1006.jpg using Guid(7130c63832048f7409c4cbf8c6e6d408) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a78bdad6758ad0537391aa4187067ce0') in 0.025448 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000035 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Sclera.mat - artifactKey: Guid(baf4d8397820b664c9742a25968f3370) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Sclera.mat using Guid(baf4d8397820b664c9742a25968f3370) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0ae48e03fdf2de68698bc3ca32bd7498') in 0.041999 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000035 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Torso_Base_Color_1003.jpg - artifactKey: Guid(8164a4140322ab449b3e7006e66d7694) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Torso_Base_Color_1003.jpg using Guid(8164a4140322ab449b3e7006e66d7694) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cbaba5e5908ca3ed394bc1e6a095d917') in 0.023164 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000044 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Torso_1003_B.jpg - artifactKey: Guid(90cb7fc41505e8d4fb656b6811789a58) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Torso_1003_B.jpg using Guid(90cb7fc41505e8d4fb656b6811789a58) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ecaadaa17fa88daca1a9549cb655e849') in 0.023978 seconds -======================================================================== -Received Import Request. - Time since last request: 230.132071 seconds. - path: Assets/Daz3D/Races/Underworld - artifactKey: Guid(7ce3c6589729f60468f839437e3570a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Underworld using Guid(7ce3c6589729f60468f839437e3570a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '866a4a1aa193f19f950792112472d42a') in 0.007351 seconds -======================================================================== -Received Import Request. - Time since last request: 1.031940 seconds. - path: Assets/Daz3D/Races/Rat/[RACE] Rat.asset - artifactKey: Guid(a04abbaa1e9ee144588b9c65a3b75187) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/[RACE] Rat.asset using Guid(a04abbaa1e9ee144588b9c65a3b75187) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '41c45fba14ab4134c86a14c83b97f427') in 2.187737 seconds -======================================================================== -Received Import Request. - Time since last request: 9.510983 seconds. - path: Assets/Daz3D/Races/Repthila/Female/Body.prefab - artifactKey: Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Female/Body.prefab using Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9e297e7318b560166a0df42941102ac4') in 1.673266 seconds -======================================================================== -Received Import Request. - Time since last request: 4.384550 seconds. - path: Assets/Daz3D/Races/Repthila/Female/Body.prefab - artifactKey: Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Female/Body.prefab using Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7bfc7b35f408e5137c6c06e2e6cfa5b9') in 1.650673 seconds -======================================================================== -Received Import Request. - Time since last request: 4.300936 seconds. - path: Assets/Daz3D/Races/Repthila/Female/Body.prefab - artifactKey: Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Female/Body.prefab using Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6498ca032f620dcb586be790c21f5cab') in 1.653587 seconds -======================================================================== -Received Import Request. - Time since last request: 0.646748 seconds. - path: Assets/Daz3D/Races/Repthila/Female/Body.prefab - artifactKey: Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Female/Body.prefab using Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8045e26e5882119828da19f473d3d081') in 1.625620 seconds -======================================================================== -Received Import Request. - Time since last request: 6.094448 seconds. - path: Assets/Daz3D/Races/Repthila/Female/Body.prefab - artifactKey: Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Female/Body.prefab using Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '80089186a0c56d4a6f930318fa231b7f') in 1.632775 seconds -======================================================================== -Received Import Request. - Time since last request: 1.594205 seconds. - path: Assets/Daz3D/Races/Repthila/Female/Body.prefab - artifactKey: Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Female/Body.prefab using Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3d486f2a88eeeea16945ae32ed949838') in 1.630288 seconds -======================================================================== -Received Import Request. - Time since last request: 2.531239 seconds. - path: Assets/Daz3D/Races/Repthila/Female/Body.prefab - artifactKey: Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Female/Body.prefab using Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bf24052311f4a6fa7f96da363b5a5239') in 1.640649 seconds -======================================================================== -Received Import Request. - Time since last request: 2.802406 seconds. - path: Assets/Daz3D/Races/Repthila/Female/Body.prefab - artifactKey: Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Female/Body.prefab using Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '412375475f8f5361a9265d939b81f470') in 1.615825 seconds -======================================================================== -Received Import Request. - Time since last request: 3.202980 seconds. - path: Assets/Daz3D/Races/Repthila/Female/Body.prefab - artifactKey: Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Female/Body.prefab using Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'eb938db9cabc349cf2d1a90283c4e8d5') in 1.629252 seconds -======================================================================== -Received Import Request. - Time since last request: 1.167489 seconds. - path: Assets/Daz3D/Races/Repthila/Female/Body.prefab - artifactKey: Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Female/Body.prefab using Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '87d987fef5cbd2857ebc23f68c70d843') in 1.622358 seconds -======================================================================== -Received Import Request. - Time since last request: 1.357407 seconds. - path: Assets/Daz3D/Races/Repthila/Female/Body.prefab - artifactKey: Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Female/Body.prefab using Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'daf3e4cdb3ba81bc29b494350afa70d9') in 1.616210 seconds -======================================================================== -Received Import Request. - Time since last request: 1.964615 seconds. - path: Assets/Daz3D/Races/Repthila/Female/Body.prefab - artifactKey: Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Female/Body.prefab using Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5bec998a6706bf4179bf994cb9ba9c65') in 1.631279 seconds -======================================================================== -Received Import Request. - Time since last request: 1.379768 seconds. - path: Assets/Daz3D/Races/Repthila/Female/Body.prefab - artifactKey: Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Female/Body.prefab using Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd485fd45ae2e2b6ef11559a3947097f1') in 1.629477 seconds -======================================================================== -Received Import Request. - Time since last request: 1.398896 seconds. - path: Assets/Daz3D/Races/Repthila/Female/Body.prefab - artifactKey: Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Female/Body.prefab using Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5a1fc5a98517b09536a6cc5cd61d7ccf') in 1.651995 seconds -======================================================================== -Received Import Request. - Time since last request: 1.134864 seconds. - path: Assets/Daz3D/Races/Repthila/Female/Body.prefab - artifactKey: Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Female/Body.prefab using Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9c9ecea568a5e16b0f1d7f689d533e4b') in 1.621001 seconds -======================================================================== -Received Import Request. - Time since last request: 1.996227 seconds. - path: Assets/Daz3D/Races/Repthila/Female/Body.prefab - artifactKey: Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Female/Body.prefab using Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'db485fa962b51f8cb0b0caebe67852f9') in 1.625543 seconds -======================================================================== -Received Import Request. - Time since last request: 2.162797 seconds. - path: Assets/Daz3D/Races/Repthila/Female/Body.prefab - artifactKey: Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Female/Body.prefab using Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '48185f6e717406c9fd3cc9551731206e') in 1.613834 seconds -======================================================================== -Received Import Request. - Time since last request: 1026.058724 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/01.asset - artifactKey: Guid(42f5a1474ccb80f46b2cf68188744e6c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/01.asset using Guid(42f5a1474ccb80f46b2cf68188744e6c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '48c54d36b1512dcecd14396387d033a4') in 0.010340 seconds -======================================================================== -Received Import Request. - Time since last request: 52.548661 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 1.mat - artifactKey: Guid(7014af8e9a86a934c9b331146fd44313) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 1.mat using Guid(7014af8e9a86a934c9b331146fd44313) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e70c2eb84daa7825761d99a1678c9e20') in 0.040354 seconds -======================================================================== -Received Import Request. - Time since last request: 2.591280 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 2.mat - artifactKey: Guid(acd89b9f9ac235c499f1ac2b557085ac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 2.mat using Guid(acd89b9f9ac235c499f1ac2b557085ac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '002d543c971f393047ca7f77d9ddf994') in 0.056570 seconds -======================================================================== -Received Import Request. - Time since last request: 0.724676 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 3.mat - artifactKey: Guid(47c79de9a0efb96459e9b4cb5077e933) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 3.mat using Guid(47c79de9a0efb96459e9b4cb5077e933) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '91674a29ef5857ec169f3d6b6232afc2') in 0.032587 seconds -======================================================================== -Received Import Request. - Time since last request: 0.654072 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 4.mat - artifactKey: Guid(5f5d61cbc666fef43858b7ee8f4610f3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 4.mat using Guid(5f5d61cbc666fef43858b7ee8f4610f3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e477f0c7c7dced33399ad8ad2d5af10d') in 0.032096 seconds -======================================================================== -Received Import Request. - Time since last request: 0.561131 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 5.mat - artifactKey: Guid(3204aeeec20884149ab9eeed2899a381) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 5.mat using Guid(3204aeeec20884149ab9eeed2899a381) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ec62a26f58cb9abcd82d3c591ff86ec6') in 0.042837 seconds -======================================================================== -Received Import Request. - Time since last request: 0.492616 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 6.mat - artifactKey: Guid(5d324b7195ba90c408a966203dde719d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 6.mat using Guid(5d324b7195ba90c408a966203dde719d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'be48cc492d28a5f3868db53b709be3f6') in 0.038023 seconds -======================================================================== -Received Import Request. - Time since last request: 0.440498 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 7.mat - artifactKey: Guid(1e2a009fb9f827e4c9621a04503e97a7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 7.mat using Guid(1e2a009fb9f827e4c9621a04503e97a7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '92f5562d1e840a32bc5a780f21fb43f2') in 0.034253 seconds -======================================================================== -Received Import Request. - Time since last request: 0.522693 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 8.mat - artifactKey: Guid(22333bed2b83893458066bd289612d51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 8.mat using Guid(22333bed2b83893458066bd289612d51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1f874db9f806318338122a38cb7105a4') in 0.036389 seconds -======================================================================== -Received Import Request. - Time since last request: 1.042378 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 9.mat - artifactKey: Guid(8bd54c050e7538a47814014e6d2119b6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 9.mat using Guid(8bd54c050e7538a47814014e6d2119b6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '49e74257e74a853e630674993c4b78ea') in 0.034489 seconds -======================================================================== -Received Import Request. - Time since last request: 0.737767 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 10.mat - artifactKey: Guid(f618ac8c129b42b43b6657bb8a3739b5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 10.mat using Guid(f618ac8c129b42b43b6657bb8a3739b5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bf617ae24cec82e602eb5877cdebd126') in 0.035053 seconds -======================================================================== -Received Import Request. - Time since last request: 0.562494 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 11.mat - artifactKey: Guid(b484933923dc29c4a8ddd17ba83e19cf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 11.mat using Guid(b484933923dc29c4a8ddd17ba83e19cf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '090ff2df12bd7cae80544304309bfcf0') in 0.035639 seconds -======================================================================== -Received Import Request. - Time since last request: 109.301378 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/01 1.asset - artifactKey: Guid(026fdc130559d044683d88c573a89fb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/01 1.asset using Guid(026fdc130559d044683d88c573a89fb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8cd27052f84f6acdacd9e5b35d9a5572') in 0.008294 seconds -======================================================================== -Received Import Request. - Time since last request: 1.237683 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/01 2.asset - artifactKey: Guid(4364f4ab39f9be444add9b56745ca215) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/01 2.asset using Guid(4364f4ab39f9be444add9b56745ca215) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '69dabb72a32176562febf9a90a806343') in 0.007229 seconds -======================================================================== -Received Import Request. - Time since last request: 1.136813 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/01 3.asset - artifactKey: Guid(0a16786e478cf3f4590a1b8c546741c4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/01 3.asset using Guid(0a16786e478cf3f4590a1b8c546741c4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'be0912c4cbbb33e33c4f80f0ed023018') in 0.007125 seconds -======================================================================== -Received Import Request. - Time since last request: 1.331551 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/01 4.asset - artifactKey: Guid(5f999e0c14fbb794483d4ac8eba3709c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/01 4.asset using Guid(5f999e0c14fbb794483d4ac8eba3709c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '406235afd4d2b947014b45b88efa05ec') in 0.006781 seconds -======================================================================== -Received Import Request. - Time since last request: 1.041143 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/01 5.asset - artifactKey: Guid(4768c874358001d438517f76e67d6772) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/01 5.asset using Guid(4768c874358001d438517f76e67d6772) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e2f2921e7179f7e82f9086eeee638f42') in 0.011236 seconds -======================================================================== -Received Import Request. - Time since last request: 0.870527 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/01 6.asset - artifactKey: Guid(9115e9ffba4931244ae8ed7457a509b5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/01 6.asset using Guid(9115e9ffba4931244ae8ed7457a509b5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ed9e1968a4cfacc3084614746ae3eb5f') in 0.006687 seconds -======================================================================== -Received Import Request. - Time since last request: 1.047969 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/01 7.asset - artifactKey: Guid(a29c0dd60c1cc5c40b00b1462eb0ad36) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/01 7.asset using Guid(a29c0dd60c1cc5c40b00b1462eb0ad36) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6a004e14ef2a6a0efee94acdd3908ec9') in 0.013690 seconds -======================================================================== -Received Import Request. - Time since last request: 0.947621 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/01 8.asset - artifactKey: Guid(7e1763fe90093f44c9f1920d2786732e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/01 8.asset using Guid(7e1763fe90093f44c9f1920d2786732e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bd6ea92dc5dabd08d8bda3f18ff488e7') in 0.006674 seconds -======================================================================== -Received Import Request. - Time since last request: 1.084134 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/01 9.asset - artifactKey: Guid(6c9117f7bb48cbd44a61503c4a01934f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/01 9.asset using Guid(6c9117f7bb48cbd44a61503c4a01934f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '483db38a557dae87fec3099b5cbca363') in 0.006815 seconds -======================================================================== -Received Import Request. - Time since last request: 5.243595 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/02.asset - artifactKey: Guid(026fdc130559d044683d88c573a89fb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/02.asset using Guid(026fdc130559d044683d88c573a89fb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '990b4ba39f0fe64fd30c243d78b13a8a') in 0.006258 seconds -======================================================================== -Received Import Request. - Time since last request: 5.181531 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/02.prefab - artifactKey: Guid(47fc117ad161c3c46a759c70b6e58d1d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/02.prefab using Guid(47fc117ad161c3c46a759c70b6e58d1d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd1d84a32b98cc78b2aa5c3541d09c1d8') in 0.034517 seconds -======================================================================== -Received Import Request. - Time since last request: 3.784778 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/03.asset - artifactKey: Guid(4364f4ab39f9be444add9b56745ca215) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/03.asset using Guid(4364f4ab39f9be444add9b56745ca215) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b2023481a89ee782a1b2526fcdacedbc') in 0.006964 seconds -======================================================================== -Received Import Request. - Time since last request: 3.792871 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/03.prefab - artifactKey: Guid(c855bab0df013a14db95ba6c72d7b57e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/03.prefab using Guid(c855bab0df013a14db95ba6c72d7b57e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ea12a22bcbba0f376f72229c6d734494') in 0.063683 seconds -======================================================================== -Received Import Request. - Time since last request: 5.743048 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/04.asset - artifactKey: Guid(0a16786e478cf3f4590a1b8c546741c4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/04.asset using Guid(0a16786e478cf3f4590a1b8c546741c4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '226f10d5950fc160c51b8569c0c1a033') in 0.007147 seconds -======================================================================== -Received Import Request. - Time since last request: 3.766257 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/04.prefab - artifactKey: Guid(6b96f0980c0d0f64a953cce9553f509f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/04.prefab using Guid(6b96f0980c0d0f64a953cce9553f509f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a85e992e3b40f7ae6186c35963e797de') in 0.035951 seconds -======================================================================== -Received Import Request. - Time since last request: 4.106001 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/05.asset - artifactKey: Guid(5f999e0c14fbb794483d4ac8eba3709c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/05.asset using Guid(5f999e0c14fbb794483d4ac8eba3709c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '77338addc47537ed548382aae0ff01de') in 0.006901 seconds -======================================================================== -Received Import Request. - Time since last request: 3.961397 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/05.prefab - artifactKey: Guid(7e613c52f60fff54aa20841714e7722b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/05.prefab using Guid(7e613c52f60fff54aa20841714e7722b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f89d4d52ab0230e0588f56817d1cc9b8') in 0.035483 seconds -======================================================================== -Received Import Request. - Time since last request: 5.310530 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/06.asset - artifactKey: Guid(4768c874358001d438517f76e67d6772) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/06.asset using Guid(4768c874358001d438517f76e67d6772) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '742d019e1d2a2e0abf0bffe13afc7ebe') in 0.011131 seconds -======================================================================== -Received Import Request. - Time since last request: 3.539263 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/06.prefab - artifactKey: Guid(599c89ae31742534e82d076a4dc32741) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/06.prefab using Guid(599c89ae31742534e82d076a4dc32741) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5a6f51f1e721a2396ef97bdf50fd4d3b') in 0.036421 seconds -======================================================================== -Received Import Request. - Time since last request: 3.848887 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/07.asset - artifactKey: Guid(9115e9ffba4931244ae8ed7457a509b5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/07.asset using Guid(9115e9ffba4931244ae8ed7457a509b5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '278ae03c3235c93661dec2286db74719') in 0.006662 seconds -======================================================================== -Received Import Request. - Time since last request: 5.492616 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/07.prefab - artifactKey: Guid(9cacb16cb696c014880609eacc6701a1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/07.prefab using Guid(9cacb16cb696c014880609eacc6701a1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6e7772204911673db9be1fd36a2c4326') in 0.033893 seconds -======================================================================== -Received Import Request. - Time since last request: 3.766300 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/08.asset - artifactKey: Guid(a29c0dd60c1cc5c40b00b1462eb0ad36) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/08.asset using Guid(a29c0dd60c1cc5c40b00b1462eb0ad36) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6257f8e1d2a21c50a3cea6afbeb9bddc') in 0.006653 seconds -======================================================================== -Received Import Request. - Time since last request: 3.668073 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/08.prefab - artifactKey: Guid(8c9a6dd67ed67b74795e9d13c306695d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/08.prefab using Guid(8c9a6dd67ed67b74795e9d13c306695d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '781c243812ff9e68951910c121bac467') in 0.035691 seconds -======================================================================== -Received Import Request. - Time since last request: 4.236601 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/09.asset - artifactKey: Guid(7e1763fe90093f44c9f1920d2786732e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/09.asset using Guid(7e1763fe90093f44c9f1920d2786732e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f34eddb1511bcd40ce88b4ce07f3358f') in 0.011728 seconds -======================================================================== -Received Import Request. - Time since last request: 4.620455 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/09.prefab - artifactKey: Guid(14e4cbe39ca0d194ea291051c23168f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/09.prefab using Guid(14e4cbe39ca0d194ea291051c23168f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd56ad0b2296ff4076b31610de2f9a865') in 0.034961 seconds -======================================================================== -Received Import Request. - Time since last request: 35.525248 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/10.asset - artifactKey: Guid(6c9117f7bb48cbd44a61503c4a01934f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/10.asset using Guid(6c9117f7bb48cbd44a61503c4a01934f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '793d4826c721669f96ff0af39cf54c43') in 0.007843 seconds -======================================================================== -Received Import Request. - Time since last request: 3.266468 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/10.prefab - artifactKey: Guid(c1a7f499279733a42b215c5119a63fdd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/10.prefab using Guid(c1a7f499279733a42b215c5119a63fdd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a66c5a321f0efb2f99597b0608d33ed8') in 0.034181 seconds -======================================================================== -Received Import Request. - Time since last request: 247.143093 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 1.mat - artifactKey: Guid(7014af8e9a86a934c9b331146fd44313) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 1.mat using Guid(7014af8e9a86a934c9b331146fd44313) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f0cfb5ad33ea5b3624fef7f34e58fc87') in 0.040014 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 9.mat - artifactKey: Guid(8bd54c050e7538a47814014e6d2119b6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 9.mat using Guid(8bd54c050e7538a47814014e6d2119b6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e5a50a9437bab8f8bc39030e0599e9fe') in 0.042704 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000037 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 5.mat - artifactKey: Guid(3204aeeec20884149ab9eeed2899a381) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 5.mat using Guid(3204aeeec20884149ab9eeed2899a381) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '385821657ab8d23f1e0819ef675f4c8c') in 0.043263 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000053 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 3.mat - artifactKey: Guid(47c79de9a0efb96459e9b4cb5077e933) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 3.mat using Guid(47c79de9a0efb96459e9b4cb5077e933) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f5f9326d2c8315d63b669171e0f80a5b') in 0.048896 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000041 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 8.mat - artifactKey: Guid(22333bed2b83893458066bd289612d51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 8.mat using Guid(22333bed2b83893458066bd289612d51) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c2917170a18a86093ef581a941053e23') in 0.038764 seconds -======================================================================== -Received Import Request. - Time since last request: 10.151115 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/01.prefab - artifactKey: Guid(85a0513eababd6b45bae4b8eefa93d02) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/01.prefab using Guid(85a0513eababd6b45bae4b8eefa93d02) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1432686ae65cf00a770d3d35e27b1ac9') in 0.048603 seconds -======================================================================== -Received Import Request. - Time since last request: 2.156601 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/01.prefab - artifactKey: Guid(85a0513eababd6b45bae4b8eefa93d02) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/01.prefab using Guid(85a0513eababd6b45bae4b8eefa93d02) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8504d9ca41193ef350cc79034e09afae') in 0.050333 seconds -======================================================================== -Received Import Request. - Time since last request: 2.422741 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/01.prefab - artifactKey: Guid(85a0513eababd6b45bae4b8eefa93d02) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/01.prefab using Guid(85a0513eababd6b45bae4b8eefa93d02) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '509084950c8a3c597c88cbd0609165c2') in 0.037607 seconds -======================================================================== -Received Import Request. - Time since last request: 57.751231 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/02.prefab - artifactKey: Guid(47fc117ad161c3c46a759c70b6e58d1d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/02.prefab using Guid(47fc117ad161c3c46a759c70b6e58d1d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ca0e4b6610bd619aa1e5e734f427d677') in 0.044636 seconds -======================================================================== -Received Import Request. - Time since last request: 2.051569 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/02.prefab - artifactKey: Guid(47fc117ad161c3c46a759c70b6e58d1d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/02.prefab using Guid(47fc117ad161c3c46a759c70b6e58d1d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dc3544cbc0f3e18c4f1321d9cea0b5ff') in 0.044751 seconds -======================================================================== -Received Import Request. - Time since last request: 2.003126 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/02.prefab - artifactKey: Guid(47fc117ad161c3c46a759c70b6e58d1d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/02.prefab using Guid(47fc117ad161c3c46a759c70b6e58d1d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6dc559e1f3b2e5a47faa7865e4713873') in 0.033589 seconds -======================================================================== -Received Import Request. - Time since last request: 23.643957 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/03.prefab - artifactKey: Guid(c855bab0df013a14db95ba6c72d7b57e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/03.prefab using Guid(c855bab0df013a14db95ba6c72d7b57e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '946eb7481672059dbdef723b7da48a37') in 0.044129 seconds -======================================================================== -Received Import Request. - Time since last request: 2.271700 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/03.prefab - artifactKey: Guid(c855bab0df013a14db95ba6c72d7b57e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/03.prefab using Guid(c855bab0df013a14db95ba6c72d7b57e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9e007b0e20b02ef6e5c6791a43b8e036') in 0.043960 seconds -======================================================================== -Received Import Request. - Time since last request: 2.010504 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/03.prefab - artifactKey: Guid(c855bab0df013a14db95ba6c72d7b57e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/03.prefab using Guid(c855bab0df013a14db95ba6c72d7b57e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '11b7b59872c644e7d94524fe94fdc5da') in 0.036088 seconds -======================================================================== -Received Import Request. - Time since last request: 42.426726 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/04.prefab - artifactKey: Guid(6b96f0980c0d0f64a953cce9553f509f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/04.prefab using Guid(6b96f0980c0d0f64a953cce9553f509f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '394f3a06ec6882518812aec6af734218') in 0.045593 seconds -======================================================================== -Received Import Request. - Time since last request: 1.811799 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/04.prefab - artifactKey: Guid(6b96f0980c0d0f64a953cce9553f509f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/04.prefab using Guid(6b96f0980c0d0f64a953cce9553f509f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '071956691f7ea4f5907e56dfa9ea4a7e') in 0.043255 seconds -======================================================================== -Received Import Request. - Time since last request: 2.300789 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/04.prefab - artifactKey: Guid(6b96f0980c0d0f64a953cce9553f509f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/04.prefab using Guid(6b96f0980c0d0f64a953cce9553f509f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e0040d7447c791438e78a45fd878897a') in 0.034258 seconds -======================================================================== -Received Import Request. - Time since last request: 24.541989 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/05.prefab - artifactKey: Guid(7e613c52f60fff54aa20841714e7722b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/05.prefab using Guid(7e613c52f60fff54aa20841714e7722b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1ac3202ee1efcb93686bbd32587faea2') in 0.046366 seconds -======================================================================== -Received Import Request. - Time since last request: 2.083999 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/05.prefab - artifactKey: Guid(7e613c52f60fff54aa20841714e7722b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/05.prefab using Guid(7e613c52f60fff54aa20841714e7722b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd354e2f855c45dd1706b581ae7244173') in 0.048625 seconds -======================================================================== -Received Import Request. - Time since last request: 1.889901 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/05.prefab - artifactKey: Guid(7e613c52f60fff54aa20841714e7722b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/05.prefab using Guid(7e613c52f60fff54aa20841714e7722b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1f14930dcaf521d4b0244076770197b8') in 0.037558 seconds -======================================================================== -Received Import Request. - Time since last request: 27.950034 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/06.prefab - artifactKey: Guid(599c89ae31742534e82d076a4dc32741) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/06.prefab using Guid(599c89ae31742534e82d076a4dc32741) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9d28a8cbda32b3f2375d55614a19eba7') in 0.043108 seconds -======================================================================== -Received Import Request. - Time since last request: 2.573459 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/06.prefab - artifactKey: Guid(599c89ae31742534e82d076a4dc32741) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/06.prefab using Guid(599c89ae31742534e82d076a4dc32741) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '34c346df00e892c5d3b23f7ef5f6cf1b') in 0.043606 seconds -======================================================================== -Received Import Request. - Time since last request: 4.813555 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/06.prefab - artifactKey: Guid(599c89ae31742534e82d076a4dc32741) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/06.prefab using Guid(599c89ae31742534e82d076a4dc32741) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '44fda13e778c84d10de0b8e19ad84842') in 0.034858 seconds -======================================================================== -Received Import Request. - Time since last request: 88.854480 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/07.prefab - artifactKey: Guid(9cacb16cb696c014880609eacc6701a1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/07.prefab using Guid(9cacb16cb696c014880609eacc6701a1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a421795e4c7b7da791aaa70d8f0da217') in 0.042482 seconds -======================================================================== -Received Import Request. - Time since last request: 2.314726 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/07.prefab - artifactKey: Guid(9cacb16cb696c014880609eacc6701a1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/07.prefab using Guid(9cacb16cb696c014880609eacc6701a1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '71daebf82f1910bf3c645cb877228b29') in 0.043914 seconds -======================================================================== -Received Import Request. - Time since last request: 1.918209 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/07.prefab - artifactKey: Guid(9cacb16cb696c014880609eacc6701a1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/07.prefab using Guid(9cacb16cb696c014880609eacc6701a1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ae8870907da0fa8444bb43a7c23abf44') in 0.034216 seconds -======================================================================== -Received Import Request. - Time since last request: 28.913819 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/08.prefab - artifactKey: Guid(8c9a6dd67ed67b74795e9d13c306695d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/08.prefab using Guid(8c9a6dd67ed67b74795e9d13c306695d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'faa904bacf4d35145fe2a2f70f8ccb90') in 0.043603 seconds -======================================================================== -Received Import Request. - Time since last request: 1.859789 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/08.prefab - artifactKey: Guid(8c9a6dd67ed67b74795e9d13c306695d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/08.prefab using Guid(8c9a6dd67ed67b74795e9d13c306695d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '83777c7fae6036c3a4337ee7961767fc') in 0.044564 seconds -======================================================================== -Received Import Request. - Time since last request: 2.159778 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/08.prefab - artifactKey: Guid(8c9a6dd67ed67b74795e9d13c306695d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/08.prefab using Guid(8c9a6dd67ed67b74795e9d13c306695d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd21b6b6e97e0032817c4b3b7ebacad96') in 0.034742 seconds -======================================================================== -Received Import Request. - Time since last request: 44.734335 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/09.prefab - artifactKey: Guid(14e4cbe39ca0d194ea291051c23168f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/09.prefab using Guid(14e4cbe39ca0d194ea291051c23168f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '63cdb9f4ea47ffb36f6d21f349f7c9bd') in 0.045805 seconds -======================================================================== -Received Import Request. - Time since last request: 2.020365 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/09.prefab - artifactKey: Guid(14e4cbe39ca0d194ea291051c23168f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/09.prefab using Guid(14e4cbe39ca0d194ea291051c23168f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'aaec2fa21aacb59c160bff1d994f5910') in 0.044276 seconds -======================================================================== -Received Import Request. - Time since last request: 1.857315 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/09.prefab - artifactKey: Guid(14e4cbe39ca0d194ea291051c23168f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/09.prefab using Guid(14e4cbe39ca0d194ea291051c23168f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c929823e8782a292daefca31cbc83fca') in 0.037650 seconds -======================================================================== -Received Import Request. - Time since last request: 31.822597 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/10.prefab - artifactKey: Guid(c1a7f499279733a42b215c5119a63fdd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/10.prefab using Guid(c1a7f499279733a42b215c5119a63fdd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ec04f7e3889340e072c7e91e9e250234') in 0.043357 seconds -======================================================================== -Received Import Request. - Time since last request: 3.393216 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/10.prefab - artifactKey: Guid(c1a7f499279733a42b215c5119a63fdd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/10.prefab using Guid(c1a7f499279733a42b215c5119a63fdd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd031bd376c842cb31383493bb8453b91') in 0.044232 seconds -======================================================================== -Received Import Request. - Time since last request: 3.618399 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/10.prefab - artifactKey: Guid(c1a7f499279733a42b215c5119a63fdd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/10.prefab using Guid(c1a7f499279733a42b215c5119a63fdd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '81a545ef52c3ab1cf32a6498482cc994') in 0.036490 seconds -======================================================================== -Received Import Request. - Time since last request: 32.324049 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Body.prefab - artifactKey: Guid(f048a72bdceae9245be13b418402525a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Body.prefab using Guid(f048a72bdceae9245be13b418402525a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7a702649479bb3da82dc1e2fbdfee773') in 1.779596 seconds -======================================================================== -Received Import Request. - Time since last request: 31.856292 seconds. - path: Assets/Daz3D/Races/Repthila/Female/Body.prefab - artifactKey: Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Female/Body.prefab using Guid(199372894e23cb942aa20c48bd67838e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6c3c0c502ee3a04d25774adcecf2d214') in 1.721946 seconds -======================================================================== -Received Import Request. - Time since last request: 118.118121 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/05.asset - artifactKey: Guid(5f999e0c14fbb794483d4ac8eba3709c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/05.asset using Guid(5f999e0c14fbb794483d4ac8eba3709c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c48dc5942ad9152a09898598b615f28d') in 0.009291 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000031 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/09.asset - artifactKey: Guid(7e1763fe90093f44c9f1920d2786732e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/09.asset using Guid(7e1763fe90093f44c9f1920d2786732e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '14e25a56294a051240e555c25e5b8774') in 0.007266 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000034 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/08.asset - artifactKey: Guid(a29c0dd60c1cc5c40b00b1462eb0ad36) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/08.asset using Guid(a29c0dd60c1cc5c40b00b1462eb0ad36) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '116dec3cb69bf65c369d2db97ec231df') in 0.006813 seconds -======================================================================== -Received Import Request. - Time since last request: 5225.471347 seconds. - path: Assets/Daz3D/Races/Repthila/[RACE] Repthilia.asset - artifactKey: Guid(cbed5217185d6054ba43dbc815a97b66) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/[RACE] Repthilia.asset using Guid(cbed5217185d6054ba43dbc815a97b66) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1210a6a09196498e00d14391910bfa17') in 2.709424 seconds -======================================================================== -Received Import Request. - Time since last request: 1.211474 seconds. - path: Assets/Daz3D/Races/Abyss/Male - artifactKey: Guid(1ad30b56bcc05704ea44a6f4e51b876a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Abyss/Male using Guid(1ad30b56bcc05704ea44a6f4e51b876a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '06d34e01165d3fa1b0e0f9c8dfb8747a') in 0.007308 seconds -======================================================================== -Received Import Request. - Time since last request: 0.034677 seconds. - path: Assets/Daz3D/Races/Abyss/Male/Body.prefab - artifactKey: Guid(ccc382de852d11d4782d8be4b0a35e06) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Abyss/Male/Body.prefab using Guid(ccc382de852d11d4782d8be4b0a35e06) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '68fa765f115df3b5846af451fe4044c8') in 1.496886 seconds -======================================================================== -Received Import Request. - Time since last request: 22.471152 seconds. - path: Assets/Daz3D/Races/Underworld/[RACE] Underworld.asset - artifactKey: Guid(036c456059ce8ed4a8b65935dae32000) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Underworld/[RACE] Underworld.asset using Guid(036c456059ce8ed4a8b65935dae32000) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9ba1f64de891785e6163e59b9a714700') in 1.005198 seconds -======================================================================== -Received Import Request. - Time since last request: 0.196930 seconds. - path: Assets/Daz3D/Races/Underworld/Male - artifactKey: Guid(cf4790401c6dd0e4b8a4ef469ec1bdff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Underworld/Male using Guid(cf4790401c6dd0e4b8a4ef469ec1bdff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fa09dbe3630e0209518aa23dc1f25871') in 0.002813 seconds -======================================================================== -Received Import Request. - Time since last request: 0.750650 seconds. - path: Assets/Daz3D/Races/Underworld/Male/Body 2.prefab - artifactKey: Guid(fc6cec7da4770a3439b2d4f73359a6d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Underworld/Male/Body 2.prefab using Guid(fc6cec7da4770a3439b2d4f73359a6d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5148681b05eae56dac1185d38c062440') in 1.715857 seconds -======================================================================== -Received Import Request. - Time since last request: 8435.270024 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/01.asset - artifactKey: Guid(42f5a1474ccb80f46b2cf68188744e6c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/01.asset using Guid(42f5a1474ccb80f46b2cf68188744e6c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4bcb18d8002ae95d19dd5747496b6c58') in 0.034881 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000054 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/03.asset - artifactKey: Guid(4364f4ab39f9be444add9b56745ca215) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/03.asset using Guid(4364f4ab39f9be444add9b56745ca215) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9670cbe13e8972ad077a11f36747bac2') in 0.011527 seconds -======================================================================== -Received Import Request. - Time since last request: 565.481617 seconds. - path: Assets/Daz3D/Races/Rat/Male/Body.prefab - artifactKey: Guid(213ee0a7d52f53a4abb60cb8c9d42b14) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Male/Body.prefab using Guid(213ee0a7d52f53a4abb60cb8c9d42b14) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e43295df55927e3ef678cb7333f5da76') in 1.395341 seconds -======================================================================== -Received Import Request. - Time since last request: 182.305533 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '573da426439aa9a33cc1eaaf145e7799') in 1.995907 seconds -======================================================================== -Received Import Request. - Time since last request: 29.251076 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f26fbb682ddc32de7df1daf574325386') in 1.674075 seconds -======================================================================== -Received Import Request. - Time since last request: 9.646847 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '316a630f37e1ff0f7bf9a13d0eec2a24') in 1.613100 seconds -======================================================================== -Received Import Request. - Time since last request: 7.248035 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'db3820b496ee725d2163a089a81ab6da') in 1.607578 seconds -======================================================================== -Received Import Request. - Time since last request: 3.392599 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '71a89281688714f6064e7e24e085e94a') in 1.615362 seconds -======================================================================== -Received Import Request. - Time since last request: 6.608429 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4fb5330a60844aff037f4bf526d4faba') in 1.570121 seconds -======================================================================== -Received Import Request. - Time since last request: 3.610463 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6a20fd1560ecda83db878a4b2e1f7cbe') in 1.585652 seconds -======================================================================== -Received Import Request. - Time since last request: 2.381768 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '846b69c5cf96da9e92579908eff8043d') in 1.601995 seconds -======================================================================== -Received Import Request. - Time since last request: 1.575204 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7e5169a12183fb23a26a17b4139880e3') in 1.610968 seconds -======================================================================== -Received Import Request. - Time since last request: 2.756298 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '519e318081bf605e899605b5cd1d27b2') in 1.607281 seconds -======================================================================== -Received Import Request. - Time since last request: 3.171656 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6358ceef5fb0c5bb7117efd74e306f0b') in 1.600004 seconds -======================================================================== -Received Import Request. - Time since last request: 2.998881 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd58293d60a14e79f9884dbd3eb50c2c1') in 1.591409 seconds -======================================================================== -Received Import Request. - Time since last request: 3.403887 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e1d910ba68cafe300131935fde6640ce') in 1.609034 seconds -======================================================================== -Received Import Request. - Time since last request: 2.165885 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '610c40edf8c948ed4ea002074686dcbd') in 1.578768 seconds -======================================================================== -Received Import Request. - Time since last request: 6.253432 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7757b459bd47a7c08fd61c6e5daaf840') in 1.591072 seconds -======================================================================== -Received Import Request. - Time since last request: 5.127444 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b748e887448c169ebaeb924db5e80513') in 1.593966 seconds -======================================================================== -Received Import Request. - Time since last request: 881.500371 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c523e5d09cfe6151fd622665e052af88') in 1.641104 seconds -======================================================================== -Received Import Request. - Time since last request: 2.168869 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '61d1741d8d7e0e4135a36a9570a2c659') in 1.664049 seconds -======================================================================== -Received Import Request. - Time since last request: 4.961188 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd6ec744a3f06fa5ba120b9bc76cb4a9a') in 1.614540 seconds -======================================================================== -Received Import Request. - Time since last request: 3.619387 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '59469cfe4c6672a901960b9d435758ff') in 1.624752 seconds -======================================================================== -Received Import Request. - Time since last request: 6.011470 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '322df4fff0a5b69816d37168a0d8dbcd') in 1.603461 seconds -======================================================================== -Received Prepare -Refreshing native plugins compatible for Editor in 17.07 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 90 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 7933. -Memory consumption went from 270.0 MB to 265.1 MB. -Total: 13.989200 ms (FindLiveObjects: 0.901100 ms CreateObjectMapping: 0.855700 ms MarkObjects: 10.772400 ms DeleteObjects: 1.459100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> diff --git a/Logs/AssetImportWorker0.log b/Logs/AssetImportWorker0.log index 47979b49d2..21eb882ba6 100644 --- a/Logs/AssetImportWorker0.log +++ b/Logs/AssetImportWorker0.log @@ -15,7 +15,7 @@ C:/Work/Firstborn -logFile Logs/AssetImportWorker0.log -srvPort -61352 +56215 Successfully changed project path to: C:/Work/Firstborn C:/Work/Firstborn [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -47,11 +47,11 @@ C:/Work/Firstborn "memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gfx=262144" -Player connection [2080] Host "[IP] 192.168.1.140 [Port] 0 [Flags] 2 [Guid] 569330305 [EditorId] 569330305 [Version] 1048832 [Id] WindowsEditor(7,THE-BEAST) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... +Player connection [21324] Host "[IP] 192.168.1.140 [Port] 0 [Flags] 2 [Guid] 117697134 [EditorId] 117697134 [Version] 1048832 [Id] WindowsEditor(7,THE-BEAST) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... -Player connection [2080] Host "[IP] 192.168.1.140 [Port] 0 [Flags] 2 [Guid] 569330305 [EditorId] 569330305 [Version] 1048832 [Id] WindowsEditor(7,THE-BEAST) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... +Player connection [21324] Host "[IP] 192.168.1.140 [Port] 0 [Flags] 2 [Guid] 117697134 [EditorId] 117697134 [Version] 1048832 [Id] WindowsEditor(7,THE-BEAST) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... -Refreshing native plugins compatible for Editor in 383.56 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 340.51 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2021.3.15f1 (e8e88683f834) [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/Resources/UnitySubsystems @@ -67,45 +67,42 @@ Initialize mono Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/Managed' Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono config path = 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56208 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56104 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.009845 seconds. +Registered in 0.008160 seconds. Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 373.95 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 310.50 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.146 seconds +- Completed reload, in 1.556 seconds Domain Reload Profiling: - ReloadAssembly (1147ms) - BeginReloadAssembly (95ms) + ReloadAssembly (1557ms) + BeginReloadAssembly (169ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) - EndReloadAssembly (904ms) - LoadAssemblies (92ms) + EndReloadAssembly (1132ms) + LoadAssemblies (166ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (161ms) + SetupTypeCache (520ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (35ms) - SetupLoadedEditorAssemblies (632ms) + RebuildScriptCaches (30ms) + SetupLoadedEditorAssemblies (517ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (10ms) + InitializePlatformSupportModulesInManaged (9ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (374ms) + RefreshPlugins (311ms) BeforeProcessingInitializeOnLoad (1ms) - ProcessInitializeOnLoadAttributes (187ms) - ProcessInitializeOnLoadMethodAttributes (59ms) + ProcessInitializeOnLoadAttributes (143ms) + ProcessInitializeOnLoadMethodAttributes (53ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (0ms) Platform modules already initialized, skipping Registering precompiled user dll's ... -Registered in 0.012620 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Registered in 0.013732 seconds. diff --git a/Logs/AssetImportWorker1-prev.log b/Logs/AssetImportWorker1-prev.log index fb69a9a6bc..e847c727a0 100644 --- a/Logs/AssetImportWorker1-prev.log +++ b/Logs/AssetImportWorker1-prev.log @@ -15,7 +15,7 @@ C:/Work/Firstborn -logFile Logs/AssetImportWorker1.log -srvPort -57022 +61352 Successfully changed project path to: C:/Work/Firstborn C:/Work/Firstborn [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -47,11 +47,11 @@ C:/Work/Firstborn "memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gfx=262144" -Player connection [9212] Host "[IP] 192.168.1.140 [Port] 0 [Flags] 2 [Guid] 3818274263 [EditorId] 3818274263 [Version] 1048832 [Id] WindowsEditor(7,THE-BEAST) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... +Player connection [14948] Host "[IP] 192.168.1.140 [Port] 0 [Flags] 2 [Guid] 3319639955 [EditorId] 3319639955 [Version] 1048832 [Id] WindowsEditor(7,THE-BEAST) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... -Player connection [9212] Host "[IP] 192.168.1.140 [Port] 0 [Flags] 2 [Guid] 3818274263 [EditorId] 3818274263 [Version] 1048832 [Id] WindowsEditor(7,THE-BEAST) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... +Player connection [14948] Host "[IP] 192.168.1.140 [Port] 0 [Flags] 2 [Guid] 3319639955 [EditorId] 3319639955 [Version] 1048832 [Id] WindowsEditor(7,THE-BEAST) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... -Refreshing native plugins compatible for Editor in 362.34 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 445.09 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2021.3.15f1 (e8e88683f834) [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/Resources/UnitySubsystems @@ -67,1997 +67,48 @@ Initialize mono Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/Managed' Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono config path = 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56308 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56352 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.007100 seconds. +Registered in 0.007513 seconds. Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 336.42 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 376.67 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 0.993 seconds +- Completed reload, in 1.131 seconds Domain Reload Profiling: - ReloadAssembly (994ms) - BeginReloadAssembly (78ms) + ReloadAssembly (1131ms) + BeginReloadAssembly (90ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) - EndReloadAssembly (783ms) - LoadAssemblies (76ms) + EndReloadAssembly (905ms) + LoadAssemblies (87ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (118ms) + SetupTypeCache (155ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (30ms) - SetupLoadedEditorAssemblies (569ms) + RebuildScriptCaches (37ms) + SetupLoadedEditorAssemblies (649ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (10ms) + InitializePlatformSupportModulesInManaged (11ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (336ms) - BeforeProcessingInitializeOnLoad (1ms) - ProcessInitializeOnLoadAttributes (160ms) - ProcessInitializeOnLoadMethodAttributes (61ms) + RefreshPlugins (377ms) + BeforeProcessingInitializeOnLoad (2ms) + ProcessInitializeOnLoadAttributes (183ms) + ProcessInitializeOnLoadMethodAttributes (75ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (0ms) Platform modules already initialized, skipping Registering precompiled user dll's ... -Registered in 0.011005 seconds. +Registered in 0.011805 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 347.66 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 427.36 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Mono: successfully reloaded assembly -- Completed reload, in 3.105 seconds -Domain Reload Profiling: - ReloadAssembly (3106ms) - BeginReloadAssembly (121ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (24ms) - EndReloadAssembly (2850ms) - LoadAssemblies (112ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (411ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (112ms) - SetupLoadedEditorAssemblies (2156ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (5ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (348ms) - BeforeProcessingInitializeOnLoad (164ms) - ProcessInitializeOnLoadAttributes (876ms) - ProcessInitializeOnLoadMethodAttributes (754ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) -Platform modules already initialized, skipping -======================================================================== -Worker process is ready to serve import requests -Launched and connected shader compiler UnityShaderCompiler.exe after 0.06 seconds -Refreshing native plugins compatible for Editor in 4.46 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7671 Unused Serialized files (Serialized files now loaded: 0) -Unloading 3615 unused Assets / (10.3 MB). Loaded Objects now: 7795. -Memory consumption went from 425.7 MB to 415.4 MB. -Total: 12.568500 ms (FindLiveObjects: 1.143300 ms CreateObjectMapping: 1.136200 ms MarkObjects: 4.144900 ms DeleteObjects: 6.142900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 94469.685433 seconds. - path: Assets/Daz3D/Races/Ogre/Male - artifactKey: Guid(c8305bd77b1a3e24c96f72a0abb15b7d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ogre/Male using Guid(c8305bd77b1a3e24c96f72a0abb15b7d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd16b4a8ed06adde08effd78f0e429dab') in 0.020167 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000033 seconds. - path: Assets/Daz3D/Races/Ogre/[RACE] Ogre.asset - artifactKey: Guid(f5e0d7e9b7fa3d240a02681396b13ca0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ogre/[RACE] Ogre.asset using Guid(f5e0d7e9b7fa3d240a02681396b13ca0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f6ceadfc2d627ffdf66d018e2a9574a5') in 115.947301 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000058 seconds. - path: Assets/Daz3D/Races/Ogre/Female/Body.prefab - artifactKey: Guid(c939ad4a4134a3948a664275f8c9ff8a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ogre/Female/Body.prefab using Guid(c939ad4a4134a3948a664275f8c9ff8a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7a17ae5ce0b2833f5744214b69dfb032') in 0.010018 seconds -======================================================================== -Received Import Request. - Time since last request: 417.491314 seconds. - path: Assets/Daz3D/Races/Ogre/Female/Materials/Sclera.mat - artifactKey: Guid(c882737dbabe0f743a49783a41ee7244) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ogre/Female/Materials/Sclera.mat using Guid(c882737dbabe0f743a49783a41ee7244) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd9e56c9c35074888fb5a524cda72cfb3') in 0.304208 seconds -======================================================================== -Received Import Request. - Time since last request: 3.067006 seconds. - path: Assets/Daz3D/Races/Ogre/Female/Materials/TWKtaryaTorsoB_1002.jpg - artifactKey: Guid(0bc745e563ad41f4a9e310fb3b42d37a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ogre/Female/Materials/TWKtaryaTorsoB_1002.jpg using Guid(0bc745e563ad41f4a9e310fb3b42d37a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3b9c80d8cc5fc1257ad4037b4b6fc934') in 0.035060 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000041 seconds. - path: Assets/Daz3D/Races/Ogre/Female/Materials/TWKtaryaTorsoB_1002_nm.png - artifactKey: Guid(e51f74d4bdd184d4bb87e3e5b32e5d0f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ogre/Female/Materials/TWKtaryaTorsoB_1002_nm.png using Guid(e51f74d4bdd184d4bb87e3e5b32e5d0f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '29d884928224df44f21454aea272e2b6') in 0.032467 seconds -======================================================================== -Received Import Request. - Time since last request: 84.148108 seconds. - path: Assets/Daz3D/Races/Ogre/Male/Materials - artifactKey: Guid(4c604012edad3ce4c8903f3aad78aa75) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ogre/Male/Materials using Guid(4c604012edad3ce4c8903f3aad78aa75) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '705161dbf8c30dcd9ed3102ec1d7cebb') in 0.006767 seconds -======================================================================== -Received Import Request. - Time since last request: 407.587369 seconds. - path: Assets/Daz3D/Races/Oni/Female/Body.prefab - artifactKey: Guid(9e1816e5e520e8b49a475eb25b3a7814) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Female/Body.prefab using Guid(9e1816e5e520e8b49a475eb25b3a7814) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd3bbb53b65cdbedcb5d879957abd9dab') in 6.356810 seconds -======================================================================== -Received Import Request. - Time since last request: 62.087771 seconds. - path: Assets/Daz3D/Races/Oni/Female/Body 1.prefab - artifactKey: Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Female/Body 1.prefab using Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a0ce33e4f8f1c884b8e149293337606f') in 6.575449 seconds -======================================================================== -Received Import Request. - Time since last request: 6.843013 seconds. - path: Assets/Daz3D/Races/Oni/Female/Body 1.prefab - artifactKey: Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Female/Body 1.prefab using Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c251c9f8d1d7df7a4f948b0242d1618f') in 6.481838 seconds -======================================================================== -Received Import Request. - Time since last request: 133.127633 seconds. - path: Assets/Daz3D/Races/Oni/Female/Body 1.prefab - artifactKey: Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Female/Body 1.prefab using Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd3966a31063c57c5a4509d77dc758d7d') in 6.416925 seconds -======================================================================== -Received Import Request. - Time since last request: 4.863610 seconds. - path: Assets/Daz3D/Races/Oni/Female/Body 1.prefab - artifactKey: Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Female/Body 1.prefab using Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bc70dc3fc80c28f18f8b7ee4177e8176') in 6.591605 seconds -======================================================================== -Received Import Request. - Time since last request: 18.966421 seconds. - path: Assets/Daz3D/Races/Oni/Female/Body 1.prefab - artifactKey: Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Female/Body 1.prefab using Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ce496fcf2b3ebb6c18eec71b5e53c768') in 7.008730 seconds -======================================================================== -Received Import Request. - Time since last request: 0.692533 seconds. - path: Assets/Daz3D/Races/Oni/Female/Body 1.prefab - artifactKey: Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Female/Body 1.prefab using Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0bb2b21154c8526cdb239907b5224a3e') in 7.518924 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000041 seconds. - path: Assets/Daz3D/Races/Oni/Female/Body 1.prefab - artifactKey: Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Female/Body 1.prefab using Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e48166e8222195fe8a3aaab9278ee204') in 6.914070 seconds -======================================================================== -Received Import Request. - Time since last request: 25.035214 seconds. - path: Assets/Daz3D/Races/Oni/Female/Materials/Shariana_Torso-1002T.jpg - artifactKey: Guid(ecf3da060e7bab941accfd49502158cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Female/Materials/Shariana_Torso-1002T.jpg using Guid(ecf3da060e7bab941accfd49502158cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '58d25d3c8fd7a88d85fda85aadf8abe0') in 0.029852 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000037 seconds. - path: Assets/Daz3D/Races/Oni/Female/Materials/Shariana_Torso-1002Trlu.jpg - artifactKey: Guid(52e4977082f4f5c4690831171527ad20) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Female/Materials/Shariana_Torso-1002Trlu.jpg using Guid(52e4977082f4f5c4690831171527ad20) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '57c99fdbbb6dcc859737afdbd9da3b16') in 0.027198 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000039 seconds. - path: Assets/Daz3D/Races/Oni/Female/Materials/Toenails.mat - artifactKey: Guid(03cba3afb17b5714ebd5d2de3a82d6ca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Female/Materials/Toenails.mat using Guid(03cba3afb17b5714ebd5d2de3a82d6ca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bb4c9d672a8a94403f32c866205583ef') in 0.110762 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000048 seconds. - path: Assets/Daz3D/Races/Oni/Female/Materials/Teeth.mat - artifactKey: Guid(f63af99eb78a4b74db3a8ca46b6bcdb0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Female/Materials/Teeth.mat using Guid(f63af99eb78a4b74db3a8ca46b6bcdb0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '242c2da4b33f9d0f766af1313630570a') in 0.067451 seconds -======================================================================== -Received Import Request. - Time since last request: 526.611239 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material - artifactKey: Guid(d8e0d438e4d6259498de21e3f597ba30) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material using Guid(d8e0d438e4d6259498de21e3f597ba30) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '064d7ff161a7eaca99716b6d6dd15813') in 0.008165 seconds -======================================================================== -Received Import Request. - Time since last request: 56.450831 seconds. - path: Assets/Daz3D/Races/Oumua/Female - artifactKey: Guid(53ce639d8c5a20e4f88cda86345390d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female using Guid(53ce639d8c5a20e4f88cda86345390d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '418664e04a43cf413641c7d01f0f9bd4') in 0.008475 seconds -======================================================================== -Received Import Request. - Time since last request: 0.288963 seconds. - path: Assets/Daz3D/Races/Oumua/Male - artifactKey: Guid(9ca7f272340b5244fbaf567666afc7e9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Male using Guid(9ca7f272340b5244fbaf567666afc7e9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1d1a75346cd2b24f29fa500bb5329481') in 0.002371 seconds -======================================================================== -Received Import Request. - Time since last request: 0.249625 seconds. - path: Assets/Daz3D/Races/Oumua/Male/Body.prefab - artifactKey: Guid(95c68d036a8785e4cbec4cc02f8daded) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Male/Body.prefab using Guid(95c68d036a8785e4cbec4cc02f8daded) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '08e13e283e9d0212d798a1c7542254c4') in 2.008904 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000043 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Genesis8Female - artifactKey: Guid(368c4a1dd75ff0544828914fc0d01878) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Genesis8Female using Guid(368c4a1dd75ff0544828914fc0d01878) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '41e8213dd29744efafba19f749902632') in 0.006597 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000049 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Body.prefab - artifactKey: Guid(9e89ef4a415392a47b2b3238888e50b0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Body.prefab using Guid(9e89ef4a415392a47b2b3238888e50b0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a9b9e1a10173b6a69adb954ef7d7140d') in 6.033142 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000044 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Genesis8Female/EyeSocket.mat - artifactKey: Guid(090ebc52d58e4bc47815bdc93e023856) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Genesis8Female/EyeSocket.mat using Guid(090ebc52d58e4bc47815bdc93e023856) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c90a713fed3394bdf67ad03f67e3bb91') in 0.053965 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000043 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Genesis8Female/OumuaFem_Arms_Normal.jpg - artifactKey: Guid(067e16c6a2d9f1e4e867e2d2c34aeff6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Genesis8Female/OumuaFem_Arms_Normal.jpg using Guid(067e16c6a2d9f1e4e867e2d2c34aeff6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a264bf14b27c7aa8a88b2a0eb7af5864') in 0.036241 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000040 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Genesis8Female/Mouth.mat - artifactKey: Guid(165131f3cbb24fe41845947a380cf56f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Genesis8Female/Mouth.mat using Guid(165131f3cbb24fe41845947a380cf56f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4900c8ac28b3f0a8e46ef6eabcd4a633') in 0.077714 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000045 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Genesis8Female/OumuaFem_Legs_Normal.jpg - artifactKey: Guid(ce6af9a63e9433040932160eea884260) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Genesis8Female/OumuaFem_Legs_Normal.jpg using Guid(ce6af9a63e9433040932160eea884260) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b955934eeaf3801e636ad0dd2f8d1106') in 0.030978 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Genesis8Female/OumuaFem_Torso_BaseColor.jpg - artifactKey: Guid(b8ca055a0cd04b2499f1859afe5f5f81) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Genesis8Female/OumuaFem_Torso_BaseColor.jpg using Guid(b8ca055a0cd04b2499f1859afe5f5f81) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1d6c676e421affd6c91a396583b4ae55') in 0.022311 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000037 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Genesis8Female/OumuaFem_Legs_Roughness.jpg - artifactKey: Guid(03f5df83372877c44a04f7850f334df7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Genesis8Female/OumuaFem_Legs_Roughness.jpg using Guid(03f5df83372877c44a04f7850f334df7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8eb173265ecb7c1c555ae4f62edcda44') in 0.020614 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000051 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Genesis8Female/OumuaFem_Arms_Roughness.jpg - artifactKey: Guid(bc2c1e3529ce9af4a904201acf7d4576) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Genesis8Female/OumuaFem_Arms_Roughness.jpg using Guid(bc2c1e3529ce9af4a904201acf7d4576) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '493430fa6d30b6a4cc73ca070ac4f675') in 0.021787 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000042 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Genesis8Female/OumuaFem_Mouth_Normal.jpg - artifactKey: Guid(a0ba27d5add21da428488f6eeeea583f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Genesis8Female/OumuaFem_Mouth_Normal.jpg using Guid(a0ba27d5add21da428488f6eeeea583f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9778d9417fdd91fd9ca513baa6ba632d') in 0.037443 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000038 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Genesis8Female/OumuaFem_Face_Height.jpg - artifactKey: Guid(849a58a26422cfd4da05634e5092655d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Genesis8Female/OumuaFem_Face_Height.jpg using Guid(849a58a26422cfd4da05634e5092655d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ef39f4c4554804c886ffa51269fcd06c') in 0.023163 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000042 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Genesis8Female/OumuaFem_Mouth_Height.jpg - artifactKey: Guid(276f92d948b147c4c93c25ae0f7a2d74) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Genesis8Female/OumuaFem_Mouth_Height.jpg using Guid(276f92d948b147c4c93c25ae0f7a2d74) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2f8532be4b8893edb4a6c31ff6a20914') in 0.025329 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000031 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Genesis8Female/Lips.mat - artifactKey: Guid(7cf4f6c8d7fa07e43b6139c22cb11d9b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Genesis8Female/Lips.mat using Guid(7cf4f6c8d7fa07e43b6139c22cb11d9b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a37c07d474fc984fcbff5baa568303cf') in 0.053608 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000044 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Genesis8Female/Arms.mat - artifactKey: Guid(eb068d2c43b664a489b25ef6c522c3ad) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Genesis8Female/Arms.mat using Guid(eb068d2c43b664a489b25ef6c522c3ad) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '00000000000000000000000000000000') in 0.455877 seconds code(4) message(Build asset version error: assets/daz3d/races/oumua/female/genesis8female/arms.mat in SourceAssetDB has modification time of '2023-03-21T04:00:20.772Z' while content on disk has modification time of '0001-01-01T00:00:00Z' with error code 2 -Stacktrace: -0x00007ff6f9eac77d (Unity) StackWalker::GetCurrentCallstack -0x00007ff6f9eb3339 (Unity) StackWalker::ShowCallstack -0x00007ff6fae20003 (Unity) GetStacktrace -0x00007ff6fb1be234 (Unity) GetAssetHashAndValidate -0x00007ff6fb1b9798 (Unity) AssetVersionBuilder::BuildHashOfSourceAssetArray -0x00007ff6fb1b776d (Unity) AssetVersionBuilder::BuildAssetVersion -0x00007ff6fb13ed1a (Unity) CreateAssetVersionBuilder -0x00007ff6fb145813 (Unity) ImportToObjects -0x00007ff6fb144543 (Unity) ImportAsset -0x00007ff6fb166f82 (Unity) AssetImportWorker::Import -0x00007ff6fb1cdee4 (Unity) ::operator() -0x00007ff6fb20eaa2 (Unity) asio::detail::completion_handler,asio::io_context::basic_executor_type,0> >::do_complete -0x00007ff6fb1fa98e (Unity) asio::detail::win_iocp_io_context::do_one -0x00007ff6fb1fc5f4 (Unity) asio::detail::win_iocp_io_context::run -0x00007ff6fb20ce8e (Unity) IOService::Run -0x00007ff6fb1dfa9f (Unity) AssetImportWorkerClient::Run -0x00007ff6fb1a9ae3 (Unity) RunAssetImportWorkerClientV2 -0x00007ff6fb1a9b6b (Unity) RunAssetImporterV2 -0x00007ff6fa9c6208 (Unity) Application::InitializeProject -0x00007ff6fae2a758 (Unity) WinMain -0x00007ff6fc1ccade (Unity) __scrt_common_main_seh -0x00007ffb653d7604 (KERNEL32) BaseThreadInitThunk -0x00007ffb657026a1 (ntdll) RtlUserThreadStart -) - ERROR: Build asset version error: assets/daz3d/races/oumua/female/genesis8female/arms.mat in SourceAssetDB has modification time of '2023-03-21T04:00:20.772Z' while content on disk has modification time of '0001-01-01T00:00:00Z' with error code 2 -Stacktrace: -0x00007ff6f9eac77d (Unity) StackWalker::GetCurrentCallstack -0x00007ff6f9eb3339 (Unity) StackWalker::ShowCallstack -0x00007ff6fae20003 (Unity) GetStacktrace -0x00007ff6fb1be234 (Unity) GetAssetHashAndValidate -0x00007ff6fb1b9798 (Unity) AssetVersionBuilder::BuildHashOfSourceAssetArray -0x00007ff6fb1b776d (Unity) AssetVersionBuilder::BuildAssetVersion -0x00007ff6fb13ed1a (Unity) CreateAssetVersionBuilder -0x00007ff6fb145813 (Unity) ImportToObjects -0x00007ff6fb144543 (Unity) ImportAsset -0x00007ff6fb166f82 (Unity) AssetImportWorker::Import -0x00007ff6fb1cdee4 (Unity) ::operator() -0x00007ff6fb20eaa2 (Unity) asio::detail::completion_handler,asio::io_context::basic_executor_type,0> >::do_complete -0x00007ff6fb1fa98e (Unity) asio::detail::win_iocp_io_context::do_one -0x00007ff6fb1fc5f4 (Unity) asio::detail::win_iocp_io_context::run -0x00007ff6fb20ce8e (Unity) IOService::Run -0x00007ff6fb1dfa9f (Unity) AssetImportWorkerClient::Run -0x00007ff6fb1a9ae3 (Unity) RunAssetImportWorkerClientV2 -0x00007ff6fb1a9b6b (Unity) RunAssetImporterV2 -0x00007ff6fa9c6208 (Unity) Application::InitializeProject -0x00007ff6fae2a758 (Unity) WinMain -0x00007ff6fc1ccade (Unity) __scrt_common_main_seh -0x00007ffb653d7604 (KERNEL32) BaseThreadInitThunk -0x00007ffb657026a1 (ntdll) RtlUserThreadStart - -======================================================================== -Received Import Request. - Time since last request: 0.273208 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Materials - artifactKey: Guid(368c4a1dd75ff0544828914fc0d01878) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Materials using Guid(368c4a1dd75ff0544828914fc0d01878) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '601bf83581f1d717d5339464087fbbcf') in 0.002578 seconds -======================================================================== -Received Import Request. - Time since last request: 7.481673 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Oni_Legs-1003N.jpg - artifactKey: Guid(e5c43941812b20e4e8728e9465460b72) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Oni_Legs-1003N.jpg using Guid(e5c43941812b20e4e8728e9465460b72) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7a52a5c3b12fcab5cc1fbaba1b1d17a7') in 0.018712 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000033 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/OniEye-1006BT_nm.png - artifactKey: Guid(fa2bdd0eebaf43447b4be8b19d4d25c8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/OniEye-1006BT_nm.png using Guid(fa2bdd0eebaf43447b4be8b19d4d25c8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0b680125f31d4b35e32adc0c92789f9b') in 0.023185 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000034 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Oni_Torso-1002T.jpg - artifactKey: Guid(8c794527261435047bd8810c6f07b225) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Oni_Torso-1002T.jpg using Guid(8c794527261435047bd8810c6f07b225) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'db341458bf4e7fe24e86f6fa289c58a1') in 0.018049 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000038 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Oni_Mouth-1005B.jpg - artifactKey: Guid(0f81ea66dfb62c147bdd317a8d821ddc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Oni_Mouth-1005B.jpg using Guid(0f81ea66dfb62c147bdd317a8d821ddc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd8aa8a60e82446a82ede39ceadc44abb') in 0.018018 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000032 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Oni_Torso-1002S.jpg - artifactKey: Guid(fd0bdc15551101d45ab1bd69eda2be41) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Oni_Torso-1002S.jpg using Guid(fd0bdc15551101d45ab1bd69eda2be41) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f5321625048378df00e54f44cd05ac27') in 0.027286 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Pupils.mat - artifactKey: Guid(197e67f29c347b3409edf687b8fc045f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Pupils.mat using Guid(197e67f29c347b3409edf687b8fc045f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1691534972dd35218a59f1e2c600b0bf') in 0.021509 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000048 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Torso.mat - artifactKey: Guid(53310cac02bcdd74485f86626a7937bd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Torso.mat using Guid(53310cac02bcdd74485f86626a7937bd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fff7e22513db233599d7baf42f2da46c') in 0.022649 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000033 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Oni_Legs-1003S.jpg - artifactKey: Guid(0df84d2420b459e42bbf878807ff3103) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Oni_Legs-1003S.jpg using Guid(0df84d2420b459e42bbf878807ff3103) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '81e07d3bdb7070a15c9dc50144e09b64') in 0.021568 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000032 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Oni_Legs-1003Trlu.jpg - artifactKey: Guid(ab0b1ad55cf9ad540889a82d125ca407) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Oni_Legs-1003Trlu.jpg using Guid(ab0b1ad55cf9ad540889a82d125ca407) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bad4abdadc4171dc4d03bfb4f0daf369') in 0.015414 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000033 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Oni_Mouth-1005B_nm.png - artifactKey: Guid(28c85e2d25f96774cad8f24d8faaaec3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Oni_Mouth-1005B_nm.png using Guid(28c85e2d25f96774cad8f24d8faaaec3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5ca6045f330cb7346ef4c5093d8a454b') in 0.016731 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000041 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Teeth.mat - artifactKey: Guid(282e5055eb7bb4d49af9f4a8da230652) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Teeth.mat using Guid(282e5055eb7bb4d49af9f4a8da230652) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '84fa25f030da7bf86399dfc31a622337') in 0.020732 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000033 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Oni_Torso-1002N.jpg - artifactKey: Guid(083baaea72d6801468afc38860a0c059) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Oni_Torso-1002N.jpg using Guid(083baaea72d6801468afc38860a0c059) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c2275b3a6bdddf1341a15c0091e1fc4d') in 0.020323 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000032 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Sclera.mat - artifactKey: Guid(36ae8db1e32c3c6489844a881c101f5f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Sclera.mat using Guid(36ae8db1e32c3c6489844a881c101f5f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2d87e0587fa446dffbcc2399e1fb9318') in 0.019724 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000035 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/OniEye-1006BT.jpg - artifactKey: Guid(b853cea17c8332d4caf5524888b83b49) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/OniEye-1006BT.jpg using Guid(b853cea17c8332d4caf5524888b83b49) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b3f2dc7237c15b8de68178372b339c1e') in 0.016004 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000043 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Oni_Torso-1002Trlu.jpg - artifactKey: Guid(9f41fb029f345c44c9ca32ae9d168fef) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Oni_Torso-1002Trlu.jpg using Guid(9f41fb029f345c44c9ca32ae9d168fef) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e78659df77eed4374b7e1a9f4166369e') in 0.016401 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000031 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Oni_Torso-1002B.jpg - artifactKey: Guid(c596a340d99e2604cab422a256831e90) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Oni_Torso-1002B.jpg using Guid(c596a340d99e2604cab422a256831e90) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b65117976de617506a4b377f46229296') in 0.015537 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/OniEye-1006T.jpg - artifactKey: Guid(adfc1ec262d36d84bb6588029e23d89c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/OniEye-1006T.jpg using Guid(adfc1ec262d36d84bb6588029e23d89c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cdb78f271c97bf2a4abddf5d3391badd') in 0.014985 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000031 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Oni_Mouth-1005T.jpg - artifactKey: Guid(4dabe2bdc1c51fd478616ccc3f82bccc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Oni_Mouth-1005T.jpg using Guid(4dabe2bdc1c51fd478616ccc3f82bccc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '885421eeda85f6e3eec1460baeffd895') in 0.015902 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000033 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Oni_Legs-1003T.jpg - artifactKey: Guid(2b84fe707d013044b85790a5628efc40) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Oni_Legs-1003T.jpg using Guid(2b84fe707d013044b85790a5628efc40) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd6f7890ac42691ca34261f3a55d3b779') in 0.014786 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000031 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Toenails.mat - artifactKey: Guid(321aaedbb612ec844aeb669cd07cb462) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Toenails.mat using Guid(321aaedbb612ec844aeb669cd07cb462) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2aeca3af4158c455c96737e11000edf9') in 0.021450 seconds -======================================================================== -Received Import Request. - Time since last request: 31.367401 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Oni_Face-1001B_nm.png - artifactKey: Guid(df24f0315e2553847b1a4188aa6193db) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Oni_Face-1001B_nm.png using Guid(df24f0315e2553847b1a4188aa6193db) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '455e458832ceedae14b5e96f3a051443') in 0.017965 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000038 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Oni_Horn_Trlu.jpg - artifactKey: Guid(560e10c881eb409448936a7b4c6a9d09) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Oni_Horn_Trlu.jpg using Guid(560e10c881eb409448936a7b4c6a9d09) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '27904b117b0fe47acc14f9c25727ffae') in 0.022473 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000039 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Oni_Face-1001S.jpg - artifactKey: Guid(6dee0b7a243d1024a9d599b4ddf5572e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Oni_Face-1001S.jpg using Guid(6dee0b7a243d1024a9d599b4ddf5572e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f34322b239ada765598dffd1f01e55e4') in 0.022465 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000057 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Oni_Face-1001T2.jpg - artifactKey: Guid(59decee3558babc43b73043e401c36d4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Oni_Face-1001T2.jpg using Guid(59decee3558babc43b73043e401c36d4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2e25bdbdbac1b197ccedac978125f12a') in 0.015100 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000042 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Oni_Legs-1003B.jpg - artifactKey: Guid(b465012e4c81e94478963774f1ee8caa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Oni_Legs-1003B.jpg using Guid(b465012e4c81e94478963774f1ee8caa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e212a81a1b7b62b9d1725e619a4168ec') in 0.016012 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000031 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Oni_Face-1001T.jpg - artifactKey: Guid(bee13b56d88a9e54ea10e834df3d30e2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Oni_Face-1001T.jpg using Guid(bee13b56d88a9e54ea10e834df3d30e2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '974a71835fa31c2004b2321c6db87b9e') in 0.015577 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000040 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Oni_Face-1001Trlu.jpg - artifactKey: Guid(1596016e44aeaaf4395b662487d55024) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Oni_Face-1001Trlu.jpg using Guid(1596016e44aeaaf4395b662487d55024) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5ddeee1a98a9cf1af80b23c5af5f0505') in 0.015302 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000031 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Oni_Face-1001N.jpg - artifactKey: Guid(2418bb5df0183ae45ba3b2e1e62d239e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Oni_Face-1001N.jpg using Guid(2418bb5df0183ae45ba3b2e1e62d239e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '72fe0bf7f14a79571cbd4f3dd432c7dd') in 0.016140 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000032 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Oni_Horn_T.jpg - artifactKey: Guid(1ac81a15dd3a158469d508556f6daa7b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Oni_Horn_T.jpg using Guid(1ac81a15dd3a158469d508556f6daa7b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '180f677d0f526395be1ad9dfacb7cbd9') in 0.022105 seconds -======================================================================== -Received Import Request. - Time since last request: 9.099674 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Teeth.mat - artifactKey: Guid(282e5055eb7bb4d49af9f4a8da230652) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Teeth.mat using Guid(282e5055eb7bb4d49af9f4a8da230652) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '52db6464b9e0d288315a75109f0858f7') in 0.053301 seconds -======================================================================== -Received Import Request. - Time since last request: 10.665757 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Lips.mat - artifactKey: Guid(62f61d4d2b7ce6149a36b77f447c9015) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Lips.mat using Guid(62f61d4d2b7ce6149a36b77f447c9015) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f5521d154f3e036f9ebe471cd80e553d') in 0.024018 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000038 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Mouth.mat - artifactKey: Guid(f51d6427f50b9824eb59ef9b9e84fba1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Mouth.mat using Guid(f51d6427f50b9824eb59ef9b9e84fba1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '80766b595d1255c929829baaa9fcd0f1') in 0.015728 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000044 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Oni_Arm-1004Trlu.jpg - artifactKey: Guid(e50c24e11ec37144da8d608693c1f95a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Oni_Arm-1004Trlu.jpg using Guid(e50c24e11ec37144da8d608693c1f95a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5356ef64202ec63828946b4379c07b76') in 0.020498 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000033 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Oni_Arm-1004T.jpg - artifactKey: Guid(6acb1cf5fd6243c439b0b962ef419245) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Oni_Arm-1004T.jpg using Guid(6acb1cf5fd6243c439b0b962ef419245) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '32778da05cba429dfe87d5ce77b956e0') in 0.017794 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000040 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Oni-Lashes-1001.jpg - artifactKey: Guid(54d0bffd5d3d00f4eb13dc05bac2185c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Oni-Lashes-1001.jpg using Guid(54d0bffd5d3d00f4eb13dc05bac2185c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ce89fc510a9af963788f7783ecaac9cf') in 0.018425 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000030 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Oni_Arm-1004B.jpg - artifactKey: Guid(dc3d1fcfca1d8df4786aa42507f973af) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Oni_Arm-1004B.jpg using Guid(dc3d1fcfca1d8df4786aa42507f973af) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c4895e5fcb1469578ab0151f98b857f0') in 0.018563 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000031 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Oni_Arm-1004N.jpg - artifactKey: Guid(89c8e81c45b1b6f499cfdba7ba875637) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Oni_Arm-1004N.jpg using Guid(89c8e81c45b1b6f499cfdba7ba875637) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd3c25913968ab5db1c1e57d7baa9d66e') in 0.021912 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000041 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Oni_Face-1001B.jpg - artifactKey: Guid(a567c773e52f32f4493558edd09b3a6e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Oni_Face-1001B.jpg using Guid(a567c773e52f32f4493558edd09b3a6e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ca55b7968fea8260d8fa2a8eccc9c0c6') in 0.016643 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000029 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Oni_Arm-1004S.jpg - artifactKey: Guid(13080a795f8d0c048b2ac34ed79dc15d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Oni_Arm-1004S.jpg using Guid(13080a795f8d0c048b2ac34ed79dc15d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '46bbc28d7d34095d964c3c35c1f6fad6') in 0.030931 seconds -======================================================================== -Received Import Request. - Time since last request: 0.616343 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Arms.mat - artifactKey: Guid(e08d8829888dc44449c5e71958087983) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Arms.mat using Guid(e08d8829888dc44449c5e71958087983) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3b1b8b44742e01c975c1004c132b0633') in 0.022919 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000044 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Fingernails.mat - artifactKey: Guid(955e2df185b86c0468c632d8ee633e53) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Fingernails.mat using Guid(955e2df185b86c0468c632d8ee633e53) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0979c3686be697522e7bc60622c594c0') in 0.021905 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000046 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/LeftHorn_Oni_Horns2.mat - artifactKey: Guid(15ed8da8fc3853b4091169fdb31c5788) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/LeftHorn_Oni_Horns2.mat using Guid(15ed8da8fc3853b4091169fdb31c5788) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dbdce8bafac136d57b75a9240fa6f79a') in 0.027196 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000039 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/EyeSocket.mat - artifactKey: Guid(f9825d6b7c7408448a13a4283d32f587) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/EyeSocket.mat using Guid(f9825d6b7c7408448a13a4283d32f587) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f00b44419d2a2835f544d61f568017d0') in 0.022136 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000032 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Face.mat - artifactKey: Guid(df3999eb3ca0f0d4e8252579413b098b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Face.mat using Guid(df3999eb3ca0f0d4e8252579413b098b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '65820792e4889d9d009b35601752fff2') in 0.028043 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000033 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Irises.mat - artifactKey: Guid(9f7d072dd07e1e449a2a6432dc86e5aa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Irises.mat using Guid(9f7d072dd07e1e449a2a6432dc86e5aa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3445768d845f275f1d3aa4f1399a5946') in 0.014760 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000033 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Eyelashes.mat - artifactKey: Guid(e04de8671be83e041913510d356cacb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Eyelashes.mat using Guid(e04de8671be83e041913510d356cacb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4dac36e3de49a77092ce290d442c9150') in 0.017485 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000039 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Legs.mat - artifactKey: Guid(9b3e69f4904c28f4c8f625cc16ad196e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Legs.mat using Guid(9b3e69f4904c28f4c8f625cc16ad196e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9d14407eafd7c2be9115ca3b44cd8c4a') in 0.022725 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000042 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Ears.mat - artifactKey: Guid(4a99536265b23c04f987c733a3629806) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Ears.mat using Guid(4a99536265b23c04f987c733a3629806) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0dc50cde816b0755803d268b427fec75') in 0.022012 seconds -======================================================================== -Received Import Request. - Time since last request: 6.133482 seconds. - path: Assets/Daz3D/Races/Oni/Male/Material/Eyelashes.mat - artifactKey: Guid(e04de8671be83e041913510d356cacb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Material/Eyelashes.mat using Guid(e04de8671be83e041913510d356cacb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3455620c9f1ccd8c3914d66eae6ec5ee') in 0.034823 seconds -======================================================================== -Received Import Request. - Time since last request: 83.533286 seconds. - path: Assets/Daz3D/Races/Human/Male/Materials/g8mbasefacemapb01_1001_nm.png - artifactKey: Guid(424fecb1a1577584b981f5b9fddcc249) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Male/Materials/g8mbasefacemapb01_1001_nm.png using Guid(424fecb1a1577584b981f5b9fddcc249) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '735982605a1d9c90bff9161cf480540f') in 0.026238 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000039 seconds. - path: Assets/Daz3D/Races/Human/Male/Materials/g8mbasemouthmapb_1005.jpg - artifactKey: Guid(979fa9d0acff6494bbeccb242d20a70a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Male/Materials/g8mbasemouthmapb_1005.jpg using Guid(979fa9d0acff6494bbeccb242d20a70a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd3eb85c75b9f46b363acf05f5ae94321') in 0.024399 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000050 seconds. - path: Assets/Daz3D/Races/Human/Male/Materials/g8mbasefacemapd01_1001.jpg - artifactKey: Guid(40dd0ae6585875b419422daebfaaf30c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Male/Materials/g8mbasefacemapd01_1001.jpg using Guid(40dd0ae6585875b419422daebfaaf30c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5fc56217817d55079c6d1907da8e3005') in 0.026149 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000038 seconds. - path: Assets/Daz3D/Races/Human/Male/Materials/g8mbaselegsmapb_1003.jpg - artifactKey: Guid(5d50d6a7872fbae488cfa7b84f300e13) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Male/Materials/g8mbaselegsmapb_1003.jpg using Guid(5d50d6a7872fbae488cfa7b84f300e13) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '807fe96c594c9e2f7268c1a3dfc04c60') in 0.023897 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000032 seconds. - path: Assets/Daz3D/Races/Human/Male/Materials/g8mbasefacemapsss_1001.jpg - artifactKey: Guid(d8e295f53b1574349b13f01ef97f3bcb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Male/Materials/g8mbasefacemapsss_1001.jpg using Guid(d8e295f53b1574349b13f01ef97f3bcb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6d18cbf16b73c0afdfb6d3fb4cd2f1ca') in 0.022414 seconds -======================================================================== -Received Import Request. - Time since last request: 0.505024 seconds. - path: Assets/Daz3D/Races/Human/Male/Materials/g8mbasemouthmapd_1005.jpg - artifactKey: Guid(4ad3f9883e4fa5f429ab1c63da23166e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Male/Materials/g8mbasemouthmapd_1005.jpg using Guid(4ad3f9883e4fa5f429ab1c63da23166e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd9e1ada90b884895325df9f430906e79') in 0.023910 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000038 seconds. - path: Assets/Daz3D/Races/Human/Male/Materials/Legs.mat - artifactKey: Guid(19041e44db79a274695c64c2f1a9d8ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Male/Materials/Legs.mat using Guid(19041e44db79a274695c64c2f1a9d8ab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd766f032b03dab8e42ae0f6a88d1d10e') in 0.031310 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000037 seconds. - path: Assets/Daz3D/Races/Human/Male/Materials/g8mbasetorsomapb_1002.jpg - artifactKey: Guid(9edcc49a1f70adb49a2818e6411c809f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Male/Materials/g8mbasetorsomapb_1002.jpg using Guid(9edcc49a1f70adb49a2818e6411c809f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5b8875255ca1fd95a516716f6262a190') in 0.022595 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/Daz3D/Races/Human/Male/Materials/Lips.mat - artifactKey: Guid(2fccfbc3dbb6666439637bf6e006dc71) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Male/Materials/Lips.mat using Guid(2fccfbc3dbb6666439637bf6e006dc71) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '01a186d4c1cafdaec809e9cbb34ce629') in 0.039541 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000032 seconds. - path: Assets/Daz3D/Races/Human/Male/Materials/g8mbasetorsomapb_1002_nm.png - artifactKey: Guid(77051b1a2d738c948bdde980bdfd27ee) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Male/Materials/g8mbasetorsomapb_1002_nm.png using Guid(77051b1a2d738c948bdde980bdfd27ee) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '023b270986e0234f0a0406638bc66c7d') in 0.022760 seconds -======================================================================== -Received Import Request. - Time since last request: 0.351486 seconds. - path: Assets/Daz3D/Races/Human/Male/Materials/Pupils.mat - artifactKey: Guid(b226ab3d52cab5a48893040f1b85154f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Male/Materials/Pupils.mat using Guid(b226ab3d52cab5a48893040f1b85154f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b435e2d1cf42f89279ab46e9831186a5') in 0.025869 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000032 seconds. - path: Assets/Daz3D/Races/Human/Male/Materials/Sclera.mat - artifactKey: Guid(440c3463c5bc73b4e9603d04708e0138) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Male/Materials/Sclera.mat using Guid(440c3463c5bc73b4e9603d04708e0138) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2a8b5f24b90fb081c7d41359bf5955d0') in 0.027656 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000042 seconds. - path: Assets/Daz3D/Races/Human/Male/Materials/Teeth.mat - artifactKey: Guid(67ae048750c37e8458c9e9384cf3aed4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Male/Materials/Teeth.mat using Guid(67ae048750c37e8458c9e9384cf3aed4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c15350c6f907dc93b8fc6209b9d5e284') in 0.027012 seconds -======================================================================== -Received Import Request. - Time since last request: 166.151376 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Materials/Ears.mat - artifactKey: Guid(2620bb415bc5c81468bd5b3479f42971) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Materials/Ears.mat using Guid(2620bb415bc5c81468bd5b3479f42971) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'db909e4a348364566772f25c3aa8dfae') in 0.055168 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Materials/OumuaFem_Face_Normal.jpg - artifactKey: Guid(f1197d893f93ca747b04695784fbd12e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Materials/OumuaFem_Face_Normal.jpg using Guid(f1197d893f93ca747b04695784fbd12e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5a521069c75f353eddea4fead27a531d') in 0.035211 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000053 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Materials/OumuaFem_Legs_Height.jpg - artifactKey: Guid(a3b35601298e656469cbeaa07ab2f69a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Materials/OumuaFem_Legs_Height.jpg using Guid(a3b35601298e656469cbeaa07ab2f69a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b81c62cce8a863a6701c5497d66c6b82') in 0.030932 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Materials/Fingernails.mat - artifactKey: Guid(54deedd563d8e2048bde6d8e269eb6ba) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Materials/Fingernails.mat using Guid(54deedd563d8e2048bde6d8e269eb6ba) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f5e5849b2a21b51ab48e2f3b2423cf15') in 0.053821 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000031 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Materials/OumuaFem_Face_BaseColor.jpg - artifactKey: Guid(61df3e7c51d4d9647bbfac3a4fb4d612) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Materials/OumuaFem_Face_BaseColor.jpg using Guid(61df3e7c51d4d9647bbfac3a4fb4d612) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9d346fd708b2521e91d53b5156b3653d') in 0.023033 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Materials/Irises.mat - artifactKey: Guid(288000e83c9f27c44993708dcde9eb4d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Materials/Irises.mat using Guid(288000e83c9f27c44993708dcde9eb4d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bdcd9259e2c718d027b7765d958f610d') in 0.035200 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000031 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Materials/Face.mat - artifactKey: Guid(210eed8c996f5904bb5e384146339d64) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Materials/Face.mat using Guid(210eed8c996f5904bb5e384146339d64) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1baf28ff9a6392467c30bc880a16f9d5') in 0.053158 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000039 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Materials/OumuaFem_Mouth_BaseColor.jpg - artifactKey: Guid(6696d3e105b15ac4e80627a16395ff03) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Materials/OumuaFem_Mouth_BaseColor.jpg using Guid(6696d3e105b15ac4e80627a16395ff03) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cdec36264e407b1990d88e386273961f') in 0.022467 seconds -======================================================================== -Received Import Request. - Time since last request: 26.899555 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Materials/OumuaFem_Torso_Roughness.jpg - artifactKey: Guid(3d2c057f406177040bf8f57448619a23) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Materials/OumuaFem_Torso_Roughness.jpg using Guid(3d2c057f406177040bf8f57448619a23) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '887f83dd13b88b9b4389ce10c1cdc7c2') in 0.019143 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000039 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Materials/Torso.mat - artifactKey: Guid(475e5a1589189f743ba12f49fdecf081) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Materials/Torso.mat using Guid(475e5a1589189f743ba12f49fdecf081) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e3391da8453be17d3a68cdadfe7498cd') in 0.048631 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000033 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Materials/Toenails.mat - artifactKey: Guid(f7569061fd1c28447bc4c2a3a84e01b1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Materials/Toenails.mat using Guid(f7569061fd1c28447bc4c2a3a84e01b1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '87b73f98fde07e72da9af8feba96538b') in 0.049009 seconds -======================================================================== -Received Import Request. - Time since last request: 464.176166 seconds. - path: Assets/Daz3D/Races/Ozias/Female/Body.prefab - artifactKey: Guid(1e857efeea3b9094ab657666247dc37e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Female/Body.prefab using Guid(1e857efeea3b9094ab657666247dc37e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c51eaae3660a774ed8f467bf3e7dd689') in 6.099237 seconds -======================================================================== -Received Import Request. - Time since last request: 141.625652 seconds. - path: Assets/Daz3D/Races/Ozias/Female/Body.prefab - artifactKey: Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Female/Body.prefab using Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2540c20fd469a1576c12821b18f77464') in 6.701902 seconds -======================================================================== -Received Import Request. - Time since last request: 6.025463 seconds. - path: Assets/Daz3D/Races/Ozias/Female/Body.prefab - artifactKey: Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Female/Body.prefab using Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '283a3237427fe9a163fa5651352ec9a3') in 6.540740 seconds -======================================================================== -Received Import Request. - Time since last request: 0.366258 seconds. - path: Assets/Daz3D/Races/Ozias/Female/Body.prefab - artifactKey: Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Female/Body.prefab using Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f76f84dd99a45ff5db2f2606c725fcab') in 6.826461 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000056 seconds. - path: Assets/Daz3D/Races/Ozias/Female/Body.prefab - artifactKey: Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Female/Body.prefab using Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '773e1b39ad554856665b75058d5077be') in 6.743364 seconds -======================================================================== -Received Import Request. - Time since last request: 0.328803 seconds. - path: Assets/Daz3D/Races/Ozias/Female/Body.prefab - artifactKey: Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Female/Body.prefab using Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd2a01ce5ba1ef3c837198bb9eefd1380') in 6.714006 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000045 seconds. - path: Assets/Daz3D/Races/Ozias/Female/Body.prefab - artifactKey: Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Female/Body.prefab using Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cbedd3a1d47a3d3cefab66c1e23dc66f') in 6.705854 seconds -======================================================================== -Received Import Request. - Time since last request: 13.377940 seconds. - path: Assets/Daz3D/Races/Ozias/Female/Body.prefab - artifactKey: Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Female/Body.prefab using Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ea69e5a8ed7466cf97b53f0ae906175a') in 6.427601 seconds -======================================================================== -Received Import Request. - Time since last request: 22.127040 seconds. - path: Assets/Daz3D/Races/Ozias/Female/Materials/Pupils.mat - artifactKey: Guid(8fb8dc8c07ec147449abfbb778285545) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Female/Materials/Pupils.mat using Guid(8fb8dc8c07ec147449abfbb778285545) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '731b3f847a893c8f8b27ebc2fbd8d5db') in 0.054950 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000030 seconds. - path: Assets/Daz3D/Races/Ozias/Female/Materials/Torso.mat - artifactKey: Guid(d8a916cab3cbcf24ab869590103de171) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Female/Materials/Torso.mat using Guid(d8a916cab3cbcf24ab869590103de171) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7123b6fd068557a94e0da8235b0cc0c3') in 0.124851 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000037 seconds. - path: Assets/Daz3D/Races/Ozias/Female/Materials/Teeth.mat - artifactKey: Guid(adcc52c1c68cc2f4fa6708669f20a41b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Female/Materials/Teeth.mat using Guid(adcc52c1c68cc2f4fa6708669f20a41b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '89ac496597a40704c065ff332f167868') in 0.077553 seconds -======================================================================== -Received Import Request. - Time since last request: 208.406633 seconds. - path: Assets/Daz3D/Races/Oni/[RACE] Oni.asset - artifactKey: Guid(6e063ea130700764cb8166294c3f5385) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/[RACE] Oni.asset using Guid(6e063ea130700764cb8166294c3f5385) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '73eb04c2891bd13bedb23c1cabed118c') in 2.374283 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000057 seconds. - path: Assets/Daz3D/Races/Ogre/[RACE] Ogre.asset - artifactKey: Guid(f5e0d7e9b7fa3d240a02681396b13ca0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ogre/[RACE] Ogre.asset using Guid(f5e0d7e9b7fa3d240a02681396b13ca0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ae2744be776ab155571eaa1126cdc18a') in 111.966200 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000063 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/01.prefab - artifactKey: Guid(1e41649e61cf8de4c929834aa06cce1b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/01.prefab using Guid(1e41649e61cf8de4c929834aa06cce1b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '09c56da38a6d60cd2e746c71f6bc8383') in 0.037410 seconds -======================================================================== -Received Import Request. - Time since last request: 294.774460 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/01 1.prefab - artifactKey: Guid(dd1ab08883ead8d4b91a41c0675995b0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/01 1.prefab using Guid(dd1ab08883ead8d4b91a41c0675995b0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9c292c9b4b97c0b342b4cae13e94e97e') in 0.036039 seconds -======================================================================== -Received Import Request. - Time since last request: 12.397762 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/01 2.prefab - artifactKey: Guid(caeb1dbcef457f04a9bfbb4ffaae019a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/01 2.prefab using Guid(caeb1dbcef457f04a9bfbb4ffaae019a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'deb0eab10c5ca18fd8291bebc7ebc93b') in 0.034263 seconds -======================================================================== -Received Import Request. - Time since last request: 1.134311 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/01 3.prefab - artifactKey: Guid(d698ab8931674c8429a18a6a3389e0b2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/01 3.prefab using Guid(d698ab8931674c8429a18a6a3389e0b2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c812760a4ddd024e9ed28e02b14ec1d1') in 0.037489 seconds -======================================================================== -Received Import Request. - Time since last request: 0.978511 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/01 4.prefab - artifactKey: Guid(fcabbd4d2c94b954c961bdee18f0620b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/01 4.prefab using Guid(fcabbd4d2c94b954c961bdee18f0620b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e4956ad03efb9f8b812a43b397212aac') in 0.037350 seconds -======================================================================== -Received Import Request. - Time since last request: 1.052764 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/01 5.prefab - artifactKey: Guid(2ce91a382ee892e4eb9afe21685bf4f5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/01 5.prefab using Guid(2ce91a382ee892e4eb9afe21685bf4f5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cf393c9708b7bd39ace19571fce45bf1') in 0.037622 seconds -======================================================================== -Received Import Request. - Time since last request: 1.226397 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/01 6.prefab - artifactKey: Guid(9ec0b0f8a6792fc4290d7ee947cb00e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/01 6.prefab using Guid(9ec0b0f8a6792fc4290d7ee947cb00e3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2a720e00577ba330bb8850a29fa9a0d6') in 0.035571 seconds -======================================================================== -Received Import Request. - Time since last request: 1.148404 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/01 7.prefab - artifactKey: Guid(228c7bfc689f2d640b7a55c70695c295) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/01 7.prefab using Guid(228c7bfc689f2d640b7a55c70695c295) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6b293472ff06e7ebda230e1d7fcce5c3') in 0.037147 seconds -======================================================================== -Received Import Request. - Time since last request: 1.031551 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/01 8.prefab - artifactKey: Guid(c2f12f2b668515c4d8c46c5a892737c1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/01 8.prefab using Guid(c2f12f2b668515c4d8c46c5a892737c1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dc832d820cb519d74183e208b4bb3f3e') in 0.039076 seconds -======================================================================== -Received Import Request. - Time since last request: 1.051336 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/01 9.prefab - artifactKey: Guid(264be9105ee6330469f7844678e78bc9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/01 9.prefab using Guid(264be9105ee6330469f7844678e78bc9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1dbc196f5e554fb2e1203f714be6dbec') in 0.034688 seconds -======================================================================== -Received Import Request. - Time since last request: 3117.495900 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/02.asset - artifactKey: Guid(c5a7914bbff9ff040abbce3fedf2bd86) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/02.asset using Guid(c5a7914bbff9ff040abbce3fedf2bd86) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4794b6073478fea8e91c46e047696e56') in 0.006896 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000043 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/06.asset - artifactKey: Guid(c36a46144f0eb9e49a48eec820a4ff98) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/06.asset using Guid(c36a46144f0eb9e49a48eec820a4ff98) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2dd6d48d9cc67dda378cde4b1a8f6a40') in 0.012235 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000031 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/10.asset - artifactKey: Guid(3e5442109d6162c44bfe03ac6683fa60) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/10.asset using Guid(3e5442109d6162c44bfe03ac6683fa60) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '49ec354bc06240355fa768797b839821') in 0.011433 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000034 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/09.asset - artifactKey: Guid(b6c4643d22f4a544c841bb772d3efacf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/09.asset using Guid(b6c4643d22f4a544c841bb772d3efacf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5af96cfd27cb3abf6374f32b3924b1ff') in 0.006351 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000039 seconds. - path: Assets/Daz3D/Races/Ozias/Eyes/05.asset - artifactKey: Guid(e2ad320c07c840045874f525b8ef869f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Eyes/05.asset using Guid(e2ad320c07c840045874f525b8ef869f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '56890fff6c104b1397672654de330292') in 0.011287 seconds -======================================================================== -Received Import Request. - Time since last request: 449.092406 seconds. - path: Assets/Daz3D/Races/Ozias/Male - artifactKey: Guid(55b5b3d7af518034ea00f62466be6c90) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male using Guid(55b5b3d7af518034ea00f62466be6c90) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '472708a80d197036668eb3d4251e9a4e') in 0.007065 seconds -======================================================================== -Received Import Request. - Time since last request: 0.025907 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Body.prefab - artifactKey: Guid(ddf6a9dc3b4549f4b911f7cf7b63f026) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Body.prefab using Guid(ddf6a9dc3b4549f4b911f7cf7b63f026) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9ad1eec3ac477776d11719671a14ccab') in 2.197225 seconds -======================================================================== -Received Import Request. - Time since last request: 24.490802 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/Ears.mat - artifactKey: Guid(f6fe7fa17053d5c4a8cecb72b91f3f97) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/Ears.mat using Guid(f6fe7fa17053d5c4a8cecb72b91f3f97) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f6f7ab23b5b2b6444395998050758cb7') in 0.063223 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000030 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-ArmsS.jpg - artifactKey: Guid(9c204fec83d1b0a43aa9e5cf231c501a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-ArmsS.jpg using Guid(9c204fec83d1b0a43aa9e5cf231c501a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '44303b67acf3d612cc7ac8467126a712') in 0.027936 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000038 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-LegsS.jpg - artifactKey: Guid(f1a3609ab91b9c94694009890f3f661b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-LegsS.jpg using Guid(f1a3609ab91b9c94694009890f3f661b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '43ffce2940c91b0ea0a507817ca14f5d') in 0.029726 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000048 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-LegsSSS.jpg - artifactKey: Guid(af6d30ed56cb1db46b6574d48ffe4c3a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-LegsSSS.jpg using Guid(af6d30ed56cb1db46b6574d48ffe4c3a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f4ac2d733587ad32caeadfbc30ce382f') in 0.023418 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000033 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-FaceSSS.jpg - artifactKey: Guid(ea41f0a549f27db46a6d8c000f3766dc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-FaceSSS.jpg using Guid(ea41f0a549f27db46a6d8c000f3766dc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a2aa4afac84e5a42eccd529133cd661f') in 0.025544 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000033 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/Face.mat - artifactKey: Guid(f43f3381eeb3a924c9cebec0930a6986) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/Face.mat using Guid(f43f3381eeb3a924c9cebec0930a6986) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ca2c2eebf60e4f556c610b0bd53fc8bf') in 0.059032 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000032 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-TorsoS.jpg - artifactKey: Guid(ed2cb5a9c138cfb4bb75a6a607f0521c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-TorsoS.jpg using Guid(ed2cb5a9c138cfb4bb75a6a607f0521c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '069820965175478a999d36387fa6e84e') in 0.028045 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000032 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-FaceB.jpg - artifactKey: Guid(ad4c92f6b6b330440a5c9c0b03330609) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-FaceB.jpg using Guid(ad4c92f6b6b330440a5c9c0b03330609) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2316747e78d267dcf9bbc029f84854b2') in 0.023466 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/EyeSocket.mat - artifactKey: Guid(e1e3476cfa4cd824799035db4239c56a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/EyeSocket.mat using Guid(e1e3476cfa4cd824799035db4239c56a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8cd0cc7b68999867bc4811e7d904b707') in 0.047633 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000048 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-ArmsN.tif - artifactKey: Guid(9c983892414f86e47a2be317d6c9f654) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-ArmsN.tif using Guid(9c983892414f86e47a2be317d6c9f654) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '043e56470ee8d1852c6217394ca550d0') in 0.032840 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000032 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-Eyes1.jpg - artifactKey: Guid(8d01a286f4224a34482141e58c2cc4af) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-Eyes1.jpg using Guid(8d01a286f4224a34482141e58c2cc4af) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c89f69e2c083fb2f9dbc7e05ca20ba8a') in 0.021191 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000034 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/Fingernails.mat - artifactKey: Guid(3648fe43a89e9c443a11971aa60e1ecc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/Fingernails.mat using Guid(3648fe43a89e9c443a11971aa60e1ecc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0e9c7b007e085a9c4b864da0dfa71589') in 0.055318 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000032 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-Face.jpg - artifactKey: Guid(ff6d5a77bdf58b641a3ce70b7b6eb641) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias-Face.jpg using Guid(ff6d5a77bdf58b641a3ce70b7b6eb641) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1e52097ac2b01fc7bc66d90ab02021d7') in 0.022755 seconds -======================================================================== -Received Import Request. - Time since last request: 9.231375 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias_MouthB.jpg - artifactKey: Guid(7e902f0f5ee08514292db52764ca196e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias_MouthB.jpg using Guid(7e902f0f5ee08514292db52764ca196e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0af2461b85332870711ba624be09d0ba') in 0.027828 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000044 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias_MouthB_nm.png - artifactKey: Guid(221e3ee7130c29f4cb3c37b2921ed702) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/FIOzias_MouthB_nm.png using Guid(221e3ee7130c29f4cb3c37b2921ed702) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e331df1b036482122c7193a84135ae51') in 0.030163 seconds -======================================================================== -Received Import Request. - Time since last request: 6.708628 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/Legs.mat - artifactKey: Guid(c81241584e51db54f80b160bb5503960) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/Legs.mat using Guid(c81241584e51db54f80b160bb5503960) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1a9c6b2ada2f0df024a39b045e5b548c') in 0.058232 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000039 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/Lips.mat - artifactKey: Guid(f843d51179502614aace645fc24b43a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/Lips.mat using Guid(f843d51179502614aace645fc24b43a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '53f7ccd5b26b8e8b60c44e48a03535b8') in 0.056814 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/Torso.mat - artifactKey: Guid(72a5cb1cdcf1ad34a80c14674cf785b5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/Torso.mat using Guid(72a5cb1cdcf1ad34a80c14674cf785b5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '881867e404b7e44532906f39f85a82c2') in 0.054608 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000044 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Materials/Pupils.mat - artifactKey: Guid(3981be28a2a4b8b4986634dd41529706) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Materials/Pupils.mat using Guid(3981be28a2a4b8b4986634dd41529706) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '66d3724bf32dbfa2119548ab45e77c87') in 0.014960 seconds -======================================================================== -Received Import Request. - Time since last request: 126.979791 seconds. - path: Assets/Daz3D/Races/Ozias/Female/Materials/Pupils.mat - artifactKey: Guid(8fb8dc8c07ec147449abfbb778285545) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Female/Materials/Pupils.mat using Guid(8fb8dc8c07ec147449abfbb778285545) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'af440f9395cda6ab27f4d07c226e9578') in 0.014905 seconds -======================================================================== -Received Import Request. - Time since last request: 4.422710 seconds. - path: Assets/Daz3D/Races/Ozias/Female/Materials/Teeth.mat - artifactKey: Guid(adcc52c1c68cc2f4fa6708669f20a41b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Female/Materials/Teeth.mat using Guid(adcc52c1c68cc2f4fa6708669f20a41b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1f73868324b6bb2e8a46b555c0b0c19d') in 0.020941 seconds -======================================================================== -Received Import Request. - Time since last request: 540.529758 seconds. - path: Assets/Daz3D/_StreetMouse/Mouse_Fur/Ears_1.mat - artifactKey: Guid(535b67bcfb6143f4ea5706e7ef77ee9c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Mouse_Fur/Ears_1.mat using Guid(535b67bcfb6143f4ea5706e7ef77ee9c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7857c22ccca821a15878c7b9005587ea') in 0.024168 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/Daz3D/_StreetMouse/Mouse_Fur/Face_1.mat - artifactKey: Guid(e4fd32a17f47a4e4eaeb40e698109f15) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Mouse_Fur/Face_1.mat using Guid(e4fd32a17f47a4e4eaeb40e698109f15) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a4c5b8d31e2e8531d15fa79dd9197421') in 0.018532 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000039 seconds. - path: Assets/Daz3D/_StreetMouse/Mouse_Fur/Legs_1.mat - artifactKey: Guid(71ec04e4057b96b41a5109fa01bb1868) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Mouse_Fur/Legs_1.mat using Guid(71ec04e4057b96b41a5109fa01bb1868) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6b068c3f4876c287e46ec5473d545a64') in 0.018115 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000034 seconds. - path: Assets/Daz3D/_StreetMouse/Mouse_Fur/Mouse_G8FTorso-1002T2.jpg - artifactKey: Guid(cf36ebdd0c2fa0648a1c211a38198b54) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Mouse_Fur/Mouse_G8FTorso-1002T2.jpg using Guid(cf36ebdd0c2fa0648a1c211a38198b54) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ca640089a257e4fe2e9db226ca2d2db0') in 0.032560 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000034 seconds. - path: Assets/Daz3D/_StreetMouse/Mouse_Fur/Mouse_G8FFace-1001T2.jpg - artifactKey: Guid(7fdc97b0b4d3b2a44b04574361805867) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Mouse_Fur/Mouse_G8FFace-1001T2.jpg using Guid(7fdc97b0b4d3b2a44b04574361805867) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '773a873491b9eeeab93cc8dde87406fa') in 0.017564 seconds -======================================================================== -Received Import Request. - Time since last request: 10.108503 seconds. - path: Assets/Daz3D/_StreetMouse/Mouse_Tail_Fur/Mouse_G8FTail-Trlu2.jpg - artifactKey: Guid(93e39a34f40a94541850508309382d6e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Mouse_Tail_Fur/Mouse_G8FTail-Trlu2.jpg using Guid(93e39a34f40a94541850508309382d6e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7394c69d5b44c04e17523a16217c9060') in 0.018076 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000035 seconds. - path: Assets/Daz3D/_StreetMouse/Mouse_Tail_Fur/Mouse_Tail_2.mat - artifactKey: Guid(8268781eb831dd443b1b733aaa1ffee6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Mouse_Tail_Fur/Mouse_Tail_2.mat using Guid(8268781eb831dd443b1b733aaa1ffee6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '12fd3afa13754caa31af8edb6624a259') in 0.025603 seconds -======================================================================== -Received Import Request. - Time since last request: 4.535651 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8FemaleEyelashes/EyeMoisture_1.mat - artifactKey: Guid(6c167217144970b4fbdeb1398d87aa57) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8FemaleEyelashes/EyeMoisture_1.mat using Guid(6c167217144970b4fbdeb1398d87aa57) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4a7bbfab33bfedbec6b8040364da73db') in 0.017167 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000035 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8FemaleEyelashes/Mouse_G8F-Lashes-1001.jpg - artifactKey: Guid(1601f2dd671255c40be69274c08a0cd8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8FemaleEyelashes/Mouse_G8F-Lashes-1001.jpg using Guid(1601f2dd671255c40be69274c08a0cd8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2a4c46dff441c62af4fe42b323a7dea4') in 0.017911 seconds -======================================================================== -Received Import Request. - Time since last request: 1.984950 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Cornea.mat - artifactKey: Guid(0dd7879c6ce58c841ac4e9d63a7e2b95) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Cornea.mat using Guid(0dd7879c6ce58c841ac4e9d63a7e2b95) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f4f73271d15e78fcb3a1099d815ab96d') in 0.023972 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000030 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Irises.mat - artifactKey: Guid(b56af089ec2d36b4faf552e3f8980d3a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Irises.mat using Guid(b56af089ec2d36b4faf552e3f8980d3a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ff4c10385b6ec914b83d11702064bbe9') in 0.048010 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000038 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Legs.mat - artifactKey: Guid(64567b62c34d6b04998205455376e82f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Legs.mat using Guid(64567b62c34d6b04998205455376e82f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9ff4cf4cd71cae8097df1f8fd7a3f515') in 0.030893 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000043 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FLegs-1003B_nm.png - artifactKey: Guid(74a2d92958d1ff949b0445e3628ed97c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FLegs-1003B_nm.png using Guid(74a2d92958d1ff949b0445e3628ed97c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '91b6d1a7c0e62ca7f280ecaba20e3775') in 0.025656 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000040 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FArm-1004S.jpg - artifactKey: Guid(7d0c1a1a9f61b8744bd29c5b166c5b6c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FArm-1004S.jpg using Guid(7d0c1a1a9f61b8744bd29c5b166c5b6c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3e11738d3de035e39da3451a45db31c5') in 0.025304 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000032 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FLegs-1003S.jpg - artifactKey: Guid(aa21cfc0e8dd6914286e1ead0128fc7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FLegs-1003S.jpg using Guid(aa21cfc0e8dd6914286e1ead0128fc7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b494d6ec43b00f1669646f64adfadff2') in 0.023742 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000032 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FFace-1001S.jpg - artifactKey: Guid(2770a78f37b41d844bfd28ffe333022b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FFace-1001S.jpg using Guid(2770a78f37b41d844bfd28ffe333022b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b424f31ba9ad21212051e9ce8a58e521') in 0.016361 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000032 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FFace-1001B.jpg - artifactKey: Guid(86f199d5039c12a4faf3d54e68b3d191) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FFace-1001B.jpg using Guid(86f199d5039c12a4faf3d54e68b3d191) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '29da52e2821770e5381024cff3185719') in 0.016078 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000031 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FArm-1004B.jpg - artifactKey: Guid(00994336445f2a644aae5433a238e63f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FArm-1004B.jpg using Guid(00994336445f2a644aae5433a238e63f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9e5e3caf1ad9281f909d5b437790c64d') in 0.015625 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000033 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FArm-1004T2.jpg - artifactKey: Guid(b1c61e97d2100604bb253bf179913188) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FArm-1004T2.jpg using Guid(b1c61e97d2100604bb253bf179913188) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'caf13e651e57ff1d5a2656da4c5e9d48') in 0.015045 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000046 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8F-Eye-1006T.jpg - artifactKey: Guid(969d22587a669084e8b4b3ff5f205160) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8F-Eye-1006T.jpg using Guid(969d22587a669084e8b4b3ff5f205160) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '83008c4bb254655642f388741f5fada9') in 0.014933 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8F_Mouth-1005T.jpg - artifactKey: Guid(10bda1cdfc7322c41bd1276f04dca9fc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8F_Mouth-1005T.jpg using Guid(10bda1cdfc7322c41bd1276f04dca9fc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2cdb94886d79a505dd310a7a88c45ba9') in 0.015556 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000038 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Lips.mat - artifactKey: Guid(95a4d6bd9d645924f8578e346fe12cf9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Lips.mat using Guid(95a4d6bd9d645924f8578e346fe12cf9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4aa86c0c73d60f1fd9f5c465a8c8dfd8') in 0.022880 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000034 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8F-Eye-1006B_nm.png - artifactKey: Guid(5823ff0b4893bf94ba31ada93299e448) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8F-Eye-1006B_nm.png using Guid(5823ff0b4893bf94ba31ada93299e448) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3792902e540a6b5f3f3eb8a1d5076a5b') in 0.019734 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000033 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FFace-1001Trlu2.jpg - artifactKey: Guid(0dc0549ce8b548e4a9944d1421a98ef1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FFace-1001Trlu2.jpg using Guid(0dc0549ce8b548e4a9944d1421a98ef1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6f84b76cae8038444144d17aade0a6a0') in 0.014735 seconds -======================================================================== -Received Import Request. - Time since last request: 2.319541 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FTorso-1002B.jpg - artifactKey: Guid(b8a19ef0af53da840998eb07f5de068b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FTorso-1002B.jpg using Guid(b8a19ef0af53da840998eb07f5de068b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'af1c17f7efcc3cd1e0b63bd93b6d81da') in 0.015255 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000038 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Mouth.mat - artifactKey: Guid(9a90aa09437dab54591103b90e74997a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Mouth.mat using Guid(9a90aa09437dab54591103b90e74997a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '33aea06f17967e30442ea4c54daef592') in 0.017175 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FTorso-1002B_nm.png - artifactKey: Guid(cb59ab1dc67412b46a4a8fc5e0a474ca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FTorso-1002B_nm.png using Guid(cb59ab1dc67412b46a4a8fc5e0a474ca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '79dba99168c1f6709ce1a8ef8146a724') in 0.019157 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000039 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FTorso-1002T2.jpg - artifactKey: Guid(0ba7181109dada943ac1b8ad96ceea17) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Mouse_G8FTorso-1002T2.jpg using Guid(0ba7181109dada943ac1b8ad96ceea17) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'df4a97762881afb2c4db359457690031') in 0.017877 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Sclera.mat - artifactKey: Guid(dfa0fdd3efd1ab047b1df0ab0b21c9c8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Sclera.mat using Guid(dfa0fdd3efd1ab047b1df0ab0b21c9c8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2c1c6c4a2af2b741088d1a0c29f799f4') in 0.020021 seconds -======================================================================== -Received Import Request. - Time since last request: 1.269513 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Toenails.mat - artifactKey: Guid(dfcac921ff7d4294b835bdaa21ea59e8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Toenails.mat using Guid(dfcac921ff7d4294b835bdaa21ea59e8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bfc79459fd59255f38992cdab3e09c73') in 0.021469 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Torso.mat - artifactKey: Guid(ee227fcc7ea52a245ab5008decd00758) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Torso.mat using Guid(ee227fcc7ea52a245ab5008decd00758) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a439a1f63a7d1fcd36989a359fa5d84f') in 0.026170 seconds -======================================================================== -Received Import Request. - Time since last request: 5.467537 seconds. - path: Assets/Daz3D/_StreetMouse/G8FMouseTail_Shell/Mouse_G8FTail-SkinBump_nm.png - artifactKey: Guid(ef767fd9c951fcf43a505b169b8ea361) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/G8FMouseTail_Shell/Mouse_G8FTail-SkinBump_nm.png using Guid(ef767fd9c951fcf43a505b169b8ea361) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2f24f999148c5f12046c224a2da31c9e') in 0.020023 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000037 seconds. - path: Assets/Daz3D/_StreetMouse/G8FMouseTail_Shell/Mouse_Tail_1.mat - artifactKey: Guid(c3af342e52d456f40b9c30ac0921a61e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/G8FMouseTail_Shell/Mouse_Tail_1.mat using Guid(c3af342e52d456f40b9c30ac0921a61e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8abbb5c00ca6481991405d707b4fcf14') in 0.030152 seconds -======================================================================== -Received Import Request. - Time since last request: 24.802307 seconds. - path: Assets/Daz3D/_StreetMouse/G8FMouseTail/Mouse_G8FTail-B_nm.png - artifactKey: Guid(2af0eae9501659243a0606037051dcd7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/G8FMouseTail/Mouse_G8FTail-B_nm.png using Guid(2af0eae9501659243a0606037051dcd7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a8c042c50e8965c09010f6b4e415f27c') in 0.021480 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000035 seconds. - path: Assets/Daz3D/_StreetMouse/G8FMouseTail/Mouse_G8FTail-Trlu2.jpg - artifactKey: Guid(5a7d84468d3c29f469beafbe6ad5e96f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/G8FMouseTail/Mouse_G8FTail-Trlu2.jpg using Guid(5a7d84468d3c29f469beafbe6ad5e96f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ea194fea4df7d3a42dede64db8d4f9eb') in 0.015402 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000034 seconds. - path: Assets/Daz3D/_StreetMouse/G8FMouseTail/Mouse_G8FTail-T2.jpg - artifactKey: Guid(6ee69396a542b0144b8c709b3284e1d9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/G8FMouseTail/Mouse_G8FTail-T2.jpg using Guid(6ee69396a542b0144b8c709b3284e1d9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2eb718a2853ddec8b99073f8c574642e') in 0.016474 seconds -======================================================================== -Received Import Request. - Time since last request: 29.871113 seconds. - path: Assets/Daz3D/_StreetMouse/ExportTextures/Mouse_G8FArm-1004B_nm.png - artifactKey: Guid(acf78ff7cc26bb449aaeb73a0d4958d8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/ExportTextures/Mouse_G8FArm-1004B_nm.png using Guid(acf78ff7cc26bb449aaeb73a0d4958d8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7263971bcae8cb8bff041dfb46e6197c') in 0.015237 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000038 seconds. - path: Assets/Daz3D/_StreetMouse/ExportTextures/Mouse_G8FFace-1001B_nm.png - artifactKey: Guid(41c1f18af7e5a704f9c5520072c8b3e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/ExportTextures/Mouse_G8FFace-1001B_nm.png using Guid(41c1f18af7e5a704f9c5520072c8b3e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '050b37c0c2b80a85862fac611d11a273') in 0.013913 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000033 seconds. - path: Assets/Daz3D/_StreetMouse/ExportTextures/Mouse_G8FTail-B_nm.png - artifactKey: Guid(ad02a8b6e70bf3e4d94190f567b22d76) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/ExportTextures/Mouse_G8FTail-B_nm.png using Guid(ad02a8b6e70bf3e4d94190f567b22d76) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6c03467d92175ac2fc07def57dae4e92') in 0.017063 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000031 seconds. - path: Assets/Daz3D/_StreetMouse/ExportTextures/Mouse_G8FTail-SkinBump_nm.png - artifactKey: Guid(f3291c0f062508d4caf8c1428e52e5cc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/ExportTextures/Mouse_G8FTail-SkinBump_nm.png using Guid(f3291c0f062508d4caf8c1428e52e5cc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c5c1f53645245a9b2515e34ba3c55efa') in 0.013973 seconds -======================================================================== -Received Import Request. - Time since last request: 78.514594 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Pupils.mat - artifactKey: Guid(0ec08f5b6787fb647a5665cdff84c6b2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Pupils.mat using Guid(0ec08f5b6787fb647a5665cdff84c6b2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '133e01daa996c01fa53fe29b51c4cc44') in 0.013442 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000030 seconds. - path: Assets/Daz3D/_StreetMouse/Genesis8Female/Sclera.mat - artifactKey: Guid(dfa0fdd3efd1ab047b1df0ab0b21c9c8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/_StreetMouse/Genesis8Female/Sclera.mat using Guid(dfa0fdd3efd1ab047b1df0ab0b21c9c8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6bb2276fed8f5621659de7fa06826a9c') in 0.016774 seconds -======================================================================== -Received Import Request. - Time since last request: 90.938783 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '843289273a77eb92ad4a3c79159560e3') in 6.739343 seconds -======================================================================== -Received Import Request. - Time since last request: 6.572065 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0e9dadf6f7c23c94bda8dbbf0ccee5b8') in 6.387991 seconds -======================================================================== -Received Import Request. - Time since last request: 0.517290 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3f4f7e57373557ec083b6348b5060dcb') in 6.509024 seconds -======================================================================== -Received Import Request. - Time since last request: 0.298284 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '936ca3bf0494a55a2760ed44677c39d7') in 6.450415 seconds -======================================================================== -Received Import Request. - Time since last request: 2.319402 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '77317dc715567980616f21fd3378a5c4') in 6.214002 seconds -======================================================================== -Received Import Request. - Time since last request: 2.973273 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '272526a9b89a151201439ac6490f1203') in 6.380618 seconds -======================================================================== -Received Import Request. - Time since last request: 3.434007 seconds. - path: Assets/Daz3D/Races/Rat/Female/Body.prefab - artifactKey: Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Body.prefab using Guid(64f3482c73dc9a74daae5fedc8cf17cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e3cb11346d6901ee7c29e4f242da742f') in 6.413706 seconds -======================================================================== -Received Import Request. - Time since last request: 10.493970 seconds. - path: Assets/Daz3D/Races/Rat/Female/Materials/Ears.mat - artifactKey: Guid(e79dfa915a2f6164daf63ddacdf4940f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Materials/Ears.mat using Guid(e79dfa915a2f6164daf63ddacdf4940f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a972f6c1e88d59175c6c993b672e5413') in 0.020338 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/Daz3D/Races/Rat/Female/Materials/Legs.mat - artifactKey: Guid(64567b62c34d6b04998205455376e82f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Materials/Legs.mat using Guid(64567b62c34d6b04998205455376e82f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4689fd1dcb7d746d32fad4534f471125') in 0.021471 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000035 seconds. - path: Assets/Daz3D/Races/Rat/Female/Materials/Face.mat - artifactKey: Guid(594338443798d7142a0a34c7babfe304) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Materials/Face.mat using Guid(594338443798d7142a0a34c7babfe304) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1dac86a2e3ce23557e91754bfe3db2db') in 0.020175 seconds -======================================================================== -Received Import Request. - Time since last request: 23.046184 seconds. - path: Assets/Daz3D/Races/Rat/Male/Materials - artifactKey: Guid(d34110a2407c6c54b82da213b81186fe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Male/Materials using Guid(d34110a2407c6c54b82da213b81186fe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '86093f58a10d65d3b37e3a9061c9f43f') in 0.002577 seconds -======================================================================== -Received Import Request. - Time since last request: 0.052694 seconds. - path: Assets/Daz3D/Races/Rat/Male/Materials/Arms.mat - artifactKey: Guid(d6dbbbf7946368b49b771b6a04632b27) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Male/Materials/Arms.mat using Guid(d6dbbbf7946368b49b771b6a04632b27) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e6088c07f0e3ea2f59d4dd505a6bc5db') in 0.052066 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Tail-T2.jpg - artifactKey: Guid(4d828a9d1b0f10f4b9d4ff881e244d01) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Tail-T2.jpg using Guid(4d828a9d1b0f10f4b9d4ff881e244d01) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '82a208de3ea490df73ea296ce694b526') in 0.024756 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000038 seconds. - path: Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Legs_1003-T2.jpg - artifactKey: Guid(a0e68aea946a21f41b6fba0a552c263c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Legs_1003-T2.jpg using Guid(a0e68aea946a21f41b6fba0a552c263c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3325bd49cb34dcbbcf1b137fa816bf33') in 0.033953 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000047 seconds. - path: Assets/Daz3D/Races/Rat/Male/Materials/Face.mat - artifactKey: Guid(d536e227bbbb0da4c82d783a2656a9bc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Male/Materials/Face.mat using Guid(d536e227bbbb0da4c82d783a2656a9bc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '656a5d06a181386d62e4efa951749f46') in 0.057312 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000033 seconds. - path: Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Arms_1004-T2.jpg - artifactKey: Guid(4bc8c652208d0bf439032e0d896c20ec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Arms_1004-T2.jpg using Guid(4bc8c652208d0bf439032e0d896c20ec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3117df393eba88efee4996d7fa0cacbd') in 0.022908 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000032 seconds. - path: Assets/Daz3D/Races/Rat/Male/Materials/Ears.mat - artifactKey: Guid(a07af5d9ac73775438062c9875433ba1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Male/Materials/Ears.mat using Guid(a07af5d9ac73775438062c9875433ba1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '40ebd01b65f6caff92dc5f625f75c304') in 0.058520 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000038 seconds. - path: Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Tail-Trlu2.jpg - artifactKey: Guid(ceeca87821d862f48930b3867ef26575) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Tail-Trlu2.jpg using Guid(ceeca87821d862f48930b3867ef26575) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cefe2dc590c7c5ad2a11c4cade34f084') in 0.020392 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000037 seconds. - path: Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Face_1001-B.jpg - artifactKey: Guid(ba2db145218bc0140b0dff9b8b0b92e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Face_1001-B.jpg using Guid(ba2db145218bc0140b0dff9b8b0b92e7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0776e94857921902d014debcd79dff1a') in 0.021973 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000041 seconds. - path: Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Legs_1003-Trlu2.jpg - artifactKey: Guid(d54c02faac6470b4d85fad0c88b8ee80) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Legs_1003-Trlu2.jpg using Guid(d54c02faac6470b4d85fad0c88b8ee80) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3fa5d738f9bc54f24a8f505ba2c57c41') in 0.021467 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000033 seconds. - path: Assets/Daz3D/Races/Rat/Male/Materials/Eyelashes.mat - artifactKey: Guid(8627c47c7cc824b4a92d0c7546e01ebe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Male/Materials/Eyelashes.mat using Guid(8627c47c7cc824b4a92d0c7546e01ebe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c2e984a729e0a651a5a7d393b1934c68') in 0.022461 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000033 seconds. - path: Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Arms_1004-B.jpg - artifactKey: Guid(b908633b42777ae4ba8b7d4da6738dbc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Arms_1004-B.jpg using Guid(b908633b42777ae4ba8b7d4da6738dbc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9774592edc83a9b0b9e4458a3bec03c1') in 0.022286 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000029 seconds. - path: Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Arms_1004-B_nm.png - artifactKey: Guid(42e9aafb91b28d444bf209f8798f0a0e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Arms_1004-B_nm.png using Guid(42e9aafb91b28d444bf209f8798f0a0e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '01a3c74df616f59d5a8526b1737da15b') in 0.028390 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000032 seconds. - path: Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Face_1001-T2.jpg - artifactKey: Guid(9dcec55906b6dd245b05fa2c018e883c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Face_1001-T2.jpg using Guid(9dcec55906b6dd245b05fa2c018e883c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8a22d65157614b12e564e0528c15111a') in 0.022186 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000041 seconds. - path: Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Tail-B.jpg - artifactKey: Guid(30114a6149cc7314aa1b778a456ef383) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Tail-B.jpg using Guid(30114a6149cc7314aa1b778a456ef383) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1b2ec9c353956e81645af9bb38aa3998') in 0.020103 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Torso_1002-B.jpg - artifactKey: Guid(59e8254e92dcf5d4181b81e6267b6900) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Torso_1002-B.jpg using Guid(59e8254e92dcf5d4181b81e6267b6900) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8acfb0de724a5461ee1251e40266ea0d') in 0.020454 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000051 seconds. - path: Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Arms_1004-Trlu2.jpg - artifactKey: Guid(81698b7e5594c8e4f844876bb5d064bc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Arms_1004-Trlu2.jpg using Guid(81698b7e5594c8e4f844876bb5d064bc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f68891e5f22ac111962ba9bbfdc67d85') in 0.020530 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000032 seconds. - path: Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Legs_1003-B.jpg - artifactKey: Guid(8210176f0df440c4797758dd753da1a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Legs_1003-B.jpg using Guid(8210176f0df440c4797758dd753da1a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '38b0cc8b242cd3a505c67ff4f4549d31') in 0.024989 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000042 seconds. - path: Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Torso_1002-B_nm.png - artifactKey: Guid(7e1164699b7e2164cb71b3dde0a4b651) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Male/Materials/G8MRat_Torso_1002-B_nm.png using Guid(7e1164699b7e2164cb71b3dde0a4b651) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '771bb7cab7fee1407ebe3355cab3d9d6') in 0.027260 seconds -======================================================================== -Received Import Request. - Time since last request: 13.227206 seconds. - path: Assets/Daz3D/Races/Rat/Female/Materials/Torso.mat - artifactKey: Guid(ee227fcc7ea52a245ab5008decd00758) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Female/Materials/Torso.mat using Guid(ee227fcc7ea52a245ab5008decd00758) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9867547c69dc94ab5e4010696a46d269') in 0.020191 seconds -======================================================================== -Received Import Request. - Time since last request: 61888.861000 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/01.prefab - artifactKey: Guid(602fd6eeefe0e2b4f83687a5a954bae5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/01.prefab using Guid(602fd6eeefe0e2b4f83687a5a954bae5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '12af9ed87d463058c065aab1e997a33f') in 0.055864 seconds -======================================================================== -Received Import Request. - Time since last request: 144.263159 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/01 1.prefab - artifactKey: Guid(d7379855bac2c7e44ba6dfa9d8fdb363) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/01 1.prefab using Guid(d7379855bac2c7e44ba6dfa9d8fdb363) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd975855e068fe2753ec155e7692ebd39') in 0.035358 seconds -======================================================================== -Received Import Request. - Time since last request: 1.404188 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/01 2.prefab - artifactKey: Guid(670f5a9c0c13cd949b094e0974d2c7c5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/01 2.prefab using Guid(670f5a9c0c13cd949b094e0974d2c7c5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2f4e79a7848ab2e0205720b962b41bb5') in 0.037931 seconds -======================================================================== -Received Import Request. - Time since last request: 1.121528 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/01 3.prefab - artifactKey: Guid(d47454d4895e72946a6b50d0267c1d4b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/01 3.prefab using Guid(d47454d4895e72946a6b50d0267c1d4b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '33fada507a3b90cfd8ef368126ef93d0') in 0.043870 seconds -======================================================================== -Received Import Request. - Time since last request: 4.494771 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/01 4.prefab - artifactKey: Guid(43c39622209a7d148858cf97fa8418f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/01 4.prefab using Guid(43c39622209a7d148858cf97fa8418f1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5caa553aa59d5d3060cac3d74975acce') in 0.034474 seconds -======================================================================== -Received Import Request. - Time since last request: 0.777095 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/01 5.prefab - artifactKey: Guid(43ddc00804957bf44a05d2f3eb8cc3bd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/01 5.prefab using Guid(43ddc00804957bf44a05d2f3eb8cc3bd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f95c05898abb2d86a7fb4d0019d9c686') in 0.047944 seconds -======================================================================== -Received Import Request. - Time since last request: 1.212878 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/01 6.prefab - artifactKey: Guid(d45eaf884b4a88e47bd756efcadb31a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/01 6.prefab using Guid(d45eaf884b4a88e47bd756efcadb31a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '71645fe640e84f0ae32da35752a62755') in 0.033972 seconds -======================================================================== -Received Import Request. - Time since last request: 1.069985 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/01 7.prefab - artifactKey: Guid(c26068c902fa6ed4281c395b8d37fc28) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/01 7.prefab using Guid(c26068c902fa6ed4281c395b8d37fc28) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4b12569a9fa2bd63aee826340f536966') in 0.034383 seconds -======================================================================== -Received Import Request. - Time since last request: 1.064216 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/01 8.prefab - artifactKey: Guid(be5736078a141df4285874b23d288585) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/01 8.prefab using Guid(be5736078a141df4285874b23d288585) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6f6c54bb28c47a65263bf9e38fb7bb2c') in 0.033863 seconds -======================================================================== -Received Import Request. - Time since last request: 2.143363 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/01 9.prefab - artifactKey: Guid(f2b112dcbc6e33c4d8e277aa45a31291) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/01 9.prefab using Guid(f2b112dcbc6e33c4d8e277aa45a31291) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '34487cd6fe444790bc8afd9901731633') in 0.035430 seconds -======================================================================== -Received Import Request. - Time since last request: 380.622127 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 2.mat - artifactKey: Guid(3805560a6073fb140a0de5ad4bd8e2c6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 2.mat using Guid(3805560a6073fb140a0de5ad4bd8e2c6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8d8408d456cbf0db9fbefe49496989f8') in 0.037294 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000038 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 4.mat - artifactKey: Guid(8e59ab9d6310f9146ba3290e6f58bbff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 4.mat using Guid(8e59ab9d6310f9146ba3290e6f58bbff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c86bd21005e62d619420483dfd2396e1') in 0.038850 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000049 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 7.mat - artifactKey: Guid(b4a2f32ab7155844e8bb03e64441edb6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 7.mat using Guid(b4a2f32ab7155844e8bb03e64441edb6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3f4fa263a8d3d24ac70139754da16bc1') in 0.036863 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000030 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 5.mat - artifactKey: Guid(fd457c25d81665d4f96127c683013349) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 5.mat using Guid(fd457c25d81665d4f96127c683013349) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ea86359a48a59a526a460194604c05e9') in 0.035510 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000030 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 6.mat - artifactKey: Guid(9e132d018a785c546aa3aafc19d247b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/Materials/Eye 6.mat using Guid(9e132d018a785c546aa3aafc19d247b3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7dd6652d660ccd483428c6ae19987278') in 0.032373 seconds -======================================================================== -Received Import Request. - Time since last request: 3581.552089 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/02.asset - artifactKey: Guid(98306a916a15b0744ac39bf849ba3070) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/02.asset using Guid(98306a916a15b0744ac39bf849ba3070) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '97c9e54d7a09c0007a0c92b1ddb2b1d1') in 0.007119 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000051 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/08.asset - artifactKey: Guid(674a2365c13410a4b87333b9a5843060) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/08.asset using Guid(674a2365c13410a4b87333b9a5843060) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '176beda209e0ac324b7e815d61095e58') in 0.007000 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000049 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/05.asset - artifactKey: Guid(2ce555f9080b15546b1c398390a3fcc6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/05.asset using Guid(2ce555f9080b15546b1c398390a3fcc6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd87a9bef25d6822d279a5acb63cad1b6') in 0.011547 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000033 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/10.asset - artifactKey: Guid(18c77d6669f606e4996456c2c2595564) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/10.asset using Guid(18c77d6669f606e4996456c2c2595564) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '20090000be3412fbdb3f19a0f6becf72') in 0.006204 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000031 seconds. - path: Assets/Daz3D/Races/Rat/Eyes/07.asset - artifactKey: Guid(a7525295b8ea96248bf09b0ac11539e1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Rat/Eyes/07.asset using Guid(a7525295b8ea96248bf09b0ac11539e1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0d3206e645a74dfba59caf2a63f74135') in 0.006567 seconds -======================================================================== -Received Import Request. - Time since last request: 167.648864 seconds. - path: Assets/Daz3D/Races/Human/Female/InventoryPoseFemale.controller - artifactKey: Guid(96e1fbe0bd1922a4fa6e96b3c2ac9475) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Female/InventoryPoseFemale.controller using Guid(96e1fbe0bd1922a4fa6e96b3c2ac9475) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '27765b921ba3e2487a0520d8904c3a72') in 0.020566 seconds -======================================================================== -Received Import Request. - Time since last request: 8.721450 seconds. - path: Assets/Daz3D/Races/Repthila/Female - artifactKey: Guid(41df67f288efa49438a4dc32bc3854e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Female using Guid(41df67f288efa49438a4dc32bc3854e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '326de2307c59b866bf2fa703eb44da02') in 0.007185 seconds -======================================================================== -Received Import Request. - Time since last request: 40.567569 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials - artifactKey: Guid(5458a5fa78adca54195642cfd4a08dd7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials using Guid(5458a5fa78adca54195642cfd4a08dd7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'eb5bbc3f7fb575af9698659da5bcbd54') in 0.006952 seconds -======================================================================== -Received Import Request. - Time since last request: 0.043838 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Arms.mat - artifactKey: Guid(1b077ebb331105e4f85b237b02d011d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Arms.mat using Guid(1b077ebb331105e4f85b237b02d011d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ee8cddc6895b2017c1e27504daacd460') in 0.053526 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Legs.mat - artifactKey: Guid(f0e084e2da4e14248ba5a2ea8683445c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Legs.mat using Guid(f0e084e2da4e14248ba5a2ea8683445c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4fb10693c88fbba35e4484ec810e06fe') in 0.050450 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Face.mat - artifactKey: Guid(2bc67e55172dd1f499a1c8c5bb3814ea) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Face.mat using Guid(2bc67e55172dd1f499a1c8c5bb3814ea) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3637208469bd4301419bbb992d774280') in 0.049597 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000044 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Irises_Base_Color_1005.jpg - artifactKey: Guid(3c6aa1fd4230ae04aa1df37ec33a63d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Irises_Base_Color_1005.jpg using Guid(3c6aa1fd4230ae04aa1df37ec33a63d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '71d1c030130181efac6998c11c9d58bb') in 0.023155 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000046 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Irises.mat - artifactKey: Guid(bf84e8d9ba3aa044ea53ebc957b85686) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Irises.mat using Guid(bf84e8d9ba3aa044ea53ebc957b85686) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd4a0c4c96d4e63c13593e08ad13704eb') in 0.044988 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000048 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Face_Base_Color_1001.jpg - artifactKey: Guid(422deab11569c2944b882bd09933fbdf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Face_Base_Color_1001.jpg using Guid(422deab11569c2944b882bd09933fbdf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '505834b77f957b9de9c41a1b350ebcbd') in 0.023439 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000031 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Arms_Base_Color_1002.jpg - artifactKey: Guid(ce89ba6238cf6104ab054fd12a7dc8bc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Arms_Base_Color_1002.jpg using Guid(ce89ba6238cf6104ab054fd12a7dc8bc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f9db4d9d0551f56fc5d189f6ff08e871') in 0.022369 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000030 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Lips.mat - artifactKey: Guid(aa2beffedf1780d46aea93c0bbd1a26e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Lips.mat using Guid(aa2beffedf1780d46aea93c0bbd1a26e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '50cbcfb2c5199254474bc108830f0e51') in 0.052728 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000034 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_EyeSocket_Base_Color_1001.jpg - artifactKey: Guid(b6ada48b4d6b13541bef4381e2e6d792) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_EyeSocket_Base_Color_1001.jpg using Guid(b6ada48b4d6b13541bef4381e2e6d792) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'baacb393696da3266f631b710eed6793') in 0.020481 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000037 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Pupils.mat - artifactKey: Guid(c89bdad4fabcff6498ae93d4303dd477) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Pupils.mat using Guid(c89bdad4fabcff6498ae93d4303dd477) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9c80507749f028853cc7ae307ab26e0e') in 0.016533 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000045 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Legs_1004_NM.png - artifactKey: Guid(9498cd245216cc14b840e205a43897d3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Legs_1004_NM.png using Guid(9498cd245216cc14b840e205a43897d3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8f3924fa2396ef3a1ffb7347d546d203') in 0.032249 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000032 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Fingernails.mat - artifactKey: Guid(159ad091f84b3b74c84f0b784d041d29) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Fingernails.mat using Guid(159ad091f84b3b74c84f0b784d041d29) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f2b8fc789dbd2c9e873916c5def819de') in 0.049342 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000031 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Face_1001_NM.png - artifactKey: Guid(8a38f0e348d898c448fddf8c8859946f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Face_1001_NM.png using Guid(8a38f0e348d898c448fddf8c8859946f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b7f8cc86538fce32f0623a18ff129cb5') in 0.028548 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000030 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Irises_B_1005.jpg - artifactKey: Guid(8deabbca2d7830245a853a7663492d33) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Irises_B_1005.jpg using Guid(8deabbca2d7830245a853a7663492d33) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2dc5cd3c9ae7cf9ce7e43993312d5f87') in 0.022732 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000038 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Mouth.mat - artifactKey: Guid(03893f2cbe6057649a0c5017d9d50709) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Mouth.mat using Guid(03893f2cbe6057649a0c5017d9d50709) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd735cb7e6bb338beb100e8dd88cbbf4b') in 0.041972 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000046 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Eyesocket_NM_1001.PNG - artifactKey: Guid(deaceebdd07f85247b40168cf74310ba) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Eyesocket_NM_1001.PNG using Guid(deaceebdd07f85247b40168cf74310ba) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3081957b14872c9afba74772e13ed244') in 0.022221 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000044 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/EyeSocket.mat - artifactKey: Guid(3f4d0bd374f2c90458134da9a95fd289) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/EyeSocket.mat using Guid(3f4d0bd374f2c90458134da9a95fd289) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9cca652558876e5c66e97c4cd6104946') in 0.041047 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000030 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Legs_Base_Color_1004.jpg - artifactKey: Guid(6995d0a83bfea3041bf263a266529e48) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Legs_Base_Color_1004.jpg using Guid(6995d0a83bfea3041bf263a266529e48) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e999254988fe5a24a902c12b71a3264b') in 0.024066 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000029 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Face_1001_B.jpg - artifactKey: Guid(5dc96249e24535d4789e202dcafeb4c6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Face_1001_B.jpg using Guid(5dc96249e24535d4789e202dcafeb4c6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '69a016cda7df81de1c99d69461cccd50') in 0.022237 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000031 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Mouth_B_1006.jpg - artifactKey: Guid(baa1b5fc53bcd574ab23e3e4767c6a8d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Mouth_B_1006.jpg using Guid(baa1b5fc53bcd574ab23e3e4767c6a8d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6d2afd23249d2e4231591c2fad5d746b') in 0.022204 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000034 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Arms_1002_NM.png - artifactKey: Guid(d7168f74f0fa9a440acf9874088c3ef2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Arms_1002_NM.png using Guid(d7168f74f0fa9a440acf9874088c3ef2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dd8032fb4da41a26192d33e058b87bc2') in 0.033833 seconds -======================================================================== -Received Import Request. - Time since last request: 10.050412 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Teeth_B_1006.jpg - artifactKey: Guid(ec30874c3d0e8b7419634261bf40a3c3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Teeth_B_1006.jpg using Guid(ec30874c3d0e8b7419634261bf40a3c3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '665dafe25b33e56e75765dc9ccc115c6') in 0.027229 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000033 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Teeth_B_1006_nm.png - artifactKey: Guid(f4b7ed617205ec742abb8da303adb861) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Teeth_B_1006_nm.png using Guid(f4b7ed617205ec742abb8da303adb861) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '06c68a9e1326eb9f6a72e6998dacb24a') in 0.027756 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000039 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Toenails.mat - artifactKey: Guid(0e20699c4a89202459b819f0e9947289) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Toenails.mat using Guid(0e20699c4a89202459b819f0e9947289) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f5337aad861054e9d27253e0a243045b') in 0.051931 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000046 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Torso_1003_NM.png - artifactKey: Guid(a7ff66e521a5412499e0435bfe01394f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Repthila_HD_Torso_1003_NM.png using Guid(a7ff66e521a5412499e0435bfe01394f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c8c8d9199f3b21b692b6bbc684d9d017') in 0.031649 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000065 seconds. - path: Assets/Daz3D/Races/Repthila/Male/Materials/Torso.mat - artifactKey: Guid(8ac476543f16f374ca025c37cdb2885e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Male/Materials/Torso.mat using Guid(8ac476543f16f374ca025c37cdb2885e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '639c83bbc5b49760d21bd5f68319a5d9') in 0.051885 seconds -======================================================================== -Received Import Request. - Time since last request: 1336.081794 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/01.prefab - artifactKey: Guid(85a0513eababd6b45bae4b8eefa93d02) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/01.prefab using Guid(85a0513eababd6b45bae4b8eefa93d02) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7609365c263972fd47e1ca122bbe9279') in 0.048103 seconds -======================================================================== -Received Import Request. - Time since last request: 170.720750 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/01 1.prefab - artifactKey: Guid(47fc117ad161c3c46a759c70b6e58d1d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/01 1.prefab using Guid(47fc117ad161c3c46a759c70b6e58d1d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ac3d89a0e22dec7fc9769ed7361a8769') in 0.039272 seconds -======================================================================== -Received Import Request. - Time since last request: 1.203833 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/01 2.prefab - artifactKey: Guid(c855bab0df013a14db95ba6c72d7b57e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/01 2.prefab using Guid(c855bab0df013a14db95ba6c72d7b57e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '041c2ede0114aa0683a0a6d1251f447f') in 0.034982 seconds -======================================================================== -Received Import Request. - Time since last request: 1.108543 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/01 3.prefab - artifactKey: Guid(6b96f0980c0d0f64a953cce9553f509f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/01 3.prefab using Guid(6b96f0980c0d0f64a953cce9553f509f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4c69b0b8809f2537deeacf6c4e9e57d0') in 0.038083 seconds -======================================================================== -Received Import Request. - Time since last request: 1.300519 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/01 4.prefab - artifactKey: Guid(7e613c52f60fff54aa20841714e7722b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/01 4.prefab using Guid(7e613c52f60fff54aa20841714e7722b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dd247e7ed1141cf9e3db1c3db3d0d8c7') in 0.048443 seconds -======================================================================== -Received Import Request. - Time since last request: 0.999453 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/01 5.prefab - artifactKey: Guid(599c89ae31742534e82d076a4dc32741) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/01 5.prefab using Guid(599c89ae31742534e82d076a4dc32741) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'df3d4052a7fe1cf355edb91c90c10c8c') in 0.036371 seconds -======================================================================== -Received Import Request. - Time since last request: 0.847620 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/01 6.prefab - artifactKey: Guid(9cacb16cb696c014880609eacc6701a1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/01 6.prefab using Guid(9cacb16cb696c014880609eacc6701a1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '91a818f91ab48ed85ec8dabdecbba025') in 0.037796 seconds -======================================================================== -Received Import Request. - Time since last request: 1.016648 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/01 7.prefab - artifactKey: Guid(8c9a6dd67ed67b74795e9d13c306695d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/01 7.prefab using Guid(8c9a6dd67ed67b74795e9d13c306695d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '684a2b18df1c3da44e95b7950769a7ae') in 0.037467 seconds -======================================================================== -Received Import Request. - Time since last request: 0.926049 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/01 8.prefab - artifactKey: Guid(14e4cbe39ca0d194ea291051c23168f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/01 8.prefab using Guid(14e4cbe39ca0d194ea291051c23168f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6b210fa7c103953e8616703a451723e4') in 0.036276 seconds -======================================================================== -Received Import Request. - Time since last request: 1.055011 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/01 9.prefab - artifactKey: Guid(c1a7f499279733a42b215c5119a63fdd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/01 9.prefab using Guid(c1a7f499279733a42b215c5119a63fdd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '631fb86efb2e8545bbe1be07b662bf8c') in 0.043166 seconds -======================================================================== -Received Import Request. - Time since last request: 356.638483 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 2.mat - artifactKey: Guid(acd89b9f9ac235c499f1ac2b557085ac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 2.mat using Guid(acd89b9f9ac235c499f1ac2b557085ac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '103db57787076be43f99cf6b0f59a6a0') in 0.038802 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000037 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 10.mat - artifactKey: Guid(f618ac8c129b42b43b6657bb8a3739b5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 10.mat using Guid(f618ac8c129b42b43b6657bb8a3739b5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '95483e686c6a81a4a7f0b32274dbcc7d') in 0.042536 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000054 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 7.mat - artifactKey: Guid(1e2a009fb9f827e4c9621a04503e97a7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 7.mat using Guid(1e2a009fb9f827e4c9621a04503e97a7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0542d6050a32064e9610da48f1736a17') in 0.042792 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000048 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 6.mat - artifactKey: Guid(5d324b7195ba90c408a966203dde719d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 6.mat using Guid(5d324b7195ba90c408a966203dde719d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '34b10a7b5228a22ddb2ac65d486eea6f') in 0.048857 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000047 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 4.mat - artifactKey: Guid(5f5d61cbc666fef43858b7ee8f4610f3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/Materials/Eye 4.mat using Guid(5f5d61cbc666fef43858b7ee8f4610f3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0ee82187f94ea3cfae63ccd1ba0b6750') in 0.039918 seconds -======================================================================== -Received Import Request. - Time since last request: 615.958137 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/06.asset - artifactKey: Guid(4768c874358001d438517f76e67d6772) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/06.asset using Guid(4768c874358001d438517f76e67d6772) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a87e3f93cd6972f08c1de50791040154') in 0.007491 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000046 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/10.asset - artifactKey: Guid(6c9117f7bb48cbd44a61503c4a01934f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/10.asset using Guid(6c9117f7bb48cbd44a61503c4a01934f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3671d55383aad1b2049efa28afa8d7cc') in 0.006968 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000057 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/07.asset - artifactKey: Guid(9115e9ffba4931244ae8ed7457a509b5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/07.asset using Guid(9115e9ffba4931244ae8ed7457a509b5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f302ace27d31ab277c9cdc03676d2ce9') in 0.007636 seconds -======================================================================== -Received Import Request. - Time since last request: 5254.107142 seconds. - path: Assets/Daz3D/Races/Underworld/Female - artifactKey: Guid(5873fdfd7291f7443a858e9a695a336c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Underworld/Female using Guid(5873fdfd7291f7443a858e9a695a336c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b08ce4f27a3abdfb29b804e119cf63ee') in 0.007703 seconds -======================================================================== -Received Import Request. - Time since last request: 2.168687 seconds. - path: Assets/Daz3D/Races/Underworld/Male/Materials - artifactKey: Guid(c08367ea00f86b9449b9963c7f56058a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Underworld/Male/Materials using Guid(c08367ea00f86b9449b9963c7f56058a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5451aa95c533f3af3f3cfda8e8ef8bb2') in 0.008763 seconds -======================================================================== -Received Import Request. - Time since last request: 8436.286413 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/02.asset - artifactKey: Guid(026fdc130559d044683d88c573a89fb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/02.asset using Guid(026fdc130559d044683d88c573a89fb5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '206a93ceba2ff3ca1eaecb66a13fd6e7') in 0.024983 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000055 seconds. - path: Assets/Daz3D/Races/Repthila/Eyes/04.asset - artifactKey: Guid(0a16786e478cf3f4590a1b8c546741c4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Repthila/Eyes/04.asset using Guid(0a16786e478cf3f4590a1b8c546741c4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '02bd2110947c5c2e099d284110f1fd14') in 0.013070 seconds -======================================================================== -Received Prepare -Refreshing native plugins compatible for Editor in 16.96 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 90 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 7930. -Memory consumption went from 266.2 MB to 261.3 MB. -Total: 15.457100 ms (FindLiveObjects: 0.898900 ms CreateObjectMapping: 0.851100 ms MarkObjects: 12.298600 ms DeleteObjects: 1.407300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> diff --git a/Logs/AssetImportWorker1.log b/Logs/AssetImportWorker1.log index e847c727a0..460915fd4f 100644 --- a/Logs/AssetImportWorker1.log +++ b/Logs/AssetImportWorker1.log @@ -15,7 +15,7 @@ C:/Work/Firstborn -logFile Logs/AssetImportWorker1.log -srvPort -61352 +56215 Successfully changed project path to: C:/Work/Firstborn C:/Work/Firstborn [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -47,11 +47,11 @@ C:/Work/Firstborn "memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gfx=262144" -Player connection [14948] Host "[IP] 192.168.1.140 [Port] 0 [Flags] 2 [Guid] 3319639955 [EditorId] 3319639955 [Version] 1048832 [Id] WindowsEditor(7,THE-BEAST) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... +Player connection [5904] Host "[IP] 192.168.1.140 [Port] 0 [Flags] 2 [Guid] 1397406061 [EditorId] 1397406061 [Version] 1048832 [Id] WindowsEditor(7,THE-BEAST) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... -Player connection [14948] Host "[IP] 192.168.1.140 [Port] 0 [Flags] 2 [Guid] 3319639955 [EditorId] 3319639955 [Version] 1048832 [Id] WindowsEditor(7,THE-BEAST) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... +Player connection [5904] Host "[IP] 192.168.1.140 [Port] 0 [Flags] 2 [Guid] 1397406061 [EditorId] 1397406061 [Version] 1048832 [Id] WindowsEditor(7,THE-BEAST) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... -Refreshing native plugins compatible for Editor in 445.09 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 340.42 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2021.3.15f1 (e8e88683f834) [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/Resources/UnitySubsystems @@ -67,48 +67,42 @@ Initialize mono Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/Managed' Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono config path = 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56352 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56728 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.007513 seconds. +Registered in 0.008271 seconds. Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 376.67 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 310.65 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.131 seconds +- Completed reload, in 1.556 seconds Domain Reload Profiling: - ReloadAssembly (1131ms) - BeginReloadAssembly (90ms) + ReloadAssembly (1557ms) + BeginReloadAssembly (168ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) - EndReloadAssembly (905ms) - LoadAssemblies (87ms) + EndReloadAssembly (1132ms) + LoadAssemblies (166ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (155ms) + SetupTypeCache (521ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (37ms) - SetupLoadedEditorAssemblies (649ms) + RebuildScriptCaches (30ms) + SetupLoadedEditorAssemblies (516ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (11ms) + InitializePlatformSupportModulesInManaged (8ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (377ms) - BeforeProcessingInitializeOnLoad (2ms) - ProcessInitializeOnLoadAttributes (183ms) - ProcessInitializeOnLoadMethodAttributes (75ms) + RefreshPlugins (311ms) + BeforeProcessingInitializeOnLoad (1ms) + ProcessInitializeOnLoadAttributes (142ms) + ProcessInitializeOnLoadMethodAttributes (54ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (0ms) Platform modules already initialized, skipping Registering precompiled user dll's ... -Registered in 0.011805 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 427.36 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. +Registered in 0.013544 seconds. diff --git a/Logs/AssetImportWorker2-prev.log b/Logs/AssetImportWorker2-prev.log new file mode 100644 index 0000000000..6fb6a0230e --- /dev/null +++ b/Logs/AssetImportWorker2-prev.log @@ -0,0 +1,3970 @@ +Using pre-set license +Built from '2021.3/staging' branch; Version is '2021.3.15f1 (e8e88683f834) revision 15263878'; Using compiler version '192829333'; Build Type 'Release' +OS: 'Windows 10 (10.0.19045) 64bit Professional' Language: 'en' Physical Memory: 261823 MB +BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1 + +COMMAND LINE ARGUMENTS: +C:\Program Files\Unity\Hub\Editor\2021.3.15f1\Editor\Unity.exe +-adb2 +-batchMode +-noUpm +-name +AssetImportWorker2 +-projectPath +C:/Work/Firstborn +-logFile +Logs/AssetImportWorker2.log +-srvPort +61352 +Successfully changed project path to: C:/Work/Firstborn +C:/Work/Firstborn +[UnityMemory] Configuration Parameters - Can be set up in boot.config + "memorysetup-bucket-allocator-granularity=16" + "memorysetup-bucket-allocator-bucket-count=8" + "memorysetup-bucket-allocator-block-size=33554432" + "memorysetup-bucket-allocator-block-count=8" + "memorysetup-main-allocator-block-size=16777216" + "memorysetup-thread-allocator-block-size=16777216" + "memorysetup-gfx-main-allocator-block-size=16777216" + "memorysetup-gfx-thread-allocator-block-size=16777216" + "memorysetup-cache-allocator-block-size=4194304" + "memorysetup-typetree-allocator-block-size=2097152" + "memorysetup-profiler-bucket-allocator-granularity=16" + "memorysetup-profiler-bucket-allocator-bucket-count=8" + "memorysetup-profiler-bucket-allocator-block-size=33554432" + "memorysetup-profiler-bucket-allocator-block-count=8" + "memorysetup-profiler-allocator-block-size=16777216" + "memorysetup-profiler-editor-allocator-block-size=1048576" + "memorysetup-temp-allocator-size-main=16777216" + "memorysetup-job-temp-allocator-block-size=2097152" + "memorysetup-job-temp-allocator-block-size-background=1048576" + "memorysetup-job-temp-allocator-reduction-small-platforms=262144" + "memorysetup-temp-allocator-size-background-worker=32768" + "memorysetup-temp-allocator-size-job-worker=262144" + "memorysetup-temp-allocator-size-preload-manager=33554432" + "memorysetup-temp-allocator-size-nav-mesh-worker=65536" + "memorysetup-temp-allocator-size-audio-worker=65536" + "memorysetup-temp-allocator-size-cloud-worker=32768" + "memorysetup-temp-allocator-size-gi-baking-worker=262144" + "memorysetup-temp-allocator-size-gfx=262144" +Player connection [34584] Host "[IP] 192.168.1.140 [Port] 0 [Flags] 2 [Guid] 1861629621 [EditorId] 1861629621 [Version] 1048832 [Id] WindowsEditor(7,THE-BEAST) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... + +Player connection [34584] Host "[IP] 192.168.1.140 [Port] 0 [Flags] 2 [Guid] 1861629621 [EditorId] 1861629621 [Version] 1048832 [Id] WindowsEditor(7,THE-BEAST) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... + +Refreshing native plugins compatible for Editor in 443.96 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Initialize engine version: 2021.3.15f1 (e8e88683f834) +[Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/Resources/UnitySubsystems +[Subsystems] Discovering subsystems at path C:/Work/Firstborn/Assets +GfxDevice: creating device client; threaded=0; jobified=0 +Direct3D: + Version: Direct3D 11.0 [level 11.1] + Renderer: NVIDIA GeForce RTX 3060 (ID=0x2504) + Vendor: NVIDIA + VRAM: 12129 MB + Driver: 31.0.15.2756 +Initialize mono +Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/Managed' +Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' +Mono config path = 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/MonoBleedingEdge/etc' +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56648 +Begin MonoManager ReloadAssembly +Registering precompiled unity dll's ... +Register platform support module: C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll +Registered in 0.010867 seconds. +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 353.53 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.107 seconds +Domain Reload Profiling: + ReloadAssembly (1108ms) + BeginReloadAssembly (104ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (0ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (1ms) + EndReloadAssembly (860ms) + LoadAssemblies (101ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (147ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (42ms) + SetupLoadedEditorAssemblies (600ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (354ms) + BeforeProcessingInitializeOnLoad (2ms) + ProcessInitializeOnLoadAttributes (176ms) + ProcessInitializeOnLoadMethodAttributes (60ms) + AfterProcessingInitializeOnLoad (0ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (0ms) +Platform modules already initialized, skipping +Registering precompiled user dll's ... +Registered in 0.011187 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 410.05 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 4.206 seconds +Domain Reload Profiling: + ReloadAssembly (4207ms) + BeginReloadAssembly (165ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + EndReloadAssembly (3887ms) + LoadAssemblies (145ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (477ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (144ms) + SetupLoadedEditorAssemblies (3061ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (410ms) + BeforeProcessingInitializeOnLoad (196ms) + ProcessInitializeOnLoadAttributes (1409ms) + ProcessInitializeOnLoadMethodAttributes (1029ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Platform modules already initialized, skipping +======================================================================== +Worker process is ready to serve import requests +Launched and connected shader compiler UnityShaderCompiler.exe after 0.07 seconds +Refreshing native plugins compatible for Editor in 7.52 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7673 Unused Serialized files (Serialized files now loaded: 0) +Unloading 3615 unused Assets / (10.4 MB). Loaded Objects now: 7798. +Memory consumption went from 433.2 MB to 422.8 MB. +Total: 13.740100 ms (FindLiveObjects: 1.138800 ms CreateObjectMapping: 1.419800 ms MarkObjects: 4.143400 ms DeleteObjects: 7.036700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 322186.066626 seconds. + path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00A.prefab + artifactKey: Guid(9386aa4cd9ccbdd4ca3d6c35e43c2ab7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00A.prefab using Guid(9386aa4cd9ccbdd4ca3d6c35e43c2ab7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) +UnityEditor.GameObjectInspector:GetPreviewData () +UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) +UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) +UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) + +[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] + + -> (artifact id: '5bdd8ef35fbc3790ade3a7e2a3979474') in 1.318122 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000052 seconds. + path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00I.prefab + artifactKey: Guid(910d9f2722f2b884db602ab3113df917) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00I.prefab using Guid(910d9f2722f2b884db602ab3113df917) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) +UnityEditor.GameObjectInspector:GetPreviewData () +UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) +UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) +UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) + +[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] + + -> (artifact id: '7f721d3783abce154b4bc771839d427e') in 0.812036 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000058 seconds. + path: Assets/Daz3D/Consumables/Karck Juice/_KarckJuics.fbx + artifactKey: Guid(5a3695b71cd015c498896e418b98f674) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Consumables/Karck Juice/_KarckJuics.fbx using Guid(5a3695b71cd015c498896e418b98f674) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a73b6c6fbe85c47cf889845c93635668') in 0.197205 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000045 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Materials/M_Karckmahre_Tint5.mat + artifactKey: Guid(db17cd1e5a9233b4e941135f4d2ef02c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Materials/M_Karckmahre_Tint5.mat using Guid(db17cd1e5a9233b4e941135f4d2ef02c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0bc14119ea7a308de23f2c9180bac91f') in 0.106897 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000055 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Textures/T_Karckmahre_Normal.jpg + artifactKey: Guid(5699d8dc7d59e8f47941f5cf99766ccd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Textures/T_Karckmahre_Normal.jpg using Guid(5699d8dc7d59e8f47941f5cf99766ccd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8a2d0071eab8d2e7b30d3a43358027c3') in 0.066533 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000039 seconds. + path: Assets/RPG Creation Kit/Scripts/Inventory System/Item In Inventory/UI/Prefabs/ArmorItem_InPlayerInventoryUI.prefab + artifactKey: Guid(3a11da181396ccb4dbf37670efee05d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/Inventory System/Item In Inventory/UI/Prefabs/ArmorItem_InPlayerInventoryUI.prefab using Guid(3a11da181396ccb4dbf37670efee05d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cfe43addf820aacb7210a4e80dc3465a') in 0.191015 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000047 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Prefabs/Karckmahre_Tint3.prefab + artifactKey: Guid(7140086d0c36a0043bed8c255d56452a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Prefabs/Karckmahre_Tint3.prefab using Guid(7140086d0c36a0043bed8c255d56452a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) +UnityEditor.GameObjectInspector:GetPreviewData () +UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) +UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) +UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) + +[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] + + -> (artifact id: '49f5d7afd720bc04901ae718806bc7c5') in 0.709764 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000056 seconds. + path: Assets/Daz3D/Shaders/CGInc/DazStandardInput.cginc + artifactKey: Guid(bfc62c2a83c181c4fb912c4333abe28c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Shaders/CGInc/DazStandardInput.cginc using Guid(bfc62c2a83c181c4fb912c4333abe28c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5e8f004de2fe60e3bc7b09d8a2aed2e0') in 0.018794 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000041 seconds. + path: Assets/Daz3D/Races/Outfits/Canyon Guards/KarckHelmSkinned.prefab + artifactKey: Guid(dd07587a145d064459abb8796b5cde73) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Outfits/Canyon Guards/KarckHelmSkinned.prefab using Guid(dd07587a145d064459abb8796b5cde73) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8c69e57baff9c1ac939936b8e167deb1') in 0.239575 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000046 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Turn90Left.FBX + artifactKey: Guid(f2985a126a3ba02409db79e17d6909c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Turn90Left.FBX using Guid(f2985a126a3ba02409db79e17d6909c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3196a9d00a7f62bdf7c244d543dd8c24') in 0.023010 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000049 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/M_Karckmahre.mat + artifactKey: Guid(72f992f6b20a09c419afe7ffa9e05899) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/M_Karckmahre.mat using Guid(72f992f6b20a09c419afe7ffa9e05899) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1f0b53d23c200165cd2bf95190e3bf95') in 3.312243 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000044 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Prefabs/Karckmahre_Tint5.prefab + artifactKey: Guid(3b5630b10cae7c64aaad9549f88dfdc6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Prefabs/Karckmahre_Tint5.prefab using Guid(3b5630b10cae7c64aaad9549f88dfdc6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) +UnityEditor.GameObjectInspector:GetPreviewData () +UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) +UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) +UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) + +[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] + + -> (artifact id: 'f1585e800fa35d2b106726865927f7f7') in 0.633866 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000048 seconds. + path: Assets/RPG Creation Kit/Scripts/AI/AI Tools/RckAI_Prefab.prefab + artifactKey: Guid(72fb65724260fd24dac1402d74032fa6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/AI/AI Tools/RckAI_Prefab.prefab using Guid(72fb65724260fd24dac1402d74032fa6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '48db2977c4f411e782d21ede61ff20bf') in 0.264096 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000038 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Materials/M_Karckmahre_Tint1 1.mat + artifactKey: Guid(b2dee69b21e189b4c832de7301eb78b9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Materials/M_Karckmahre_Tint1 1.mat using Guid(b2dee69b21e189b4c832de7301eb78b9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '46233513df1bffa06e1fbaa406f8d5da') in 0.073650 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000053 seconds. + path: Assets/RPG Creation Kit/Demos/__RckDemo__/Specific Behaviours/They Shall Fall/[BTree] TheyShallFall_Follower1WaitInPalace.asset + artifactKey: Guid(47e73b6c1b48caa4da74540aaa69795e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Specific Behaviours/They Shall Fall/[BTree] TheyShallFall_Follower1WaitInPalace.asset using Guid(47e73b6c1b48caa4da74540aaa69795e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '89969ced4e7312579982d359563fda35') in 0.017409 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000040 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Death.FBX + artifactKey: Guid(263c5e5090e88b645a6d75a83dbde1cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Death.FBX using Guid(263c5e5090e88b645a6d75a83dbde1cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3d3072264453f29c928d2666f35e16ba') in 0.018753 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000034 seconds. + path: Assets/RPG Creation Kit/Scripts/Input/RckPlayer_Actions.inputactions + artifactKey: Guid(a2e503aa67bea644d9ef98768f609ecf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/Input/RckPlayer_Actions.inputactions using Guid(a2e503aa67bea644d9ef98768f609ecf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5e8849cb8d20eb19360ee227f95824af') in 0.031634 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000037 seconds. + path: Assets/Toby Fredson/Third Party/Custom Tree Importer v3/CTI Runtime Components/Shaders/Includes/CTI URP Inputs.hlsl + artifactKey: Guid(4d764ac55969cce4b899d0c551eb248e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Toby Fredson/Third Party/Custom Tree Importer v3/CTI Runtime Components/Shaders/Includes/CTI URP Inputs.hlsl using Guid(4d764ac55969cce4b899d0c551eb248e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0e29907fccf07bd420ff0632c2ac7d37') in 0.027176 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000043 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@IdleLookAround.FBX + artifactKey: Guid(e390d75f5c6005b448214802e0fd0733) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@IdleLookAround.FBX using Guid(e390d75f5c6005b448214802e0fd0733) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6a31ebdfcd07678767e03b7aaf233517') in 0.037466 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000045 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Walk_RM.FBX + artifactKey: Guid(78945825d9e611845a9d6219cf7fa2bc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Walk_RM.FBX using Guid(78945825d9e611845a9d6219cf7fa2bc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '267c1db95ebfb401d6722ea479350108') in 0.017203 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000048 seconds. + path: Assets/Daz3D/Vocals/Canyon Guard/One bad move, and Ill make Karck (Karckmahre) bait out of ya.wav + artifactKey: Guid(b79594c3022e6fe46b6f6e83de431812) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Vocals/Canyon Guard/One bad move, and Ill make Karck (Karckmahre) bait out of ya.wav using Guid(b79594c3022e6fe46b6f6e83de431812) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '911b26f6624bd43c06380939a3e751c2') in 0.056074 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000032 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Materials/M_Karckmahre_Tint2.mat + artifactKey: Guid(159b1567bd4bbe34597ab2a750f2034f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Materials/M_Karckmahre_Tint2.mat using Guid(159b1567bd4bbe34597ab2a750f2034f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ff6c02e477518a2a811745b263acd752') in 0.075663 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000031 seconds. + path: Assets/RPG Creation Kit/Animations/3rd Person/Movements & Combat/Base Male Human Final IK - RotateInPlace.fbx + artifactKey: Guid(07139d3c369f4544dbd6230b91c8fb5c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Animations/3rd Person/Movements & Combat/Base Male Human Final IK - RotateInPlace.fbx using Guid(07139d3c369f4544dbd6230b91c8fb5c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '973b56560563781b5ddf78e9c12c082a') in 0.192707 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000036 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Run_RM.FBX + artifactKey: Guid(a4fec8d4904ac734194b29b088fbb3e9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Run_RM.FBX using Guid(a4fec8d4904ac734194b29b088fbb3e9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd03b4fac2490867aadd01c01cce99d54') in 0.016305 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000052 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Materials/M_Karckmahre_Tint3.mat + artifactKey: Guid(3305ca760f241e24b943e03f8589d130) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Materials/M_Karckmahre_Tint3.mat using Guid(3305ca760f241e24b943e03f8589d130) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b5585456c78af00ef4e56fe425afbe6e') in 0.075351 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000044 seconds. + path: Assets/RPG Creation Kit/Scripts/Inventory System/Item In Inventory/UI/Prefabs/AmmoItem_InPlayerInventoryUI.prefab + artifactKey: Guid(a754de344b33606429a4e7d849692358) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/Inventory System/Item In Inventory/UI/Prefabs/AmmoItem_InPlayerInventoryUI.prefab using Guid(a754de344b33606429a4e7d849692358) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '38835c0b284fde1b02aa3cd7fe4cc270') in 0.039789 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000038 seconds. + path: Assets/RPG Creation Kit/Scripts/Inventory System/Item In Inventory/UI/Prefabs/ConsumableItem_InPlayerInventoryUI.prefab + artifactKey: Guid(9bcd3809a29ee8541b49a5861ce4e8fc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/Inventory System/Item In Inventory/UI/Prefabs/ConsumableItem_InPlayerInventoryUI.prefab using Guid(9bcd3809a29ee8541b49a5861ce4e8fc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ae438fbef05ca6ed8d53b7a2a5f1fd6d') in 0.041645 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000040 seconds. + path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00H.prefab + artifactKey: Guid(964c75c164ae75b45ba226c31fbc32ff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00H.prefab using Guid(964c75c164ae75b45ba226c31fbc32ff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) +UnityEditor.GameObjectInspector:GetPreviewData () +UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) +UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) +UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) + +[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] + + -> (artifact id: 'a83d2529547e624a04b5cf62cb49606b') in 0.834189 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000050 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@GetHitFront.FBX + artifactKey: Guid(85562d12bf4657642a8d61fa86c9c88a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@GetHitFront.FBX using Guid(85562d12bf4657642a8d61fa86c9c88a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ff338f7cc0ce820e8ccf67b040376abc') in 0.015822 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000040 seconds. + path: Assets/Daz3D/Races/Outfits/Canyon Guards/Helmet.blend + artifactKey: Guid(0163fdf26f7114f4cb63e1c6746abf39) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Outfits/Canyon Guards/Helmet.blend using Guid(0163fdf26f7114f4cb63e1c6746abf39) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '715cbc71d31ceca6aae12474986af299') in 0.177861 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000043 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Prefabs/Karckmahre_Tint1.prefab + artifactKey: Guid(caeb734a5d517474ca925dd998b1b522) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Prefabs/Karckmahre_Tint1.prefab using Guid(caeb734a5d517474ca925dd998b1b522) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4b8cf3a3f8a88096f6e64e2e96158759') in 0.085053 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000056 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Run.FBX + artifactKey: Guid(cd317fb67e4d8074a8fb7837fda0600d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Run.FBX using Guid(cd317fb67e4d8074a8fb7837fda0600d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dbad1a7737ce0ff33754de9f5ece1508') in 0.019904 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000040 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@JumpBiteAttack.FBX + artifactKey: Guid(c761a7cdc95ed4d48ae05fc29595cc4c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@JumpBiteAttack.FBX using Guid(c761a7cdc95ed4d48ae05fc29595cc4c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '056ea98282b1be269593858d15c9165b') in 0.021126 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000038 seconds. + path: Assets/RPG Creation Kit/Scripts/Inventory System/Item In Inventory/UI/Prefabs/KeyItem_InPlayerInventoryUI.prefab + artifactKey: Guid(6e5faa3aa2dcbac44b89909fb49a3dbc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/Inventory System/Item In Inventory/UI/Prefabs/KeyItem_InPlayerInventoryUI.prefab using Guid(6e5faa3aa2dcbac44b89909fb49a3dbc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fe12d9d074484c7d8d5863cf96a57b7d') in 0.037607 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000034 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@ClawsAttackLeft.FBX + artifactKey: Guid(4d8eaf84870a53946b51970732cb9dd0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@ClawsAttackLeft.FBX using Guid(4d8eaf84870a53946b51970732cb9dd0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e6fdd365d8a6d3b9adcf90e926f2e905') in 0.016284 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000042 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@ClawsAttackRight_RM.FBX + artifactKey: Guid(331837da68c4a8343a73e4a445ba93d9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@ClawsAttackRight_RM.FBX using Guid(331837da68c4a8343a73e4a445ba93d9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f7a7bae65f16330bb653fb52932b8fa0') in 0.017317 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000033 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Textures/T_Karckmahre_MetallicSmoothness.png + artifactKey: Guid(9c013306d54bb0545877a4ce9c98c8c9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Textures/T_Karckmahre_MetallicSmoothness.png using Guid(9c013306d54bb0545877a4ce9c98c8c9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e4a96dd2bce951d1ce908e2910621405') in 0.022213 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000044 seconds. + path: Assets/Daz3D/Consumables/Karck Juice.prefab + artifactKey: Guid(546c5500169e28c4c9e9a5c282bb2fe5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Consumables/Karck Juice.prefab using Guid(546c5500169e28c4c9e9a5c282bb2fe5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '92d4ef16c9c055d98736cefd291edcc1') in 0.127608 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000047 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Materials/M_Karckmahre_Tint4.mat + artifactKey: Guid(edcda3e8f8f98c74b9d5aad18d5d1476) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Materials/M_Karckmahre_Tint4.mat using Guid(edcda3e8f8f98c74b9d5aad18d5d1476) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a93f6bfaa87cac798d0e953d4e3d49a5') in 0.086693 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000039 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/[FACTION] Karckmahre.asset + artifactKey: Guid(64f6ab468cac16c4dbe0091486410764) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/[FACTION] Karckmahre.asset using Guid(64f6ab468cac16c4dbe0091486410764) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '40cb7d333f95e2e3f8d6b53a32c3ee9f') in 0.010102 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000044 seconds. + path: Assets/FemaleMovementAnimsetPro/Animations/Source/FemaleMovementAnimsetPro_2.fbx + artifactKey: Guid(dd4bc59541169e34ead96f0310ddc7bd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/FemaleMovementAnimsetPro/Animations/Source/FemaleMovementAnimsetPro_2.fbx using Guid(dd4bc59541169e34ead96f0310ddc7bd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd8d86df594f9726dda0c42f5b7be116c') in 0.163039 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000048 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Turn90Left_RM.FBX + artifactKey: Guid(f53076f9af1923d4b900bb69f03ff76f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Turn90Left_RM.FBX using Guid(f53076f9af1923d4b900bb69f03ff76f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3a57b78fb9c267a21716d4d4e522102d') in 0.017896 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000053 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Prefabs/Karckmahre_Tint4.prefab + artifactKey: Guid(3b8dbc56db8e9bb4999a306da4c6dd8f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Prefabs/Karckmahre_Tint4.prefab using Guid(3b8dbc56db8e9bb4999a306da4c6dd8f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) +UnityEditor.GameObjectInspector:GetPreviewData () +UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) +UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) +UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) + +[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] + + -> (artifact id: 'a534ab2b67075e40656d9692a352af6d') in 0.629769 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000049 seconds. + path: Assets/Samples/Universal RP/12.1.8/URP Package Samples/SharedAssets/Prefabs/MainPanel.prefab + artifactKey: Guid(d5fa55a16b49d4da3a93a4958cdc3180) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Samples/Universal RP/12.1.8/URP Package Samples/SharedAssets/Prefabs/MainPanel.prefab using Guid(d5fa55a16b49d4da3a93a4958cdc3180) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a063d59bf8bbb339a3f9f12db9db0db3') in 0.013259 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000044 seconds. + path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00D.prefab + artifactKey: Guid(c8aea09ec4be4e9448471bb8069c73cd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00D.prefab using Guid(c8aea09ec4be4e9448471bb8069c73cd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) +UnityEditor.GameObjectInspector:GetPreviewData () +UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) +UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) +UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) + +[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] + + -> (artifact id: '6b13b03b4d184723e784ba7cec1f631f') in 0.780468 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000046 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@SpitAttack.FBX + artifactKey: Guid(26bdabd2f3288bf4285e115ec4d0819e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@SpitAttack.FBX using Guid(26bdabd2f3288bf4285e115ec4d0819e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3b639d91754ec0dd306548578eb75ae6') in 0.015219 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000058 seconds. + path: Assets/Daz3D/Races/Human/Female/Animations/Resources/FemaleTurnInPlace.fbx + artifactKey: Guid(59aa20a8e4b1ba64b855c9677786c543) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Human/Female/Animations/Resources/FemaleTurnInPlace.fbx using Guid(59aa20a8e4b1ba64b855c9677786c543) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3cd735cb2862caa50f3eec2c1771319f') in 0.021448 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000041 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Taunt.FBX + artifactKey: Guid(777c99078cea32943a4953f816f30657) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Taunt.FBX using Guid(777c99078cea32943a4953f816f30657) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1a4986502fa42cfff22a36a49f31e98d') in 0.020231 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000032 seconds. + path: Assets/InputSystem.inputsettings.asset + artifactKey: Guid(792c806a15ce6184a8c9b559372da5f5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/InputSystem.inputsettings.asset using Guid(792c806a15ce6184a8c9b559372da5f5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '75858394f62cc1511ec89c2802840f90') in 0.009966 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000039 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@GetHitLeft.FBX + artifactKey: Guid(9c996a2d8f1053c4ba55f9922150dddc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@GetHitLeft.FBX using Guid(9c996a2d8f1053c4ba55f9922150dddc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8350ba17b122e4c46b57143b1d36fec2') in 0.016837 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000041 seconds. + path: Assets/FlexibleColorPicker/Materials/FCP_MainPicker.mat + artifactKey: Guid(5a7edd6b3c7402d4fbbce95f42cb4e59) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/FlexibleColorPicker/Materials/FCP_MainPicker.mat using Guid(5a7edd6b3c7402d4fbbce95f42cb4e59) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6072c788b7a9debfff2df484d616a9ad') in 0.026799 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000042 seconds. + path: Assets/Materials/MapMarkers/Karckmahr.mat + artifactKey: Guid(a9ae288d158caea44aab68e6005f7ec3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Materials/MapMarkers/Karckmahr.mat using Guid(a9ae288d158caea44aab68e6005f7ec3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd628453103e7396aa86e7b127437273c') in 0.019028 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000045 seconds. + path: Assets/Daz3D/Races/Outfits/Canyon Guards/GND/SK_Karckmahre.prefab + artifactKey: Guid(3cdbb0ff59bda144e8443eca60d240d4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Outfits/Canyon Guards/GND/SK_Karckmahre.prefab using Guid(3cdbb0ff59bda144e8443eca60d240d4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ab5a6b2417a86e407f8109dc97713134') in 0.224963 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000048 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Claws2HitComboAttack_RM.FBX + artifactKey: Guid(cd6129295ea738f4d9e62324038cb9f4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Claws2HitComboAttack_RM.FBX using Guid(cd6129295ea738f4d9e62324038cb9f4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5ba655e06d498b8c7ebc9ca8617c3dfa') in 0.019077 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000038 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@GetHitRight.FBX + artifactKey: Guid(a612d41242e1c2f46bc99437a4a2108f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@GetHitRight.FBX using Guid(a612d41242e1c2f46bc99437a4a2108f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e4a6bb622a79dc42553e299b4aaba832') in 0.016894 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000032 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Turn90Right.FBX + artifactKey: Guid(6df8595ce01a8f744ba0c5ededac7840) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Turn90Right.FBX using Guid(6df8595ce01a8f744ba0c5ededac7840) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e6d2d5e62c8f5d02f9292a3281d18ef1') in 0.020374 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000042 seconds. + path: Assets/RPG Creation Kit/Demos/__RckDemo__/Specific Behaviours/They Shall Fall/[BTree] TheyShallFall_Follower2WaitInPalace.asset + artifactKey: Guid(b81e857f298b50e4a8cf2e1c0c82853a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Specific Behaviours/They Shall Fall/[BTree] TheyShallFall_Follower2WaitInPalace.asset using Guid(b81e857f298b50e4a8cf2e1c0c82853a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e74ff613d62bf823931377026c3e0d6e') in 0.013417 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000039 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Walk.FBX + artifactKey: Guid(f112222ddf663d2429c46339b48debdc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Walk.FBX using Guid(f112222ddf663d2429c46339b48debdc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2d31e5fd6121833c4f47350c7219fa1f') in 0.017951 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000040 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@JumpBiteAttack_RM.FBX + artifactKey: Guid(5a65a6d1314adf841af223ba99620f4e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@JumpBiteAttack_RM.FBX using Guid(5a65a6d1314adf841af223ba99620f4e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cd8cfc0a0422f334b818bff939c1d91d') in 0.015947 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000043 seconds. + path: Assets/Daz3D/Mix4/Materials/MainPants.mat + artifactKey: Guid(c1fe20959bf15f34ba1a631ec7ba1d5a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Mix4/Materials/MainPants.mat using Guid(c1fe20959bf15f34ba1a631ec7ba1d5a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '309a3a1db6fd04e845fa17ae1931693a') in 0.101231 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000056 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Turn90Right_RM.FBX + artifactKey: Guid(76370727378bc7a489468bc4cb884003) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Turn90Right_RM.FBX using Guid(76370727378bc7a489468bc4cb884003) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '29c1d83a400f559d7bab4428e2c5193a') in 0.020179 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000037 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Textures/T_Karckmahre_Emissive.jpg + artifactKey: Guid(048c6b4ae2bbe054ca63d58be50e3a9c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Textures/T_Karckmahre_Emissive.jpg using Guid(048c6b4ae2bbe054ca63d58be50e3a9c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6af7266d719c14caca588b399c29ba20') in 0.024226 seconds +======================================================================== +Received Import Request. + Time since last request: 2261.509616 seconds. + path: Assets/RPG Creation Kit/Scripts/Player/RckPlayer.prefab + artifactKey: Guid(7d773329c5729034d88226ce86f10455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/Player/RckPlayer.prefab using Guid(7d773329c5729034d88226ce86f10455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5e58a3968247a151eee97f660f808ebd') in 2.168408 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000047 seconds. + path: Assets/RPG Creation Kit/Scripts/Input/RckPlayer_Actions.inputactions + artifactKey: Guid(a2e503aa67bea644d9ef98768f609ecf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/Input/RckPlayer_Actions.inputactions using Guid(a2e503aa67bea644d9ef98768f609ecf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'aa8602ca1a0c3a6c3662e2b39e61e7ad') in 0.065799 seconds +======================================================================== +Received Import Request. + Time since last request: 139.020382 seconds. + path: Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Curch Village/FatherLucien001_DefaultDialogue.asset + artifactKey: Guid(905732d8f199a1449ba0eaf63c9cb7d0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Curch Village/FatherLucien001_DefaultDialogue.asset using Guid(905732d8f199a1449ba0eaf63c9cb7d0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8904fa8aac2eb76a7c30d1336a6dac8a') in 0.064455 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000038 seconds. + path: Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/FarmOutsideCity/Yeneas_Dialogue.asset + artifactKey: Guid(7f021c03474d1b74f96681594a26a134) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/FarmOutsideCity/Yeneas_Dialogue.asset using Guid(7f021c03474d1b74f96681594a26a134) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '419b7629245e94da7333301954ea1f3d') in 0.018000 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000031 seconds. + path: Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/General/Highwayman001DefaultDialogue.asset + artifactKey: Guid(a3a35dbea2e071b48ba2b4cf0758dbe3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/General/Highwayman001DefaultDialogue.asset using Guid(a3a35dbea2e071b48ba2b4cf0758dbe3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7d9e52e1a24cbaa1f0a0782d0cd9db9b') in 0.056842 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000038 seconds. + path: Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Curch Village/MotherNebivia001_EDNConclusion.asset + artifactKey: Guid(e0fa3e5b10809bf42b6ba99ba8f31e37) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Curch Village/MotherNebivia001_EDNConclusion.asset using Guid(e0fa3e5b10809bf42b6ba99ba8f31e37) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '765b78dcff43d92a9bd419a53bd939a8') in 0.031715 seconds +======================================================================== +Received Import Request. + Time since last request: 0.181795 seconds. + path: Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/MQ02_The Red Shade/[DIALOGUE] MackTalksToPlayerInvite001.asset + artifactKey: Guid(4ced6d855ccc43b46bfbdd49792f0d1c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/MQ02_The Red Shade/[DIALOGUE] MackTalksToPlayerInvite001.asset using Guid(4ced6d855ccc43b46bfbdd49792f0d1c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '19dc29c5e6bc204f895d97c50933d569') in 0.026600 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000034 seconds. + path: Assets/RPG Creation Kit/Scripts/Alchemy/Item In Inventory/UI/Prefabs/WeaponItem_InPlayerInventoryUI.prefab + artifactKey: Guid(811ea06a9d362b94d8d75c540eb8a9c1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/Alchemy/Item In Inventory/UI/Prefabs/WeaponItem_InPlayerInventoryUI.prefab using Guid(811ea06a9d362b94d8d75c540eb8a9c1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fedd88ba1690d68edcc3abb53c699175') in 0.030556 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000050 seconds. + path: Assets/RPG Creation Kit/Scripts/Inventory System/Item In Inventory/UI/Prefabs/WeaponItem_InPlayerInventoryUI.prefab + artifactKey: Guid(50d6614cc00a6154f89b74fa849dbe3c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/Inventory System/Item In Inventory/UI/Prefabs/WeaponItem_InPlayerInventoryUI.prefab using Guid(50d6614cc00a6154f89b74fa849dbe3c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2b759b5f216acb16184890aaa6e4cbb6') in 0.025861 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.012462 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.25 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.249 seconds +Domain Reload Profiling: + ReloadAssembly (2250ms) + BeginReloadAssembly (190ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (77ms) + EndReloadAssembly (1923ms) + LoadAssemblies (114ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (372ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (68ms) + SetupLoadedEditorAssemblies (1143ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (12ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (122ms) + ProcessInitializeOnLoadAttributes (668ms) + ProcessInitializeOnLoadMethodAttributes (326ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (26ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 11.88 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 105 unused Assets / (4.9 MB). Loaded Objects now: 7925. +Memory consumption went from 457.1 MB to 452.2 MB. +Total: 7.612200 ms (FindLiveObjects: 0.737100 ms CreateObjectMapping: 0.617800 ms MarkObjects: 4.716800 ms DeleteObjects: 1.539200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 112.934082 seconds. + path: Assets/RPG Creation Kit/UI Sprites/RPG ICONS/Arrow Inventory.png + artifactKey: Guid(6d2e3e4008ab38c418adeb0065b4806d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/UI Sprites/RPG ICONS/Arrow Inventory.png using Guid(6d2e3e4008ab38c418adeb0065b4806d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3050090fee732128e61043b7416144ac') in 0.169448 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000043 seconds. + path: Assets/Daz3D/Animations/Female/FBX/Animations@Pose1.fbx + artifactKey: Guid(250502f710982504dbcf42457529c3d3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Animations/Female/FBX/Animations@Pose1.fbx using Guid(250502f710982504dbcf42457529c3d3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1d11aa70ffe60d94fa297283bc93acf1') in 0.025802 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000039 seconds. + path: Assets/RPG Creation Kit/UI Sprites/RPG ICONS/Book Inventory.png + artifactKey: Guid(ab9b09ef5f797a549b73baef06a66e8d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/UI Sprites/RPG ICONS/Book Inventory.png using Guid(ab9b09ef5f797a549b73baef06a66e8d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5489589cd5cf43e5561b087964ba2477') in 0.085567 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010109 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.994 seconds +Domain Reload Profiling: + ReloadAssembly (1995ms) + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (62ms) + EndReloadAssembly (1703ms) + LoadAssemblies (117ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (370ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (68ms) + SetupLoadedEditorAssemblies (1047ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (120ms) + ProcessInitializeOnLoadAttributes (658ms) + ProcessInitializeOnLoadMethodAttributes (242ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 11.58 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 7942. +Memory consumption went from 456.9 MB to 452.0 MB. +Total: 11.247100 ms (FindLiveObjects: 1.010300 ms CreateObjectMapping: 1.101400 ms MarkObjects: 6.836100 ms DeleteObjects: 2.297400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 886.306428 seconds. + path: Assets/RPG Creation Kit/Demos/__RckDemo__/Quests/Southern Village/A Donation of Wheat/- [QUEST] A Donation of Wheat.asset + artifactKey: Guid(dd5c1c3cbf8f84e46b5f218108a7e7ea) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Quests/Southern Village/A Donation of Wheat/- [QUEST] A Donation of Wheat.asset using Guid(dd5c1c3cbf8f84e46b5f218108a7e7ea) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '39142bc333526328677d66d5dd4f3158') in 0.042264 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000036 seconds. + path: Assets/RPG Creation Kit/Demos/__RckDemo__/Quests/Southern Village/For my little sister/- [QUEST] For My Little Sister.asset + artifactKey: Guid(3c23f1cc0adfbab45a0321d9e665ba14) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Quests/Southern Village/For my little sister/- [QUEST] For My Little Sister.asset using Guid(3c23f1cc0adfbab45a0321d9e665ba14) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'eec4876c5e2a8715730ae4a3efac45da') in 0.008221 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.011213 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.64 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.029 seconds +Domain Reload Profiling: + ReloadAssembly (2030ms) + BeginReloadAssembly (183ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (66ms) + EndReloadAssembly (1721ms) + LoadAssemblies (127ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (376ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (72ms) + SetupLoadedEditorAssemblies (1047ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (124ms) + ProcessInitializeOnLoadAttributes (645ms) + ProcessInitializeOnLoadMethodAttributes (250ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 7957. +Memory consumption went from 456.9 MB to 452.0 MB. +Total: 7.327100 ms (FindLiveObjects: 0.779700 ms CreateObjectMapping: 0.668300 ms MarkObjects: 4.193900 ms DeleteObjects: 1.683900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010759 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.76 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.981 seconds +Domain Reload Profiling: + ReloadAssembly (2982ms) + BeginReloadAssembly (312ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (79ms) + EndReloadAssembly (2506ms) + LoadAssemblies (243ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (779ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (83ms) + SetupLoadedEditorAssemblies (1269ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (131ms) + ProcessInitializeOnLoadAttributes (751ms) + ProcessInitializeOnLoadMethodAttributes (357ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 12.62 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 7972. +Memory consumption went from 456.9 MB to 452.0 MB. +Total: 9.931900 ms (FindLiveObjects: 0.797100 ms CreateObjectMapping: 0.900000 ms MarkObjects: 6.264200 ms DeleteObjects: 1.969000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 24389.476642 seconds. + path: Assets/RPG Creation Kit/Scripts/Quest System/Player/QuestManager.cs + artifactKey: Guid(97266d86f79e57c418fee0197509a39e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/Quest System/Player/QuestManager.cs using Guid(97266d86f79e57c418fee0197509a39e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9c57fb5ae3c624b0524d1758e6959a44') in 0.036249 seconds +======================================================================== +Received Import Request. + Time since last request: 34.541877 seconds. + path: Assets/Daz3D/Races/Human/Male/Body 2.prefab + artifactKey: Guid(cc1dd0d576a24c841a4fbddcccbecb50) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Human/Male/Body 2.prefab using Guid(cc1dd0d576a24c841a4fbddcccbecb50) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b3c576023181be6b9a3bd8e8bba3d603') in 5.960110 seconds +======================================================================== +Received Import Request. + Time since last request: 11.620102 seconds. + path: Assets/Daz3D/Races/Human/Male/Body 2.prefab + artifactKey: Guid(cc1dd0d576a24c841a4fbddcccbecb50) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Human/Male/Body 2.prefab using Guid(cc1dd0d576a24c841a4fbddcccbecb50) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fb55295d3f170dab650386cceaa4c362') in 5.643839 seconds +======================================================================== +Received Import Request. + Time since last request: 8.232545 seconds. + path: Assets/Daz3D/Races/Human/Male/Body 2.prefab + artifactKey: Guid(cc1dd0d576a24c841a4fbddcccbecb50) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Human/Male/Body 2.prefab using Guid(cc1dd0d576a24c841a4fbddcccbecb50) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '80d493000153692502aa5a503501eeb2') in 5.721818 seconds +======================================================================== +Received Import Request. + Time since last request: 6.004269 seconds. + path: Assets/Daz3D/Races/Human/Male/Body 2.prefab + artifactKey: Guid(cc1dd0d576a24c841a4fbddcccbecb50) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Human/Male/Body 2.prefab using Guid(cc1dd0d576a24c841a4fbddcccbecb50) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0adc80bca8a7356e4b7bf0b680339881') in 5.730739 seconds +======================================================================== +Received Import Request. + Time since last request: 6.127069 seconds. + path: Assets/Daz3D/Races/Human/Male/Body 2.prefab + artifactKey: Guid(cc1dd0d576a24c841a4fbddcccbecb50) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Human/Male/Body 2.prefab using Guid(cc1dd0d576a24c841a4fbddcccbecb50) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '179cd4429ec508d9118be275d2e9d5a4') in 5.623118 seconds +======================================================================== +Received Import Request. + Time since last request: 45.462707 seconds. + path: Assets/Daz3D/Races/Human/Female/Body.prefab + artifactKey: Guid(38674239631e0ce4da6f9f86b2da0688) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Human/Female/Body.prefab using Guid(38674239631e0ce4da6f9f86b2da0688) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4d9f00c1d5f8dedacd1956d70d5cf1cc') in 6.443498 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.013641 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.248 seconds +Domain Reload Profiling: + ReloadAssembly (2249ms) + BeginReloadAssembly (180ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (71ms) + EndReloadAssembly (1953ms) + LoadAssemblies (112ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (374ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (78ms) + SetupLoadedEditorAssemblies (1251ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (146ms) + ProcessInitializeOnLoadAttributes (785ms) + ProcessInitializeOnLoadMethodAttributes (288ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (31ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 14.02 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8029. +Memory consumption went from 459.5 MB to 454.5 MB. +Total: 9.492700 ms (FindLiveObjects: 1.257400 ms CreateObjectMapping: 1.059000 ms MarkObjects: 5.564000 ms DeleteObjects: 1.610900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 463.162202 seconds. + path: Assets/Prefabs/RckPlayer Variant.prefab + artifactKey: Guid(e4295a978fc0c534bb2cc9cc7ed6d57b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/RckPlayer Variant.prefab using Guid(e4295a978fc0c534bb2cc9cc7ed6d57b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '895f480c4da66b7fd509bad868cf3169') in 1.730625 seconds +======================================================================== +Received Import Request. + Time since last request: 25.582035 seconds. + path: Assets/Textures/UI/Map Markers + artifactKey: Guid(f51fb7dc516ed3c4cb03fdf74fbc2f1c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Textures/UI/Map Markers using Guid(f51fb7dc516ed3c4cb03fdf74fbc2f1c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8300afe79bd81b64ac1d98b6d3956e88') in 0.007082 seconds +======================================================================== +Received Import Request. + Time since last request: 0.068550 seconds. + path: Assets/Textures/UI/Map Markers/anvil-512 1.png + artifactKey: Guid(4aa0c5e13e69c2446b39cdcbca307163) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Textures/UI/Map Markers/anvil-512 1.png using Guid(4aa0c5e13e69c2446b39cdcbca307163) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f1856270777e811885a538d9995590ed') in 0.052586 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000041 seconds. + path: Assets/Textures/UI/Map Markers/Door.png + artifactKey: Guid(ad747ac0f3a4714408c41ec23638724b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Textures/UI/Map Markers/Door.png using Guid(ad747ac0f3a4714408c41ec23638724b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd2c54832278e38e217706549da31a9ec') in 0.030502 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000042 seconds. + path: Assets/Textures/UI/Map Markers/Cave.png + artifactKey: Guid(8664a13b92febb94e81b8c7b3110775b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Textures/UI/Map Markers/Cave.png using Guid(8664a13b92febb94e81b8c7b3110775b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '62ef896ed8d13f6ec45c49b7e0f68d50') in 0.038761 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000047 seconds. + path: Assets/Textures/UI/Map Markers/Green.png + artifactKey: Guid(c132e353a59178d4d8e1b3054f554df9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Textures/UI/Map Markers/Green.png using Guid(c132e353a59178d4d8e1b3054f554df9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '915b5aa53c490cee5a2746f14c6a4648') in 0.036133 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000082 seconds. + path: Assets/Textures/UI/Map Markers/playerIcon.png + artifactKey: Guid(066a5ec4fa8b8ad459110d814db87a10) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Textures/UI/Map Markers/playerIcon.png using Guid(066a5ec4fa8b8ad459110d814db87a10) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '98326fc4a46cbbb439e0bc81e62fb11a') in 0.031329 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000041 seconds. + path: Assets/Textures/UI/Map Markers/Enemy.png + artifactKey: Guid(4040e8acd6339a64b87a1221f5765689) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Textures/UI/Map Markers/Enemy.png using Guid(4040e8acd6339a64b87a1221f5765689) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3f4b850af42b30fc1028e062cb3fee36') in 0.041138 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000042 seconds. + path: Assets/Textures/UI/Map Markers/Yellow.png + artifactKey: Guid(33a32f71d0d3ea0468cb1e154575ef95) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Textures/UI/Map Markers/Yellow.png using Guid(33a32f71d0d3ea0468cb1e154575ef95) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1775886bdb1a491697adb14c35b110f3') in 0.040779 seconds +======================================================================== +Received Import Request. + Time since last request: 691.058717 seconds. + path: Assets/Invector-3rdPersonController_LITE + artifactKey: Guid(c5258a66f902dfe4a818b699b96c9d7a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Invector-3rdPersonController_LITE using Guid(c5258a66f902dfe4a818b699b96c9d7a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a41c7d9d40c9fc0aa57c2f721b15626c') in 0.007968 seconds +======================================================================== +Received Import Request. + Time since last request: 5.574859 seconds. + path: Assets/Plugins + artifactKey: Guid(6cbed571ae8558845829a1e7ca19e2a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Plugins using Guid(6cbed571ae8558845829a1e7ca19e2a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ab075ced9e30884485c7950c6f9cda03') in 0.006698 seconds +======================================================================== +Received Import Request. + Time since last request: 4.630737 seconds. + path: Assets/Ground Preset.asset + artifactKey: Guid(2107754b9a6172e48b66d498198ab8fe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Ground Preset.asset using Guid(2107754b9a6172e48b66d498198ab8fe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c22e3a38714bb5c00310f8aff1790ec7') in 0.065451 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000035 seconds. + path: Assets/Terrain 0 0.asset + artifactKey: Guid(d80b07c3382b0954984107cb695edcc3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Terrain 0 0.asset using Guid(d80b07c3382b0954984107cb695edcc3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '830bf6603811fc5c387bed3cdde414ad') in 0.117217 seconds +======================================================================== +Received Import Request. + Time since last request: 0.345316 seconds. + path: Assets/Terrain 0 1.asset + artifactKey: Guid(4a1eea3259f294f4fbac3a29b18dae91) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Terrain 0 1.asset using Guid(4a1eea3259f294f4fbac3a29b18dae91) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6998633b72b36977c096066a467e15fc') in 0.049627 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000041 seconds. + path: Assets/Terrain 0.asset + artifactKey: Guid(2a59644b8a950244bb1eeadc1d060c2d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Terrain 0.asset using Guid(2a59644b8a950244bb1eeadc1d060c2d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) The tree CaveRockCATA_A couldn't be instanced because the prefab contains no valid mesh renderer. +The tree CaveRockCATA_B couldn't be instanced because the prefab contains no valid mesh renderer. +The tree CaveRockCATA_D couldn't be instanced because the prefab contains no valid mesh renderer. + -> (artifact id: '7eb86b902b8d99dfaec0b1fad7fccaae') in 0.044649 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000036 seconds. + path: Assets/Terrain 1 0.asset + artifactKey: Guid(be184bee3ec6db94e80dd830bf135521) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Terrain 1 0.asset using Guid(be184bee3ec6db94e80dd830bf135521) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '17c2be233300601d336e0995c0a8cdbe') in 0.044298 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000045 seconds. + path: Assets/Terrain 1 1.asset + artifactKey: Guid(250ff56fbe738fe4da596c64d84c060c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Terrain 1 1.asset using Guid(250ff56fbe738fe4da596c64d84c060c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9ba8b56d480b44f1513116831fdebce8') in 0.040284 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000036 seconds. + path: Assets/Terrain 1 2.asset + artifactKey: Guid(46f8e79a06caba04a9e44d7e513a3300) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Terrain 1 2.asset using Guid(46f8e79a06caba04a9e44d7e513a3300) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5ac0874ca1723e90d4bbf40a7215ae6d') in 0.059598 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000033 seconds. + path: Assets/Terrain 1.asset + artifactKey: Guid(c79d01fdef64a994ea2d76d37179de9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Terrain 1.asset using Guid(c79d01fdef64a994ea2d76d37179de9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) The tree CaveRockCATA_A couldn't be instanced because the prefab contains no valid mesh renderer. +The tree CaveRockCATA_B couldn't be instanced because the prefab contains no valid mesh renderer. +The tree CaveRockCATA_D couldn't be instanced because the prefab contains no valid mesh renderer. + -> (artifact id: 'f0a70492663fb388018d22f2475d39b3') in 0.042606 seconds +======================================================================== +Received Import Request. + Time since last request: 1.924821 seconds. + path: Assets/Sky + artifactKey: Guid(e95aeaf61be80674baaf09f9570c6b7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Sky using Guid(e95aeaf61be80674baaf09f9570c6b7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '087495df82e069ea706406350237e208') in 0.007611 seconds +======================================================================== +Received Import Request. + Time since last request: 0.243394 seconds. + path: Assets/Settings + artifactKey: Guid(70f1142a4422506479549713c85b0de4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Settings using Guid(70f1142a4422506479549713c85b0de4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dc469c92c592c489a3ef6b063105514a') in 0.007517 seconds +======================================================================== +Received Import Request. + Time since last request: 0.489990 seconds. + path: Assets/Scenes + artifactKey: Guid(89e5f9b6a0fcdae4e8ccb4b461925e8c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scenes using Guid(89e5f9b6a0fcdae4e8ccb4b461925e8c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '21a127d53529f65b92f458d3e10fd288') in 0.008482 seconds +======================================================================== +Received Import Request. + Time since last request: 0.361983 seconds. + path: Assets/Toby Fredson + artifactKey: Guid(4a26c69381a0222499753e4aecc52283) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Toby Fredson using Guid(4a26c69381a0222499753e4aecc52283) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4002d0ed0ff70bf70d353ae8ec6d4be3') in 0.008217 seconds +======================================================================== +Received Import Request. + Time since last request: 1.281989 seconds. + path: Assets/Textures + artifactKey: Guid(3bd114993e2eaa540ac1b7f24fbc3658) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Textures using Guid(3bd114993e2eaa540ac1b7f24fbc3658) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '82a1f3fa6bafd692597d6a93457c25ba') in 0.007184 seconds +======================================================================== +Received Import Request. + Time since last request: 0.949555 seconds. + path: Assets/Textures/Boardwalk + artifactKey: Guid(f6741ce4489fe2b4fa4cad73f8deab98) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Textures/Boardwalk using Guid(f6741ce4489fe2b4fa4cad73f8deab98) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '339b72397c68590b1208f1c3b6b887c1') in 0.006924 seconds +======================================================================== +Received Import Request. + Time since last request: 0.156708 seconds. + path: Assets/Textures/Grass + artifactKey: Guid(ab375a5af98ff9d4589f0f17ad3bf3ed) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Textures/Grass using Guid(ab375a5af98ff9d4589f0f17ad3bf3ed) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c377cae7319ab4e2602bb3253e2ae217') in 0.008428 seconds +======================================================================== +Received Import Request. + Time since last request: 0.138982 seconds. + path: Assets/Textures/Ground + artifactKey: Guid(2fa5bee3be43e794dac0caeaaa9edb36) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Textures/Ground using Guid(2fa5bee3be43e794dac0caeaaa9edb36) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '87431a541a607395e735dae23725a174') in 0.006846 seconds +======================================================================== +Received Import Request. + Time since last request: 0.130272 seconds. + path: Assets/Textures/Rocks + artifactKey: Guid(46046caf61b6c7447b52b7e635d168a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Textures/Rocks using Guid(46046caf61b6c7447b52b7e635d168a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f071506ec0aaeef8af8ff387ef6d6b75') in 0.007544 seconds +======================================================================== +Received Import Request. + Time since last request: 0.138821 seconds. + path: Assets/Textures/Temple + artifactKey: Guid(e788175431be9ad4cbe557ea03d5098b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Textures/Temple using Guid(e788175431be9ad4cbe557ea03d5098b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '234ec0b0a10cdd4ce1ce5390f6568a06') in 0.006681 seconds +======================================================================== +Received Import Request. + Time since last request: 0.103529 seconds. + path: Assets/Textures/Trees + artifactKey: Guid(6c111ad05ec7f894189b96818fefe8c6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Textures/Trees using Guid(6c111ad05ec7f894189b96818fefe8c6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e0caf2837db39b1b7aa274e1995b5644') in 0.007402 seconds +======================================================================== +Received Import Request. + Time since last request: 13.224372 seconds. + path: Assets/Textures/UI/Compass 1.png + artifactKey: Guid(a4176076fd224e3419d85518acf44e48) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Textures/UI/Compass 1.png using Guid(a4176076fd224e3419d85518acf44e48) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9732c64633eadc103b5f92eae0a8008b') in 0.015305 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000039 seconds. + path: Assets/Textures/UI/CompassBackground.png + artifactKey: Guid(97e76b9fe6385944da85946031e74b0b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Textures/UI/CompassBackground.png using Guid(97e76b9fe6385944da85946031e74b0b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4b3c50f95d78fd931ad7ff341e2e47a6') in 0.013722 seconds +======================================================================== +Received Import Request. + Time since last request: 54.832084 seconds. + path: Assets/Textures/UI/Compass 1.png + artifactKey: Guid(a4176076fd224e3419d85518acf44e48) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Textures/UI/Compass 1.png using Guid(a4176076fd224e3419d85518acf44e48) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1c73e84777eb64109001d89ec1192d5b') in 0.016868 seconds +======================================================================== +Received Import Request. + Time since last request: 0.023075 seconds. + path: Assets/Textures/UI/compass1.png + artifactKey: Guid(7d487a0880f4571438943b23d7083d68) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Textures/UI/compass1.png using Guid(7d487a0880f4571438943b23d7083d68) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '28e17b4cb7e5bf44e55bd1a20a387e63') in 0.030584 seconds +======================================================================== +Received Import Request. + Time since last request: 12554.707550 seconds. + path: Assets/Textures/UI/Compass 1.png + artifactKey: Guid(a4176076fd224e3419d85518acf44e48) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Textures/UI/Compass 1.png using Guid(a4176076fd224e3419d85518acf44e48) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '52ab7b7ca06d6da4f7dd47ca317c1938') in 0.120193 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010377 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.67 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.881 seconds +Domain Reload Profiling: + ReloadAssembly (2882ms) + BeginReloadAssembly (317ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (11ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (81ms) + EndReloadAssembly (2393ms) + LoadAssemblies (238ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (768ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (85ms) + SetupLoadedEditorAssemblies (1229ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (136ms) + ProcessInitializeOnLoadAttributes (752ms) + ProcessInitializeOnLoadMethodAttributes (311ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 12.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 105 unused Assets / (4.9 MB). Loaded Objects now: 8095. +Memory consumption went from 463.2 MB to 458.2 MB. +Total: 8.332800 ms (FindLiveObjects: 0.805300 ms CreateObjectMapping: 0.791200 ms MarkObjects: 4.317500 ms DeleteObjects: 2.417800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 280.466689 seconds. + path: Assets/Textures/UI/Compass 1.png + artifactKey: Guid(a4176076fd224e3419d85518acf44e48) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Textures/UI/Compass 1.png using Guid(a4176076fd224e3419d85518acf44e48) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9d2b4ba675c16dd25bb49e8ed669ce7c') in 0.081172 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.009917 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.39 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.915 seconds +Domain Reload Profiling: + ReloadAssembly (1915ms) + BeginReloadAssembly (177ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (67ms) + EndReloadAssembly (1629ms) + LoadAssemblies (118ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (365ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (62ms) + SetupLoadedEditorAssemblies (989ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (12ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (115ms) + ProcessInitializeOnLoadAttributes (625ms) + ProcessInitializeOnLoadMethodAttributes (223ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 9.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8110. +Memory consumption went from 463.0 MB to 458.1 MB. +Total: 7.773300 ms (FindLiveObjects: 0.781000 ms CreateObjectMapping: 0.641800 ms MarkObjects: 4.469200 ms DeleteObjects: 1.878500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010413 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.097 seconds +Domain Reload Profiling: + ReloadAssembly (2098ms) + BeginReloadAssembly (187ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (71ms) + EndReloadAssembly (1796ms) + LoadAssemblies (118ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (370ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (79ms) + SetupLoadedEditorAssemblies (1112ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (122ms) + ProcessInitializeOnLoadAttributes (695ms) + ProcessInitializeOnLoadMethodAttributes (267ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (21ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 13.93 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8125. +Memory consumption went from 463.0 MB to 458.1 MB. +Total: 11.322400 ms (FindLiveObjects: 1.077400 ms CreateObjectMapping: 1.135000 ms MarkObjects: 7.048200 ms DeleteObjects: 2.060600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010399 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 5.57 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.173 seconds +Domain Reload Profiling: + ReloadAssembly (2173ms) + BeginReloadAssembly (173ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (66ms) + EndReloadAssembly (1875ms) + LoadAssemblies (114ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (377ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (78ms) + SetupLoadedEditorAssemblies (1169ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (6ms) + BeforeProcessingInitializeOnLoad (134ms) + ProcessInitializeOnLoadAttributes (735ms) + ProcessInitializeOnLoadMethodAttributes (270ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (28ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 11.63 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8140. +Memory consumption went from 463.1 MB to 458.1 MB. +Total: 9.207400 ms (FindLiveObjects: 0.830700 ms CreateObjectMapping: 0.706200 ms MarkObjects: 5.372100 ms DeleteObjects: 2.297300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.011643 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.25 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.951 seconds +Domain Reload Profiling: + ReloadAssembly (1952ms) + BeginReloadAssembly (182ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (65ms) + EndReloadAssembly (1660ms) + LoadAssemblies (121ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (345ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (70ms) + SetupLoadedEditorAssemblies (1024ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (12ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (121ms) + ProcessInitializeOnLoadAttributes (648ms) + ProcessInitializeOnLoadMethodAttributes (227ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (21ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8155. +Memory consumption went from 463.1 MB to 458.2 MB. +Total: 7.520600 ms (FindLiveObjects: 0.802600 ms CreateObjectMapping: 0.665500 ms MarkObjects: 4.409500 ms DeleteObjects: 1.641800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.009754 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.004 seconds +Domain Reload Profiling: + ReloadAssembly (2005ms) + BeginReloadAssembly (177ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (68ms) + EndReloadAssembly (1713ms) + LoadAssemblies (115ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (384ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (82ms) + SetupLoadedEditorAssemblies (1026ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (113ms) + ProcessInitializeOnLoadAttributes (653ms) + ProcessInitializeOnLoadMethodAttributes (234ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.65 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8170. +Memory consumption went from 463.1 MB to 458.2 MB. +Total: 7.074900 ms (FindLiveObjects: 0.792500 ms CreateObjectMapping: 0.692800 ms MarkObjects: 4.013100 ms DeleteObjects: 1.575300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010397 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 5.29 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.157 seconds +Domain Reload Profiling: + ReloadAssembly (2158ms) + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (57ms) + EndReloadAssembly (1874ms) + LoadAssemblies (114ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (406ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (79ms) + SetupLoadedEditorAssemblies (1157ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (136ms) + ProcessInitializeOnLoadAttributes (724ms) + ProcessInitializeOnLoadMethodAttributes (264ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 10.61 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8185. +Memory consumption went from 463.1 MB to 458.2 MB. +Total: 8.843500 ms (FindLiveObjects: 0.932700 ms CreateObjectMapping: 1.114700 ms MarkObjects: 4.781700 ms DeleteObjects: 2.013100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010196 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.026 seconds +Domain Reload Profiling: + ReloadAssembly (2027ms) + BeginReloadAssembly (179ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (60ms) + EndReloadAssembly (1717ms) + LoadAssemblies (114ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (388ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (66ms) + SetupLoadedEditorAssemblies (1044ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (131ms) + ProcessInitializeOnLoadAttributes (665ms) + ProcessInitializeOnLoadMethodAttributes (222ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.22 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8200. +Memory consumption went from 463.2 MB to 458.2 MB. +Total: 9.497500 ms (FindLiveObjects: 1.418900 ms CreateObjectMapping: 1.107300 ms MarkObjects: 4.357800 ms DeleteObjects: 2.611200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010717 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.94 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.024 seconds +Domain Reload Profiling: + ReloadAssembly (2024ms) + BeginReloadAssembly (182ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (71ms) + EndReloadAssembly (1727ms) + LoadAssemblies (119ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (353ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (76ms) + SetupLoadedEditorAssemblies (1066ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (130ms) + ProcessInitializeOnLoadAttributes (669ms) + ProcessInitializeOnLoadMethodAttributes (236ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8215. +Memory consumption went from 463.2 MB to 458.2 MB. +Total: 7.493500 ms (FindLiveObjects: 0.888100 ms CreateObjectMapping: 1.113700 ms MarkObjects: 3.926000 ms DeleteObjects: 1.564500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010757 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.903 seconds +Domain Reload Profiling: + ReloadAssembly (1904ms) + BeginReloadAssembly (169ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (63ms) + EndReloadAssembly (1624ms) + LoadAssemblies (112ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (351ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (62ms) + SetupLoadedEditorAssemblies (997ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (117ms) + ProcessInitializeOnLoadAttributes (630ms) + ProcessInitializeOnLoadMethodAttributes (223ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 10.15 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8230. +Memory consumption went from 463.2 MB to 458.3 MB. +Total: 7.927100 ms (FindLiveObjects: 0.954000 ms CreateObjectMapping: 0.718500 ms MarkObjects: 4.525400 ms DeleteObjects: 1.727900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.011674 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 6.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.147 seconds +Domain Reload Profiling: + ReloadAssembly (2148ms) + BeginReloadAssembly (162ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + EndReloadAssembly (1860ms) + LoadAssemblies (112ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (388ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (78ms) + SetupLoadedEditorAssemblies (1146ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (6ms) + BeforeProcessingInitializeOnLoad (131ms) + ProcessInitializeOnLoadAttributes (723ms) + ProcessInitializeOnLoadMethodAttributes (261ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 11.06 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8245. +Memory consumption went from 463.2 MB to 458.3 MB. +Total: 9.744400 ms (FindLiveObjects: 0.853600 ms CreateObjectMapping: 1.084400 ms MarkObjects: 5.444700 ms DeleteObjects: 2.360300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010596 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.25 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.901 seconds +Domain Reload Profiling: + ReloadAssembly (1902ms) + BeginReloadAssembly (161ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (59ms) + EndReloadAssembly (1626ms) + LoadAssemblies (103ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (342ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (63ms) + SetupLoadedEditorAssemblies (1018ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (12ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (122ms) + ProcessInitializeOnLoadAttributes (637ms) + ProcessInitializeOnLoadMethodAttributes (234ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.15 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8260. +Memory consumption went from 463.2 MB to 458.3 MB. +Total: 7.063200 ms (FindLiveObjects: 0.797200 ms CreateObjectMapping: 0.663600 ms MarkObjects: 4.015100 ms DeleteObjects: 1.585900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010501 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 5.12 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.023 seconds +Domain Reload Profiling: + ReloadAssembly (2024ms) + BeginReloadAssembly (165ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (64ms) + EndReloadAssembly (1741ms) + LoadAssemblies (97ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (368ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (76ms) + SetupLoadedEditorAssemblies (1069ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (128ms) + ProcessInitializeOnLoadAttributes (687ms) + ProcessInitializeOnLoadMethodAttributes (227ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 9.22 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8275. +Memory consumption went from 463.3 MB to 458.3 MB. +Total: 7.879700 ms (FindLiveObjects: 0.852800 ms CreateObjectMapping: 0.832300 ms MarkObjects: 4.510700 ms DeleteObjects: 1.682700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.012023 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 6.96 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.304 seconds +Domain Reload Profiling: + ReloadAssembly (2305ms) + BeginReloadAssembly (169ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (59ms) + EndReloadAssembly (2023ms) + LoadAssemblies (116ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (365ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (78ms) + SetupLoadedEditorAssemblies (1335ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (7ms) + BeforeProcessingInitializeOnLoad (144ms) + ProcessInitializeOnLoadAttributes (826ms) + ProcessInitializeOnLoadMethodAttributes (332ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 11.66 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8290. +Memory consumption went from 463.3 MB to 458.3 MB. +Total: 11.102300 ms (FindLiveObjects: 0.960800 ms CreateObjectMapping: 1.159000 ms MarkObjects: 6.966500 ms DeleteObjects: 2.014500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.013655 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.20 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.893 seconds +Domain Reload Profiling: + ReloadAssembly (1894ms) + BeginReloadAssembly (167ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (62ms) + EndReloadAssembly (1610ms) + LoadAssemblies (110ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (346ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (64ms) + SetupLoadedEditorAssemblies (994ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (116ms) + ProcessInitializeOnLoadAttributes (632ms) + ProcessInitializeOnLoadMethodAttributes (219ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.14 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8305. +Memory consumption went from 463.3 MB to 458.4 MB. +Total: 8.113900 ms (FindLiveObjects: 0.820700 ms CreateObjectMapping: 0.727000 ms MarkObjects: 4.903700 ms DeleteObjects: 1.660800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010438 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 5.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.038 seconds +Domain Reload Profiling: + ReloadAssembly (2038ms) + BeginReloadAssembly (159ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (55ms) + EndReloadAssembly (1772ms) + LoadAssemblies (99ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (383ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (69ms) + SetupLoadedEditorAssemblies (1100ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (6ms) + BeforeProcessingInitializeOnLoad (139ms) + ProcessInitializeOnLoadAttributes (690ms) + ProcessInitializeOnLoadMethodAttributes (242ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 12.12 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8320. +Memory consumption went from 463.3 MB to 458.4 MB. +Total: 11.745200 ms (FindLiveObjects: 1.099800 ms CreateObjectMapping: 1.142700 ms MarkObjects: 7.745200 ms DeleteObjects: 1.755900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010069 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.67 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.915 seconds +Domain Reload Profiling: + ReloadAssembly (1916ms) + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (62ms) + EndReloadAssembly (1632ms) + LoadAssemblies (106ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (345ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (67ms) + SetupLoadedEditorAssemblies (1015ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (123ms) + ProcessInitializeOnLoadAttributes (627ms) + ProcessInitializeOnLoadMethodAttributes (235ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 9.56 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8335. +Memory consumption went from 463.4 MB to 458.4 MB. +Total: 10.056600 ms (FindLiveObjects: 0.816100 ms CreateObjectMapping: 0.811900 ms MarkObjects: 6.639700 ms DeleteObjects: 1.787600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.011399 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.55 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.135 seconds +Domain Reload Profiling: + ReloadAssembly (2136ms) + BeginReloadAssembly (161ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + EndReloadAssembly (1844ms) + LoadAssemblies (97ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (366ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (89ms) + SetupLoadedEditorAssemblies (1151ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (135ms) + ProcessInitializeOnLoadAttributes (713ms) + ProcessInitializeOnLoadMethodAttributes (271ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 9.25 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8350. +Memory consumption went from 463.4 MB to 458.4 MB. +Total: 10.408600 ms (FindLiveObjects: 0.972400 ms CreateObjectMapping: 1.191700 ms MarkObjects: 6.429300 ms DeleteObjects: 1.813500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 3594.900523 seconds. + path: Assets/RPG Creation Kit/Demos/__RckDemo__/Worldspaces/[WORLDSPACE] CityInterior.asset + artifactKey: Guid(e4f9aeb32334aed4e933cd126f3d4aba) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Worldspaces/[WORLDSPACE] CityInterior.asset using Guid(e4f9aeb32334aed4e933cd126f3d4aba) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e10001766e943419cc91da201f37fc66') in 0.198596 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000035 seconds. + path: Assets/Daz3D/Architecture/Med Class/FirePlace/FirePlace_Stones/ARCStones2_M-FireplaceInterior_Roughness.png + artifactKey: Guid(7e501166491ac5240ac70a9c24fa4f09) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Med Class/FirePlace/FirePlace_Stones/ARCStones2_M-FireplaceInterior_Roughness.png using Guid(7e501166491ac5240ac70a9c24fa4f09) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '230f0f48049d90a306f01f512865e62b') in 0.045022 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000046 seconds. + path: Assets/Daz3D/Architecture/Med Class/FirePlace/FirePlace_Stones/ARCStones2_M-FireplaceInterior_BaseColor.png + artifactKey: Guid(598991533e46d9f4da43f4aefc3cf284) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Med Class/FirePlace/FirePlace_Stones/ARCStones2_M-FireplaceInterior_BaseColor.png using Guid(598991533e46d9f4da43f4aefc3cf284) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2e7b3ad6e3dec86b5b2b34024d4ede57') in 0.025659 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000032 seconds. + path: Assets/Daz3D/Architecture/Med Class/FirePlace/FirePlace_Stones/ARCStones2_M-FireplaceInterior_Metallic.png + artifactKey: Guid(c80755f2687b96e44a534de9ecf4e74d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Med Class/FirePlace/FirePlace_Stones/ARCStones2_M-FireplaceInterior_Metallic.png using Guid(c80755f2687b96e44a534de9ecf4e74d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ff5403ff53c8aa5b304825539e380df6') in 0.022047 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000041 seconds. + path: Assets/RPG Creation Kit/Animations/3rd Person/Movements & Combat/Locomotion/Combat 1H/C_1H_SwingInterrupted.fbx + artifactKey: Guid(8107ba4ca4e77af4481b1efc6a21f4e9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Animations/3rd Person/Movements & Combat/Locomotion/Combat 1H/C_1H_SwingInterrupted.fbx using Guid(8107ba4ca4e77af4481b1efc6a21f4e9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ca042abbce4991464d2b84b505f4c482') in 0.030899 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000033 seconds. + path: Assets/RPG Creation Kit/Prefab Library/UI/InteractiveOptionUI.prefab + artifactKey: Guid(63bdbd82fc7c643409fba17d3a3abb72) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Prefab Library/UI/InteractiveOptionUI.prefab using Guid(63bdbd82fc7c643409fba17d3a3abb72) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5d20fc948b962b64b5cf52ac0c3210d8') in 0.027423 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000036 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Interact/FirstPerson/OpenChestFirstPerson.fbx + artifactKey: Guid(f6dd1fd4f1ec0c04ca6682504bfd7eb2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Interact/FirstPerson/OpenChestFirstPerson.fbx using Guid(f6dd1fd4f1ec0c04ca6682504bfd7eb2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4c29ed6d1f27b693e433a54cbd8bab7e') in 0.031074 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000036 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Interact/OpenDoorLeft.fbx + artifactKey: Guid(7ff011e9d804629419996456831650f5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Interact/OpenDoorLeft.fbx using Guid(7ff011e9d804629419996456831650f5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4552333b17e658478e23321065d4b7b4') in 0.026001 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000044 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Interact/PressButton.fbx + artifactKey: Guid(a5d7d0b46dce89b4fa6145f778407923) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Interact/PressButton.fbx using Guid(a5d7d0b46dce89b4fa6145f778407923) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd9e3256bbe6701aefe8956de8ac5e302') in 0.027952 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000043 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Interact/FirstPerson/OpenDoorRightFirstPerson.fbx + artifactKey: Guid(b4766e214399bd447993c608bfaf488e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Interact/FirstPerson/OpenDoorRightFirstPerson.fbx using Guid(b4766e214399bd447993c608bfaf488e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '831c6f574d843557ffeda210eec6547b') in 0.028783 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000039 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Audio/Scene/InteractButtonPress.wav + artifactKey: Guid(1058dac247027c449aa35218ac730a5c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Audio/Scene/InteractButtonPress.wav using Guid(1058dac247027c449aa35218ac730a5c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9645f9bcb71d5bd7c5a04b283e11d0ee') in 0.032836 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000030 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Interact/FirstPerson/OpenDoorLeftFirstPerson.fbx + artifactKey: Guid(fbb0997abc1574342b9828664421df31) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Interact/FirstPerson/OpenDoorLeftFirstPerson.fbx using Guid(fbb0997abc1574342b9828664421df31) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ad1dc6c75a649cc7e677b9dde29126dc') in 0.029751 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000030 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Interact/FirstPerson/PressButtonFirstPerson.fbx + artifactKey: Guid(e2e84dd097aba0c418d7aa988f144c4c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Interact/FirstPerson/PressButtonFirstPerson.fbx using Guid(e2e84dd097aba0c418d7aa988f144c4c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b6907607e9a06f56efbb92aadc69f0bd') in 0.026481 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000055 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Audio/Scene/InteractDoorOpen.wav + artifactKey: Guid(0ed999a03c9ceed40ace6ef744d4dff7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Audio/Scene/InteractDoorOpen.wav using Guid(0ed999a03c9ceed40ace6ef744d4dff7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3004ac8f30e90e88ec31a4b074b846db') in 0.029639 seconds +======================================================================== +Received Import Request. + Time since last request: 37.770540 seconds. + path: Assets/RPG Creation Kit/Scripts/Inventory System/Character Tab/Icons/PlayerIcon.png + artifactKey: Guid(e2fac3a9bbabdd245a4282fbffcc2119) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/Inventory System/Character Tab/Icons/PlayerIcon.png using Guid(e2fac3a9bbabdd245a4282fbffcc2119) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'eef232a7c823e6a5783618d188d34df1') in 0.045925 seconds +======================================================================== +Received Import Request. + Time since last request: 0.265216 seconds. + path: Assets/RPG Creation Kit/Scripts/BehaviourTrees/Builtin Behaviours/Purpose Behaviours/[BTree] [P] JustAnotherDelvieryGuardOutside001_SpeakToPlayer.asset + artifactKey: Guid(eee0676621e59634ab4020dc1c1343c6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/BehaviourTrees/Builtin Behaviours/Purpose Behaviours/[BTree] [P] JustAnotherDelvieryGuardOutside001_SpeakToPlayer.asset using Guid(eee0676621e59634ab4020dc1c1343c6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd079bb4001b178270839f5149c8030b7') in 0.021288 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000026 seconds. + path: Assets/RPG Creation Kit/Demos/__RckDemo__/Factions/[FACTION] Against Player.asset + artifactKey: Guid(2c988a98afb4ddc4aa524cc1430746de) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Factions/[FACTION] Against Player.asset using Guid(2c988a98afb4ddc4aa524cc1430746de) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e5c4733a163062f7fbcda1951636ba4b') in 0.016387 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000041 seconds. + path: Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/Red Shade Questline/One of them/[DIALOGUE] CountSpeaksToPlayerBlewCoverage.asset + artifactKey: Guid(1daf01fe6f2e29b4882606a2d8e805c6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/Red Shade Questline/One of them/[DIALOGUE] CountSpeaksToPlayerBlewCoverage.asset using Guid(1daf01fe6f2e29b4882606a2d8e805c6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9ed19158fd9e6d6f4d7c4826c5eaaf4b') in 0.018481 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000028 seconds. + path: Assets/MeshBaker/Examples/CharacterCustomization/paintwars_gameassets.fbx + artifactKey: Guid(33dc55d6aa48f95498362c733e434014) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/MeshBaker/Examples/CharacterCustomization/paintwars_gameassets.fbx using Guid(33dc55d6aa48f95498362c733e434014) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6627117991cd507ef5f3a143dbb545b0') in 0.517164 seconds +======================================================================== +Received Import Request. + Time since last request: 279.353133 seconds. + path: Assets/RPG Creation Kit/Scripts/Player/PlayerUI.cs + artifactKey: Guid(20a0743fee2496e40a8df8dd341f0c1e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/Player/PlayerUI.cs using Guid(20a0743fee2496e40a8df8dd341f0c1e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '42c9a22abfba4cd965149426a3c9e965') in 0.007342 seconds +======================================================================== +Received Import Request. + Time since last request: 1192.190547 seconds. + path: Assets/RPG Creation Kit/Prefab Library/AI/[AI] CountTheveninThibault001.prefab + artifactKey: Guid(d6ac7fbaad43f024581a3275be4ebcb8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Prefab Library/AI/[AI] CountTheveninThibault001.prefab using Guid(d6ac7fbaad43f024581a3275be4ebcb8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6347f480419a0e1cf827b364f89ce6c1') in 134.875230 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000054 seconds. + path: Assets/RPG Creation Kit/Scripts/Character System/Scripts/BodyData.cs + artifactKey: Guid(b71667b839d325a4ba5250522712efe7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/Character System/Scripts/BodyData.cs using Guid(b71667b839d325a4ba5250522712efe7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '37ccded25d4cb55c9b1fdbcc62630ae8') in 0.008131 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000091 seconds. + path: Assets/Daz3D/Races/Oni/Male/Body.prefab + artifactKey: Guid(0b7b005f2ae3d8649904a4bb3b3feb9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Oni/Male/Body.prefab using Guid(0b7b005f2ae3d8649904a4bb3b3feb9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '51a19597d46546578af58bf69bf9a8fd') in 2.538533 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000039 seconds. + path: Assets/Daz3D/Races/Outfits/Trappers/Resources/Body.blend + artifactKey: Guid(85cb301381d78d64f9d5d7e05cbd2c84) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Outfits/Trappers/Resources/Body.blend using Guid(85cb301381d78d64f9d5d7e05cbd2c84) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5e4a16ab370f1978e7da399cbddfb2ff') in 6.074925 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000068 seconds. + path: Assets/Daz3D/Races/Underworld/Female/Body.prefab + artifactKey: Guid(b7868f47df775654094aed906b22a0f3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Underworld/Female/Body.prefab using Guid(b7868f47df775654094aed906b22a0f3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '15cfbbe7be82be6318b2553e0b687ed0') in 1.699146 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000042 seconds. + path: Assets/Daz3D/Races/Ogre/Male/Body.prefab + artifactKey: Guid(999d1ed96455feb41a71980c56d6dd53) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Ogre/Male/Body.prefab using Guid(999d1ed96455feb41a71980c56d6dd53) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8a9d7130c7bc5b631756fd6ff8231ee1') in 1.521695 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000052 seconds. + path: Assets/Daz3D/Races/Oumua/Male/Body.prefab + artifactKey: Guid(95c68d036a8785e4cbec4cc02f8daded) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Oumua/Male/Body.prefab using Guid(95c68d036a8785e4cbec4cc02f8daded) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '28b83dc7df17fc3f241f3b9dfc77a80a') in 2.363369 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000043 seconds. + path: Assets/RPG Creation Kit/Demos/__RckDemo__/Specific Behaviours/[S_BTree] TheThiefOfTheDeadPackingStuffBehaviour.asset + artifactKey: Guid(7f66e7e20a6b1814a82f7f25818bfed3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Specific Behaviours/[S_BTree] TheThiefOfTheDeadPackingStuffBehaviour.asset using Guid(7f66e7e20a6b1814a82f7f25818bfed3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5d0e89e82ffcebbdf758d8c518ceede1') in 0.022463 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000046 seconds. + path: Assets/RPG Creation Kit/Demos/__RckDemo__/Specific Behaviours/[S_BTree] TheThiefOfTheDeadKeepDiggingBehaviour.asset + artifactKey: Guid(0c9f433f8f8f5404994cfb6e75887077) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Specific Behaviours/[S_BTree] TheThiefOfTheDeadKeepDiggingBehaviour.asset using Guid(0c9f433f8f8f5404994cfb6e75887077) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '361e0acb1d1d026374f56882d07b140e') in 0.022985 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000044 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 2/Arthromahre/FBX Files/Arthromahre@GetHitFront.FBX + artifactKey: Guid(ad6185b4ef0f6604b9b662d071486b4b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 2/Arthromahre/FBX Files/Arthromahre@GetHitFront.FBX using Guid(ad6185b4ef0f6604b9b662d071486b4b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8145c4feda034f561d69038ac212f0d2') in 0.026007 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000040 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 2/Arthromahre/FBX Files/Arthromahre@GetHitBack.FBX + artifactKey: Guid(339912c4b0a8a094fb3e3ed16600d841) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 2/Arthromahre/FBX Files/Arthromahre@GetHitBack.FBX using Guid(339912c4b0a8a094fb3e3ed16600d841) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ae5605fb89722ea8e619fd8382045ed5') in 0.023814 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000041 seconds. + path: Assets/Daz3D/Architecture/Fancy/Gothic Bed/_GothicBed.fbx + artifactKey: Guid(6053c330606a9024892e383400a5812e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Fancy/Gothic Bed/_GothicBed.fbx using Guid(6053c330606a9024892e383400a5812e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '01d8ec70f95c12b63aaf7fb397897690') in 0.494179 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010343 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 5.49 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.254 seconds +Domain Reload Profiling: + ReloadAssembly (2255ms) + BeginReloadAssembly (175ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (67ms) + EndReloadAssembly (1970ms) + LoadAssemblies (115ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (391ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (86ms) + SetupLoadedEditorAssemblies (1228ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (6ms) + BeforeProcessingInitializeOnLoad (142ms) + ProcessInitializeOnLoadAttributes (798ms) + ProcessInitializeOnLoadMethodAttributes (255ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (32ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 9.76 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 91 unused Assets / (4.9 MB). Loaded Objects now: 8411. +Memory consumption went from 464.5 MB to 459.6 MB. +Total: 9.457000 ms (FindLiveObjects: 0.887200 ms CreateObjectMapping: 0.905000 ms MarkObjects: 5.679800 ms DeleteObjects: 1.983200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010576 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.127 seconds +Domain Reload Profiling: + ReloadAssembly (2128ms) + BeginReloadAssembly (173ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (58ms) + EndReloadAssembly (1845ms) + LoadAssemblies (114ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (372ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (74ms) + SetupLoadedEditorAssemblies (1159ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (131ms) + ProcessInitializeOnLoadAttributes (721ms) + ProcessInitializeOnLoadMethodAttributes (278ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 11.15 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8426. +Memory consumption went from 464.5 MB to 459.5 MB. +Total: 11.227700 ms (FindLiveObjects: 1.037600 ms CreateObjectMapping: 1.212600 ms MarkObjects: 7.053500 ms DeleteObjects: 1.922600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010262 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.39 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.698 seconds +Domain Reload Profiling: + ReloadAssembly (2699ms) + BeginReloadAssembly (181ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (64ms) + EndReloadAssembly (2392ms) + LoadAssemblies (119ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (407ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (92ms) + SetupLoadedEditorAssemblies (1631ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (120ms) + ProcessInitializeOnLoadAttributes (1134ms) + ProcessInitializeOnLoadMethodAttributes (346ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (26ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 11.62 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8441. +Memory consumption went from 464.5 MB to 459.6 MB. +Total: 7.936500 ms (FindLiveObjects: 0.923500 ms CreateObjectMapping: 0.722500 ms MarkObjects: 4.402500 ms DeleteObjects: 1.886700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 1273.604020 seconds. + path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Carcidonte00.prefab + artifactKey: Guid(f497b186b7589c142984398b448d7b8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Carcidonte00.prefab using Guid(f497b186b7589c142984398b448d7b8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Carcidonte_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) +UnityEditor.GameObjectInspector:GetPreviewData () +UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) +UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) +UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) + +[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] + + -> (artifact id: 'a95e6005e094fa9e35861efc80e006ca') in 1.029427 seconds +======================================================================== +Received Import Request. + Time since last request: 2.185945 seconds. + path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00B.prefab + artifactKey: Guid(05aebcc5b6afe314c8efe7d98eaa3abf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00B.prefab using Guid(05aebcc5b6afe314c8efe7d98eaa3abf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) +UnityEditor.GameObjectInspector:GetPreviewData () +UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) +UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) +UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) + +[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] + + -> (artifact id: '8a68d0e99f96fd0fa37062a6cb218fe4') in 0.661068 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000038 seconds. + path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00I.prefab + artifactKey: Guid(910d9f2722f2b884db602ab3113df917) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00I.prefab using Guid(910d9f2722f2b884db602ab3113df917) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) +UnityEditor.GameObjectInspector:GetPreviewData () +UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) +UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) +UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) + +[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] + + -> (artifact id: 'beb5cbea8e7b75b4c3f726cab0e89af8') in 0.633839 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000048 seconds. + path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] SkeletonOutlaw001.prefab + artifactKey: Guid(2102777de61867b4c974a06b24f7cbba) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] SkeletonOutlaw001.prefab using Guid(2102777de61867b4c974a06b24f7cbba) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '88099c8c7a680579b8716e5f320397e0') in 0.279773 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000041 seconds. + path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00E.prefab + artifactKey: Guid(a780ec0f63d4ba941b1426a554f5139a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00E.prefab using Guid(a780ec0f63d4ba941b1426a554f5139a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) +UnityEditor.GameObjectInspector:GetPreviewData () +UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) +UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) +UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) + +[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] + + -> (artifact id: '2797963f7e081a9864b7370765e6c66d') in 0.662063 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000047 seconds. + path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00D.prefab + artifactKey: Guid(c8aea09ec4be4e9448471bb8069c73cd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00D.prefab using Guid(c8aea09ec4be4e9448471bb8069c73cd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) +UnityEditor.GameObjectInspector:GetPreviewData () +UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) +UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) +UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) + +[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] + + -> (artifact id: 'ee8ab54da4031fc9d58e0596d60ae7e0') in 0.634915 seconds +======================================================================== +Received Import Request. + Time since last request: 0.342869 seconds. + path: Assets/RPG Creation Kit/Scripts/AI/Creature AI/Editor/CreatureAI_InspectorImage.png + artifactKey: Guid(16b51a45e75991b4ab91a67dbc6afd2f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/AI/Creature AI/Editor/CreatureAI_InspectorImage.png using Guid(16b51a45e75991b4ab91a67dbc6afd2f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bfb29c25dc4be9d6dab2fb7d085e4408') in 0.026026 seconds +======================================================================== +Received Import Request. + Time since last request: 1.780343 seconds. + path: Assets/RPG Creation Kit/Demos/Character Creation/_CharacterCreation_.unity + artifactKey: Guid(6463029c8c312c44bad489e88a5f8441) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Demos/Character Creation/_CharacterCreation_.unity using Guid(6463029c8c312c44bad489e88a5f8441) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4ccb5c4ccf4508d4770a5db264e421eb') in 0.007018 seconds +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 17.93 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 90 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8519. +Memory consumption went from 290.4 MB to 285.5 MB. +Total: 9.381700 ms (FindLiveObjects: 0.877400 ms CreateObjectMapping: 0.767300 ms MarkObjects: 5.793000 ms DeleteObjects: 1.942300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 32473.416945 seconds. + path: Assets/Daz3D/Races/Human/Male/Body 1.prefab + artifactKey: Guid(aae6e21843032ef458fefcb63a0aa491) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Human/Male/Body 1.prefab using Guid(aae6e21843032ef458fefcb63a0aa491) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '48215e43802428d2ebfe53fb692be6ab') in 0.913166 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000057 seconds. + path: Assets/Daz3D/Races/Human/Male/Body.prefab + artifactKey: Guid(f26f3daa913e70d4dab390e12c669d42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Human/Male/Body.prefab using Guid(f26f3daa913e70d4dab390e12c669d42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'feddd03e3d65e8844deef2b79cc92c94') in 0.805071 seconds +======================================================================== +Received Import Request. + Time since last request: 96.211047 seconds. + path: Assets/Daz3D/Races/Human/Male/Body 2.prefab + artifactKey: Guid(cc1dd0d576a24c841a4fbddcccbecb50) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Human/Male/Body 2.prefab using Guid(cc1dd0d576a24c841a4fbddcccbecb50) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '12282c14a241cd0acea2a6c41b075f89') in 5.360542 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.011907 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.55 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.206 seconds +Domain Reload Profiling: + ReloadAssembly (2207ms) + BeginReloadAssembly (184ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (70ms) + EndReloadAssembly (1898ms) + LoadAssemblies (123ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (390ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (79ms) + SetupLoadedEditorAssemblies (1179ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (134ms) + ProcessInitializeOnLoadAttributes (747ms) + ProcessInitializeOnLoadMethodAttributes (266ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (31ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 12.80 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8498. +Memory consumption went from 464.8 MB to 459.8 MB. +Total: 9.845300 ms (FindLiveObjects: 1.102400 ms CreateObjectMapping: 1.156800 ms MarkObjects: 5.565700 ms DeleteObjects: 2.018800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.012652 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 7.26 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.212 seconds +Domain Reload Profiling: + ReloadAssembly (2213ms) + BeginReloadAssembly (173ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (58ms) + EndReloadAssembly (1920ms) + LoadAssemblies (113ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (379ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (75ms) + SetupLoadedEditorAssemblies (1230ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (7ms) + BeforeProcessingInitializeOnLoad (139ms) + ProcessInitializeOnLoadAttributes (776ms) + ProcessInitializeOnLoadMethodAttributes (279ms) + AfterProcessingInitializeOnLoad (14ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 11.58 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8513. +Memory consumption went from 464.7 MB to 459.8 MB. +Total: 8.561700 ms (FindLiveObjects: 0.881200 ms CreateObjectMapping: 1.015900 ms MarkObjects: 4.609100 ms DeleteObjects: 2.054500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.009842 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.62 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.142 seconds +Domain Reload Profiling: + ReloadAssembly (2143ms) + BeginReloadAssembly (182ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (64ms) + EndReloadAssembly (1842ms) + LoadAssemblies (119ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (373ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (72ms) + SetupLoadedEditorAssemblies (1154ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (133ms) + ProcessInitializeOnLoadAttributes (734ms) + ProcessInitializeOnLoadMethodAttributes (256ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (28ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 11.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8528. +Memory consumption went from 464.8 MB to 459.8 MB. +Total: 11.913500 ms (FindLiveObjects: 1.185300 ms CreateObjectMapping: 1.552600 ms MarkObjects: 7.125500 ms DeleteObjects: 2.048300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010200 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.897 seconds +Domain Reload Profiling: + ReloadAssembly (1898ms) + BeginReloadAssembly (159ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (55ms) + EndReloadAssembly (1634ms) + LoadAssemblies (103ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (339ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (63ms) + SetupLoadedEditorAssemblies (1024ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (114ms) + ProcessInitializeOnLoadAttributes (657ms) + ProcessInitializeOnLoadMethodAttributes (227ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (21ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.75 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8543. +Memory consumption went from 464.8 MB to 459.8 MB. +Total: 7.562700 ms (FindLiveObjects: 0.852500 ms CreateObjectMapping: 0.734700 ms MarkObjects: 4.268400 ms DeleteObjects: 1.705300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.012879 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.61 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.141 seconds +Domain Reload Profiling: + ReloadAssembly (2142ms) + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (58ms) + EndReloadAssembly (1842ms) + LoadAssemblies (108ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (363ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (76ms) + SetupLoadedEditorAssemblies (1156ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (126ms) + ProcessInitializeOnLoadAttributes (742ms) + ProcessInitializeOnLoadMethodAttributes (256ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (28ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 11.24 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8558. +Memory consumption went from 464.8 MB to 459.9 MB. +Total: 9.947100 ms (FindLiveObjects: 1.196300 ms CreateObjectMapping: 0.915400 ms MarkObjects: 5.630800 ms DeleteObjects: 2.202900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 4658.291410 seconds. + path: Assets/Daz3D/Races/Human/Female/Body (OLD Delete me).prefab + artifactKey: Guid(327251dd02480b24fa9a43f008887005) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Human/Female/Body (OLD Delete me).prefab using Guid(327251dd02480b24fa9a43f008887005) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '22dba9962fe722355cf1e9aeda1f421d') in 1.847854 seconds +======================================================================== +Received Import Request. + Time since last request: 16.090831 seconds. + path: Assets/Daz3D/Races/Dark Elf/Male + artifactKey: Guid(69905605b1d533d43abdd6e7f80a5a30) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Dark Elf/Male using Guid(69905605b1d533d43abdd6e7f80a5a30) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0edec390a103bf0cfdc71bbd4d033ed5') in 0.007862 seconds +======================================================================== +Received Import Request. + Time since last request: 0.200920 seconds. + path: Assets/Daz3D/Races/Dark Elf/Male/Body.prefab + artifactKey: Guid(b9dc31516af09154db26185981345beb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Dark Elf/Male/Body.prefab using Guid(b9dc31516af09154db26185981345beb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '76ea817dcb574ed4c5588aaad124241d') in 1.418080 seconds +======================================================================== +Received Import Request. + Time since last request: 8.749502 seconds. + path: Assets/Daz3D/Races/Dark Elf/Male/Body.prefab + artifactKey: Guid(b9dc31516af09154db26185981345beb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Dark Elf/Male/Body.prefab using Guid(b9dc31516af09154db26185981345beb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cadf95e5fdfdddcc94a23ebd96f44367') in 1.142754 seconds +======================================================================== +Received Import Request. + Time since last request: 1.152588 seconds. + path: Assets/Daz3D/Races/Dark Elf/Male/Body.prefab + artifactKey: Guid(b9dc31516af09154db26185981345beb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Dark Elf/Male/Body.prefab using Guid(b9dc31516af09154db26185981345beb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd53bd00a2cdc1dcb7559f20ba53a1218') in 1.174164 seconds +======================================================================== +Received Import Request. + Time since last request: 1.583274 seconds. + path: Assets/Daz3D/Races/Dark Elf/Female/Body.prefab + artifactKey: Guid(0573e2feb1a62d14ba87c38e789d82e2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Dark Elf/Female/Body.prefab using Guid(0573e2feb1a62d14ba87c38e789d82e2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ecf6ed00f45a32311265248c6a94d47c') in 6.483105 seconds +======================================================================== +Received Import Request. + Time since last request: 3.551038 seconds. + path: Assets/Daz3D/Races/Fi/Female/Body.prefab + artifactKey: Guid(3bd1f6407d56631488aa18e31f574b1b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Fi/Female/Body.prefab using Guid(3bd1f6407d56631488aa18e31f574b1b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '466bf847fcb6ebd906f2bf253d2092e2') in 6.935291 seconds +======================================================================== +Received Import Request. + Time since last request: 4.876517 seconds. + path: Assets/Daz3D/Races/Fi/Male/Body.prefab + artifactKey: Guid(7978de8ca735b5448bb28071841ee21b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Fi/Male/Body.prefab using Guid(7978de8ca735b5448bb28071841ee21b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '363ad442d766e8171c8bc21e060399f7') in 1.889814 seconds +======================================================================== +Received Import Request. + Time since last request: 7.911705 seconds. + path: Assets/Daz3D/Races/Goblin/Female/Body.prefab + artifactKey: Guid(9b5fb873976e0054a854b443fec66f42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Goblin/Female/Body.prefab using Guid(9b5fb873976e0054a854b443fec66f42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ea18066d0276e0b17f2a2857d0443aeb') in 6.337938 seconds +======================================================================== +Received Import Request. + Time since last request: 5.743289 seconds. + path: Assets/Daz3D/Races/Goblin/Male/Body.prefab + artifactKey: Guid(f0eac46153d9277498019ffbd605a120) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Goblin/Male/Body.prefab using Guid(f0eac46153d9277498019ffbd605a120) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '71b411ad6688dd9c8d8ed3f8f067feaf') in 5.546257 seconds +======================================================================== +Received Import Request. + Time since last request: 6.425454 seconds. + path: Assets/Daz3D/Races/Ichtapau/Male/Body.prefab + artifactKey: Guid(6dd50b9e6adb8004cb331dbfa95960e5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Ichtapau/Male/Body.prefab using Guid(6dd50b9e6adb8004cb331dbfa95960e5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'eb2772669903ca15398478e0d8e151a3') in 5.732520 seconds +======================================================================== +Received Import Request. + Time since last request: 5.024810 seconds. + path: Assets/Daz3D/Races/Jaz/Male/Body.prefab + artifactKey: Guid(875abd4c9d8bff842af962faf7443c85) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Jaz/Male/Body.prefab using Guid(875abd4c9d8bff842af962faf7443c85) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2a6892bbd04f24853c378db8cafc87ea') in 5.628584 seconds +======================================================================== +Received Import Request. + Time since last request: 0.944070 seconds. + path: Assets/Daz3D/Races/Jaz/Male/Body.prefab + artifactKey: Guid(875abd4c9d8bff842af962faf7443c85) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Jaz/Male/Body.prefab using Guid(875abd4c9d8bff842af962faf7443c85) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd872204bdb15ef5ce29d70b2733e1234') in 5.737291 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000045 seconds. + path: Assets/Daz3D/Races/Jaz/Female/Body.prefab + artifactKey: Guid(de804a55b547b39468601b032b36e98a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Jaz/Female/Body.prefab using Guid(de804a55b547b39468601b032b36e98a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0be5a3c4714a44c00f95d092798d4ef6') in 6.519900 seconds +======================================================================== +Received Import Request. + Time since last request: 4.670598 seconds. + path: Assets/Daz3D/Races/Ogre/Male/Body.prefab + artifactKey: Guid(999d1ed96455feb41a71980c56d6dd53) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Ogre/Male/Body.prefab using Guid(999d1ed96455feb41a71980c56d6dd53) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dce5d0f165d7683bac02d9f24dc354dd') in 1.222713 seconds +======================================================================== +Received Import Request. + Time since last request: 0.154586 seconds. + path: Assets/Daz3D/Races/Ogre/Male/Body.prefab + artifactKey: Guid(999d1ed96455feb41a71980c56d6dd53) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Ogre/Male/Body.prefab using Guid(999d1ed96455feb41a71980c56d6dd53) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '630bfae51099572ccf389ed34aec57ff') in 1.101879 seconds +======================================================================== +Received Import Request. + Time since last request: 9.968634 seconds. + path: Assets/Daz3D/Races/Oni/Male/Body.prefab + artifactKey: Guid(0b7b005f2ae3d8649904a4bb3b3feb9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Oni/Male/Body.prefab using Guid(0b7b005f2ae3d8649904a4bb3b3feb9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5afdbd4f41d59f92ee5bea0fe4044765') in 1.199604 seconds +======================================================================== +Received Import Request. + Time since last request: 5.795376 seconds. + path: Assets/Daz3D/Races/Oni/Male/Body.prefab + artifactKey: Guid(0b7b005f2ae3d8649904a4bb3b3feb9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Oni/Male/Body.prefab using Guid(0b7b005f2ae3d8649904a4bb3b3feb9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2d5a7c0df71f92180620ade2790ae729') in 1.007120 seconds +======================================================================== +Received Import Request. + Time since last request: 0.212450 seconds. + path: Assets/Daz3D/Races/Oni/Male/Body.prefab + artifactKey: Guid(0b7b005f2ae3d8649904a4bb3b3feb9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Oni/Male/Body.prefab using Guid(0b7b005f2ae3d8649904a4bb3b3feb9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6e9f860797843ae1a01b12680aec08c6') in 1.022403 seconds +======================================================================== +Received Import Request. + Time since last request: 93.157737 seconds. + path: Assets/Daz3D/Races/Oumua/Male/Body.prefab + artifactKey: Guid(95c68d036a8785e4cbec4cc02f8daded) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Oumua/Male/Body.prefab using Guid(95c68d036a8785e4cbec4cc02f8daded) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '148f41eb69e2952198da07bfda88dcd3') in 1.886429 seconds +======================================================================== +Received Import Request. + Time since last request: 4.401243 seconds. + path: Assets/Daz3D/Races/Oumua/Male/Body.prefab + artifactKey: Guid(95c68d036a8785e4cbec4cc02f8daded) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Oumua/Male/Body.prefab using Guid(95c68d036a8785e4cbec4cc02f8daded) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2830ffc64f3172a928dd1fc444ec0c05') in 1.719469 seconds +======================================================================== +Received Import Request. + Time since last request: 0.350938 seconds. + path: Assets/Daz3D/Races/Oumua/Female/Body.prefab + artifactKey: Guid(0a7177ce4aa30c242a9000177411d5a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Oumua/Female/Body.prefab using Guid(0a7177ce4aa30c242a9000177411d5a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd60f628f84d07a9d9a1eff2ecdda37eb') in 6.455742 seconds +======================================================================== +Received Import Request. + Time since last request: 1.184850 seconds. + path: Assets/Daz3D/Races/Ozias/[RACE] Ozias.asset + artifactKey: Guid(2a727b4644ea58c4c9e88a3b82aa7291) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Ozias/[RACE] Ozias.asset using Guid(2a727b4644ea58c4c9e88a3b82aa7291) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7b558fa20a16e46eb6eda185528da4b0') in 114.040346 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000067 seconds. + path: Assets/Daz3D/Races/Underworld/Male/Body 2.prefab + artifactKey: Guid(fc6cec7da4770a3439b2d4f73359a6d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Underworld/Male/Body 2.prefab using Guid(fc6cec7da4770a3439b2d4f73359a6d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ce4bea1ef98a991bd29219f10b288c61') in 1.708462 seconds +======================================================================== +Received Import Request. + Time since last request: 33.888838 seconds. + path: Assets/Daz3D/Races/Underworld/Female/Body.prefab + artifactKey: Guid(b7868f47df775654094aed906b22a0f3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Underworld/Female/Body.prefab using Guid(b7868f47df775654094aed906b22a0f3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '49b7003a9f39dbb1571cf3f2ca7804bc') in 1.182930 seconds +======================================================================== +Received Import Request. + Time since last request: 2.873547 seconds. + path: Assets/Daz3D/Races/Underworld/Female/Body 2.prefab + artifactKey: Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Underworld/Female/Body 2.prefab using Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cd7d2f08b6a42c34e82a99c6b5f2af5a') in 1.337756 seconds +======================================================================== +Received Import Request. + Time since last request: 29.005470 seconds. + path: Assets/Daz3D/Races/Underworld/Female/Body 2.prefab + artifactKey: Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Underworld/Female/Body 2.prefab using Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b57e2df65d8c1eb651c925ecc746eb74') in 1.358091 seconds +======================================================================== +Received Import Request. + Time since last request: 12.855317 seconds. + path: Assets/Daz3D/Races/Underworld/Female/Body 2.prefab + artifactKey: Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Underworld/Female/Body 2.prefab using Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bc7c4fdb2460c87d688e527b813b417b') in 1.363839 seconds +======================================================================== +Received Import Request. + Time since last request: 2.638811 seconds. + path: Assets/Daz3D/Races/Underworld/Female/Body 2.prefab + artifactKey: Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Underworld/Female/Body 2.prefab using Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '312db9e81e4d828675c26d911fd4b7da') in 1.331969 seconds +======================================================================== +Received Import Request. + Time since last request: 2.986891 seconds. + path: Assets/Daz3D/Races/Underworld/Female/Body 2.prefab + artifactKey: Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Underworld/Female/Body 2.prefab using Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c8c1229f694de1e328798d1d3e7d6415') in 1.345071 seconds +======================================================================== +Received Import Request. + Time since last request: 7.359228 seconds. + path: Assets/Daz3D/Races/Underworld/Female/Body 2.prefab + artifactKey: Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Underworld/Female/Body 2.prefab using Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '54693d930d8f0a11cd586887cf64d742') in 1.329720 seconds +======================================================================== +Received Import Request. + Time since last request: 2.296741 seconds. + path: Assets/Daz3D/Races/Underworld/Female/Body 2.prefab + artifactKey: Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Underworld/Female/Body 2.prefab using Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b2cbe94eabf8db963837db8321f13787') in 1.354935 seconds +======================================================================== +Received Import Request. + Time since last request: 3.963006 seconds. + path: Assets/Daz3D/Races/Underworld/Female/Body 2.prefab + artifactKey: Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Underworld/Female/Body 2.prefab using Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f7097649db9590cc57077caae1d64b50') in 1.358122 seconds +======================================================================== +Received Import Request. + Time since last request: 10.736097 seconds. + path: Assets/Daz3D/Races/Underworld/Female/Body 2.prefab + artifactKey: Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Underworld/Female/Body 2.prefab using Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e87812671da71d02c27c20af765f9840') in 1.361307 seconds +======================================================================== +Received Import Request. + Time since last request: 3.349241 seconds. + path: Assets/Daz3D/Races/Underworld/Female/Body 2.prefab + artifactKey: Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Underworld/Female/Body 2.prefab using Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dd186a828518580ce6969b753cfe31f7') in 1.332075 seconds +======================================================================== +Received Import Request. + Time since last request: 2.995474 seconds. + path: Assets/Daz3D/Races/Underworld/Female/Body 2.prefab + artifactKey: Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Underworld/Female/Body 2.prefab using Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '77f2da568dff5821fe9cd226d1fecde7') in 1.358696 seconds +======================================================================== +Received Import Request. + Time since last request: 60.898933 seconds. + path: Assets/Daz3D/Races/Underworld/Female/Body 2.prefab + artifactKey: Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Underworld/Female/Body 2.prefab using Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1907af3e41c8ac3feb04377969dab73b') in 1.297665 seconds +======================================================================== +Received Import Request. + Time since last request: 2015.162429 seconds. + path: Assets/Daz3D/Races/Underworld/Female/Body 2.prefab + artifactKey: Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Underworld/Female/Body 2.prefab using Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0cbb708f847ef548ec211316d82b5cfb') in 1.343745 seconds +======================================================================== +Received Import Request. + Time since last request: 8.410377 seconds. + path: Assets/Daz3D/Races/Underworld/Female/Body 2.prefab + artifactKey: Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Underworld/Female/Body 2.prefab using Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7ad233ca316f069b67b849ac4530b54d') in 1.344508 seconds +======================================================================== +Received Import Request. + Time since last request: 7.409089 seconds. + path: Assets/Daz3D/Races/Underworld/Female/Body 2.prefab + artifactKey: Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Underworld/Female/Body 2.prefab using Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '900d1f611b23e7905dcfbd6010ac5f37') in 1.434974 seconds +======================================================================== +Received Import Request. + Time since last request: 7.280719 seconds. + path: Assets/Daz3D/Races/Underworld/Female/Body 2.prefab + artifactKey: Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Underworld/Female/Body 2.prefab using Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '75a7e41f9873a3d3a27221f706c923be') in 1.356688 seconds +======================================================================== +Received Import Request. + Time since last request: 24.308644 seconds. + path: Assets/Daz3D/Races/Underworld/Female/Body.prefab + artifactKey: Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Underworld/Female/Body.prefab using Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2a22c4ff5296d1251b139d697f88e7a7') in 1.362809 seconds +======================================================================== +Received Import Request. + Time since last request: 14.053842 seconds. + path: Assets/Daz3D/Races/Underworld/Male/Body 2.prefab + artifactKey: Guid(fc6cec7da4770a3439b2d4f73359a6d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Underworld/Male/Body 2.prefab using Guid(fc6cec7da4770a3439b2d4f73359a6d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'aadb5f41e24202f711abe91f4b54cbec') in 1.377752 seconds +======================================================================== +Received Import Request. + Time since last request: 7.097293 seconds. + path: Assets/Daz3D/Races/Underworld/Male/Body 2.prefab + artifactKey: Guid(fc6cec7da4770a3439b2d4f73359a6d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Underworld/Male/Body 2.prefab using Guid(fc6cec7da4770a3439b2d4f73359a6d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9ad2e3018a600dbf6367dd4fffaf9645') in 1.369408 seconds +======================================================================== +Received Import Request. + Time since last request: 6.430377 seconds. + path: Assets/Daz3D/Races/Underworld/Male/Body 2.prefab + artifactKey: Guid(fc6cec7da4770a3439b2d4f73359a6d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Underworld/Male/Body 2.prefab using Guid(fc6cec7da4770a3439b2d4f73359a6d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '758621f28bbb4becf5e86278f365ec23') in 1.350973 seconds +======================================================================== +Received Import Request. + Time since last request: 9.078195 seconds. + path: Assets/Daz3D/Races/Underworld/Male/Body 2.prefab + artifactKey: Guid(fc6cec7da4770a3439b2d4f73359a6d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Underworld/Male/Body 2.prefab using Guid(fc6cec7da4770a3439b2d4f73359a6d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '32c2a0cf2b99c088de7313372e1c5b50') in 1.354405 seconds +======================================================================== +Received Import Request. + Time since last request: 10.218672 seconds. + path: Assets/Daz3D/Races/Underworld/Male/Body.prefab + artifactKey: Guid(fc6cec7da4770a3439b2d4f73359a6d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Underworld/Male/Body.prefab using Guid(fc6cec7da4770a3439b2d4f73359a6d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cb6bbb1b175cbd048b4236c21658a6ab') in 1.326845 seconds +======================================================================== +Received Import Request. + Time since last request: 5.567790 seconds. + path: Assets/Daz3D/Races/Abyss/Female + artifactKey: Guid(b1a3b5fa4cba88e47b1d310de17e36a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Abyss/Female using Guid(b1a3b5fa4cba88e47b1d310de17e36a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fee8de5c72e16a25de0b306f6db5bf08') in 0.007890 seconds +======================================================================== +Received Import Request. + Time since last request: 0.594082 seconds. + path: Assets/Daz3D/Races/Abyss/Male/Body.prefab + artifactKey: Guid(ccc382de852d11d4782d8be4b0a35e06) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Abyss/Male/Body.prefab using Guid(ccc382de852d11d4782d8be4b0a35e06) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c2a36fb71b49840b3d8ffb08aa918404') in 1.330907 seconds +======================================================================== +Received Import Request. + Time since last request: 11.853236 seconds. + path: Assets/Daz3D/Races/Abyss/Male/Body.prefab + artifactKey: Guid(ccc382de852d11d4782d8be4b0a35e06) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Abyss/Male/Body.prefab using Guid(ccc382de852d11d4782d8be4b0a35e06) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ed0eb3842793cc4c2a58844eae6ea139') in 1.168026 seconds +======================================================================== +Received Import Request. + Time since last request: 16.824221 seconds. + path: Assets/Daz3D/Races/Abyss/Male/Body.prefab + artifactKey: Guid(ccc382de852d11d4782d8be4b0a35e06) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Abyss/Male/Body.prefab using Guid(ccc382de852d11d4782d8be4b0a35e06) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b6eb5e2029198abdaeeb60974086db98') in 1.205167 seconds +======================================================================== +Received Import Request. + Time since last request: 2.405673 seconds. + path: Assets/Daz3D/Races/Abyss/Male/Body.prefab + artifactKey: Guid(ccc382de852d11d4782d8be4b0a35e06) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Abyss/Male/Body.prefab using Guid(ccc382de852d11d4782d8be4b0a35e06) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd3b85551eed48c8434f477d1ae9f5a06') in 1.165357 seconds +======================================================================== +Received Import Request. + Time since last request: 5.349940 seconds. + path: Assets/Daz3D/Races/Abyss/Male/Body.prefab + artifactKey: Guid(ccc382de852d11d4782d8be4b0a35e06) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Abyss/Male/Body.prefab using Guid(ccc382de852d11d4782d8be4b0a35e06) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7af6f50a40a06485bb00261d68ecf617') in 1.154012 seconds +======================================================================== +Received Import Request. + Time since last request: 7.512120 seconds. + path: Assets/Daz3D/Races/Abyss/Female/Body.prefab + artifactKey: Guid(9899fb48f2304324fb9ecba9918c9c47) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Abyss/Female/Body.prefab using Guid(9899fb48f2304324fb9ecba9918c9c47) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e1ae854866bf26a68fba2e1ba891d923') in 1.780881 seconds +======================================================================== +Received Import Request. + Time since last request: 8.165731 seconds. + path: Assets/Daz3D/Races/Abyss/Female/Body.prefab + artifactKey: Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Abyss/Female/Body.prefab using Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a3c4083d947698cd58030e0bf4e8dca9') in 1.130374 seconds +======================================================================== +Received Import Request. + Time since last request: 23.968449 seconds. + path: Assets/Daz3D/Races/Abyss/Female/Body.prefab + artifactKey: Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Abyss/Female/Body.prefab using Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '08db67c0536b8d15393d9d3fee031c03') in 1.141544 seconds +======================================================================== +Received Import Request. + Time since last request: 7.592814 seconds. + path: Assets/Daz3D/Races/Abyss/Female/Body.prefab + artifactKey: Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Abyss/Female/Body.prefab using Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '293224ce8bec4750d6f77bb33cd63baf') in 1.120447 seconds +======================================================================== +Received Import Request. + Time since last request: 2.544905 seconds. + path: Assets/Daz3D/Races/Abyss/Female/Body.prefab + artifactKey: Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Abyss/Female/Body.prefab using Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd64b29663c80ee277e5a36cf8f0936c3') in 1.131454 seconds +======================================================================== +Received Import Request. + Time since last request: 2.173392 seconds. + path: Assets/Daz3D/Races/Abyss/Female/Body.prefab + artifactKey: Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Abyss/Female/Body.prefab using Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b4d4e74509f3db221dcbc967526f5a61') in 1.142743 seconds +======================================================================== +Received Import Request. + Time since last request: 3.627439 seconds. + path: Assets/Daz3D/Races/Abyss/Female/Body.prefab + artifactKey: Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Abyss/Female/Body.prefab using Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b4d2cb0d850499189b5e7be57ccd0867') in 1.150344 seconds +======================================================================== +Received Import Request. + Time since last request: 2.404213 seconds. + path: Assets/Daz3D/Races/Abyss/Female/Body.prefab + artifactKey: Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Abyss/Female/Body.prefab using Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '35ddbe1bb7ddef5c9bec831b41b224e0') in 1.125510 seconds +======================================================================== +Received Import Request. + Time since last request: 2.747130 seconds. + path: Assets/Daz3D/Races/Abyss/Female/Body.prefab + artifactKey: Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Abyss/Female/Body.prefab using Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '49714141902c3c1faa0367a11a22164c') in 1.147498 seconds +======================================================================== +Received Import Request. + Time since last request: 2.559938 seconds. + path: Assets/Daz3D/Races/Abyss/Female/Body.prefab + artifactKey: Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Abyss/Female/Body.prefab using Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '03445e21a9a16eee6449f92736b898ab') in 1.164283 seconds +======================================================================== +Received Import Request. + Time since last request: 8.802090 seconds. + path: Assets/Daz3D/Races/Abyss/Female/Body.prefab + artifactKey: Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Abyss/Female/Body.prefab using Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2ba4ac455d20440391695aa762348210') in 1.140900 seconds +======================================================================== +Received Import Request. + Time since last request: 2.918118 seconds. + path: Assets/Daz3D/Races/Abyss/Female/Body.prefab + artifactKey: Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Abyss/Female/Body.prefab using Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c6e3d6d0d3cbb4ab360910af1fd72532') in 1.128499 seconds +======================================================================== +Received Import Request. + Time since last request: 4.205370 seconds. + path: Assets/Daz3D/Races/Abyss/Female/Body.prefab + artifactKey: Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Abyss/Female/Body.prefab using Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0f3fa4f1f5ae296941481925cba72e3d') in 1.198724 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.012052 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 5.12 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.637 seconds +Domain Reload Profiling: + ReloadAssembly (2638ms) + BeginReloadAssembly (316ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (89ms) + EndReloadAssembly (2172ms) + LoadAssemblies (220ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (688ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (68ms) + SetupLoadedEditorAssemblies (1150ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (127ms) + ProcessInitializeOnLoadAttributes (681ms) + ProcessInitializeOnLoadMethodAttributes (310ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (26ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 11.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8614. +Memory consumption went from 466.7 MB to 461.7 MB. +Total: 7.522500 ms (FindLiveObjects: 0.976200 ms CreateObjectMapping: 0.725600 ms MarkObjects: 4.149200 ms DeleteObjects: 1.669600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 17996.664224 seconds. + path: Assets/Daz3D/Races/Abyss/[RACE] Abyss.asset + artifactKey: Guid(77284990dba8ae74181da5ab8c8d8929) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Abyss/[RACE] Abyss.asset using Guid(77284990dba8ae74181da5ab8c8d8929) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd92df5146a4c19947fd2197a56a93092') in 1.002266 seconds diff --git a/Logs/AssetImportWorker2.log b/Logs/AssetImportWorker2.log index 6fb6a0230e..768471f2a0 100644 --- a/Logs/AssetImportWorker2.log +++ b/Logs/AssetImportWorker2.log @@ -15,7 +15,7 @@ C:/Work/Firstborn -logFile Logs/AssetImportWorker2.log -srvPort -61352 +56215 Successfully changed project path to: C:/Work/Firstborn C:/Work/Firstborn [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -47,11 +47,11 @@ C:/Work/Firstborn "memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gfx=262144" -Player connection [34584] Host "[IP] 192.168.1.140 [Port] 0 [Flags] 2 [Guid] 1861629621 [EditorId] 1861629621 [Version] 1048832 [Id] WindowsEditor(7,THE-BEAST) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... +Player connection [23544] Host "[IP] 192.168.1.140 [Port] 0 [Flags] 2 [Guid] 2553480353 [EditorId] 2553480353 [Version] 1048832 [Id] WindowsEditor(7,THE-BEAST) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... -Player connection [34584] Host "[IP] 192.168.1.140 [Port] 0 [Flags] 2 [Guid] 1861629621 [EditorId] 1861629621 [Version] 1048832 [Id] WindowsEditor(7,THE-BEAST) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... +Player connection [23544] Host "[IP] 192.168.1.140 [Port] 0 [Flags] 2 [Guid] 2553480353 [EditorId] 2553480353 [Version] 1048832 [Id] WindowsEditor(7,THE-BEAST) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... -Refreshing native plugins compatible for Editor in 443.96 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 356.69 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2021.3.15f1 (e8e88683f834) [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/Resources/UnitySubsystems @@ -67,89 +67,89 @@ Initialize mono Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/Managed' Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono config path = 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56648 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56540 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.010867 seconds. +Registered in 0.007225 seconds. Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 353.53 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 313.10 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.107 seconds +- Completed reload, in 0.937 seconds Domain Reload Profiling: - ReloadAssembly (1108ms) - BeginReloadAssembly (104ms) + ReloadAssembly (937ms) + BeginReloadAssembly (79ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) - EndReloadAssembly (860ms) - LoadAssemblies (101ms) + EndReloadAssembly (737ms) + LoadAssemblies (76ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (147ms) + SetupTypeCache (128ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (42ms) - SetupLoadedEditorAssemblies (600ms) + RebuildScriptCaches (29ms) + SetupLoadedEditorAssemblies (519ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (9ms) + InitializePlatformSupportModulesInManaged (8ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (354ms) - BeforeProcessingInitializeOnLoad (2ms) - ProcessInitializeOnLoadAttributes (176ms) - ProcessInitializeOnLoadMethodAttributes (60ms) + RefreshPlugins (313ms) + BeforeProcessingInitializeOnLoad (1ms) + ProcessInitializeOnLoadAttributes (150ms) + ProcessInitializeOnLoadMethodAttributes (46ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (0ms) Platform modules already initialized, skipping Registering precompiled user dll's ... -Registered in 0.011187 seconds. +Registered in 0.010549 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 410.05 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 332.56 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 4.206 seconds +- Completed reload, in 4.946 seconds Domain Reload Profiling: - ReloadAssembly (4207ms) - BeginReloadAssembly (165ms) + ReloadAssembly (4947ms) + BeginReloadAssembly (122ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (33ms) - EndReloadAssembly (3887ms) - LoadAssemblies (145ms) + CreateAndSetChildDomain (25ms) + EndReloadAssembly (4691ms) + LoadAssemblies (111ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (477ms) - ReleaseScriptCaches (2ms) - RebuildScriptCaches (144ms) - SetupLoadedEditorAssemblies (3061ms) + SetupTypeCache (433ms) + ReleaseScriptCaches (1ms) + RebuildScriptCaches (109ms) + SetupLoadedEditorAssemblies (3979ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (7ms) + InitializePlatformSupportModulesInManaged (5ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (410ms) - BeforeProcessingInitializeOnLoad (196ms) - ProcessInitializeOnLoadAttributes (1409ms) - ProcessInitializeOnLoadMethodAttributes (1029ms) - AfterProcessingInitializeOnLoad (9ms) + RefreshPlugins (333ms) + BeforeProcessingInitializeOnLoad (164ms) + ProcessInitializeOnLoadAttributes (1201ms) + ProcessInitializeOnLoadMethodAttributes (2267ms) + AfterProcessingInitializeOnLoad (10ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (7ms) + AwakeInstancesAfterBackupRestoration (8ms) Platform modules already initialized, skipping ======================================================================== Worker process is ready to serve import requests -Launched and connected shader compiler UnityShaderCompiler.exe after 0.07 seconds -Refreshing native plugins compatible for Editor in 7.52 ms, found 3 plugins. +Launched and connected shader compiler UnityShaderCompiler.exe after 0.05 seconds +Refreshing native plugins compatible for Editor in 4.18 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 7673 Unused Serialized files (Serialized files now loaded: 0) -Unloading 3615 unused Assets / (10.4 MB). Loaded Objects now: 7798. -Memory consumption went from 433.2 MB to 422.8 MB. -Total: 13.740100 ms (FindLiveObjects: 1.138800 ms CreateObjectMapping: 1.419800 ms MarkObjects: 4.143400 ms DeleteObjects: 7.036700 ms) +Unloading 3615 unused Assets / (9.9 MB). Loaded Objects now: 7799. +Memory consumption went from 433.4 MB to 423.5 MB. +Total: 12.222700 ms (FindLiveObjects: 1.220000 ms CreateObjectMapping: 1.384800 ms MarkObjects: 4.125700 ms DeleteObjects: 5.491200 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -163,532 +163,14 @@ AssetImportParameters requested are different than current active one (requested custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - Time since last request: 322186.066626 seconds. - path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00A.prefab - artifactKey: Guid(9386aa4cd9ccbdd4ca3d6c35e43c2ab7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00A.prefab using Guid(9386aa4cd9ccbdd4ca3d6c35e43c2ab7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) -UnityEditor.GameObjectInspector:GetPreviewData () -UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) -UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) -UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) - -[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] - - -> (artifact id: '5bdd8ef35fbc3790ade3a7e2a3979474') in 1.318122 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000052 seconds. - path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00I.prefab - artifactKey: Guid(910d9f2722f2b884db602ab3113df917) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00I.prefab using Guid(910d9f2722f2b884db602ab3113df917) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) -UnityEditor.GameObjectInspector:GetPreviewData () -UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) -UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) -UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) - -[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] - - -> (artifact id: '7f721d3783abce154b4bc771839d427e') in 0.812036 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000058 seconds. - path: Assets/Daz3D/Consumables/Karck Juice/_KarckJuics.fbx - artifactKey: Guid(5a3695b71cd015c498896e418b98f674) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Consumables/Karck Juice/_KarckJuics.fbx using Guid(5a3695b71cd015c498896e418b98f674) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a73b6c6fbe85c47cf889845c93635668') in 0.197205 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000045 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Materials/M_Karckmahre_Tint5.mat - artifactKey: Guid(db17cd1e5a9233b4e941135f4d2ef02c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Materials/M_Karckmahre_Tint5.mat using Guid(db17cd1e5a9233b4e941135f4d2ef02c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0bc14119ea7a308de23f2c9180bac91f') in 0.106897 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000055 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Textures/T_Karckmahre_Normal.jpg - artifactKey: Guid(5699d8dc7d59e8f47941f5cf99766ccd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Textures/T_Karckmahre_Normal.jpg using Guid(5699d8dc7d59e8f47941f5cf99766ccd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8a2d0071eab8d2e7b30d3a43358027c3') in 0.066533 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000039 seconds. - path: Assets/RPG Creation Kit/Scripts/Inventory System/Item In Inventory/UI/Prefabs/ArmorItem_InPlayerInventoryUI.prefab - artifactKey: Guid(3a11da181396ccb4dbf37670efee05d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Scripts/Inventory System/Item In Inventory/UI/Prefabs/ArmorItem_InPlayerInventoryUI.prefab using Guid(3a11da181396ccb4dbf37670efee05d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cfe43addf820aacb7210a4e80dc3465a') in 0.191015 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000047 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Prefabs/Karckmahre_Tint3.prefab - artifactKey: Guid(7140086d0c36a0043bed8c255d56452a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Prefabs/Karckmahre_Tint3.prefab using Guid(7140086d0c36a0043bed8c255d56452a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) -UnityEditor.GameObjectInspector:GetPreviewData () -UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) -UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) -UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) - -[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] - - -> (artifact id: '49f5d7afd720bc04901ae718806bc7c5') in 0.709764 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000056 seconds. - path: Assets/Daz3D/Shaders/CGInc/DazStandardInput.cginc - artifactKey: Guid(bfc62c2a83c181c4fb912c4333abe28c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Shaders/CGInc/DazStandardInput.cginc using Guid(bfc62c2a83c181c4fb912c4333abe28c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5e8f004de2fe60e3bc7b09d8a2aed2e0') in 0.018794 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000041 seconds. - path: Assets/Daz3D/Races/Outfits/Canyon Guards/KarckHelmSkinned.prefab - artifactKey: Guid(dd07587a145d064459abb8796b5cde73) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Outfits/Canyon Guards/KarckHelmSkinned.prefab using Guid(dd07587a145d064459abb8796b5cde73) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8c69e57baff9c1ac939936b8e167deb1') in 0.239575 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000046 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Turn90Left.FBX - artifactKey: Guid(f2985a126a3ba02409db79e17d6909c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Turn90Left.FBX using Guid(f2985a126a3ba02409db79e17d6909c7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3196a9d00a7f62bdf7c244d543dd8c24') in 0.023010 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000049 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/M_Karckmahre.mat - artifactKey: Guid(72f992f6b20a09c419afe7ffa9e05899) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/M_Karckmahre.mat using Guid(72f992f6b20a09c419afe7ffa9e05899) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1f0b53d23c200165cd2bf95190e3bf95') in 3.312243 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000044 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Prefabs/Karckmahre_Tint5.prefab - artifactKey: Guid(3b5630b10cae7c64aaad9549f88dfdc6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Prefabs/Karckmahre_Tint5.prefab using Guid(3b5630b10cae7c64aaad9549f88dfdc6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) -UnityEditor.GameObjectInspector:GetPreviewData () -UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) -UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) -UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) - -[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] - - -> (artifact id: 'f1585e800fa35d2b106726865927f7f7') in 0.633866 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000048 seconds. - path: Assets/RPG Creation Kit/Scripts/AI/AI Tools/RckAI_Prefab.prefab - artifactKey: Guid(72fb65724260fd24dac1402d74032fa6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Scripts/AI/AI Tools/RckAI_Prefab.prefab using Guid(72fb65724260fd24dac1402d74032fa6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '48db2977c4f411e782d21ede61ff20bf') in 0.264096 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000038 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Materials/M_Karckmahre_Tint1 1.mat - artifactKey: Guid(b2dee69b21e189b4c832de7301eb78b9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Materials/M_Karckmahre_Tint1 1.mat using Guid(b2dee69b21e189b4c832de7301eb78b9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '46233513df1bffa06e1fbaa406f8d5da') in 0.073650 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000053 seconds. - path: Assets/RPG Creation Kit/Demos/__RckDemo__/Specific Behaviours/They Shall Fall/[BTree] TheyShallFall_Follower1WaitInPalace.asset - artifactKey: Guid(47e73b6c1b48caa4da74540aaa69795e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Specific Behaviours/They Shall Fall/[BTree] TheyShallFall_Follower1WaitInPalace.asset using Guid(47e73b6c1b48caa4da74540aaa69795e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '89969ced4e7312579982d359563fda35') in 0.017409 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000040 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Death.FBX - artifactKey: Guid(263c5e5090e88b645a6d75a83dbde1cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Death.FBX using Guid(263c5e5090e88b645a6d75a83dbde1cb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3d3072264453f29c928d2666f35e16ba') in 0.018753 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000034 seconds. - path: Assets/RPG Creation Kit/Scripts/Input/RckPlayer_Actions.inputactions - artifactKey: Guid(a2e503aa67bea644d9ef98768f609ecf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Scripts/Input/RckPlayer_Actions.inputactions using Guid(a2e503aa67bea644d9ef98768f609ecf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5e8849cb8d20eb19360ee227f95824af') in 0.031634 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000037 seconds. - path: Assets/Toby Fredson/Third Party/Custom Tree Importer v3/CTI Runtime Components/Shaders/Includes/CTI URP Inputs.hlsl - artifactKey: Guid(4d764ac55969cce4b899d0c551eb248e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Toby Fredson/Third Party/Custom Tree Importer v3/CTI Runtime Components/Shaders/Includes/CTI URP Inputs.hlsl using Guid(4d764ac55969cce4b899d0c551eb248e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0e29907fccf07bd420ff0632c2ac7d37') in 0.027176 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000043 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@IdleLookAround.FBX - artifactKey: Guid(e390d75f5c6005b448214802e0fd0733) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@IdleLookAround.FBX using Guid(e390d75f5c6005b448214802e0fd0733) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6a31ebdfcd07678767e03b7aaf233517') in 0.037466 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000045 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Walk_RM.FBX - artifactKey: Guid(78945825d9e611845a9d6219cf7fa2bc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Walk_RM.FBX using Guid(78945825d9e611845a9d6219cf7fa2bc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '267c1db95ebfb401d6722ea479350108') in 0.017203 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000048 seconds. - path: Assets/Daz3D/Vocals/Canyon Guard/One bad move, and Ill make Karck (Karckmahre) bait out of ya.wav - artifactKey: Guid(b79594c3022e6fe46b6f6e83de431812) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Vocals/Canyon Guard/One bad move, and Ill make Karck (Karckmahre) bait out of ya.wav using Guid(b79594c3022e6fe46b6f6e83de431812) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '911b26f6624bd43c06380939a3e751c2') in 0.056074 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000032 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Materials/M_Karckmahre_Tint2.mat - artifactKey: Guid(159b1567bd4bbe34597ab2a750f2034f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Materials/M_Karckmahre_Tint2.mat using Guid(159b1567bd4bbe34597ab2a750f2034f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ff6c02e477518a2a811745b263acd752') in 0.075663 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000031 seconds. - path: Assets/RPG Creation Kit/Animations/3rd Person/Movements & Combat/Base Male Human Final IK - RotateInPlace.fbx - artifactKey: Guid(07139d3c369f4544dbd6230b91c8fb5c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Animations/3rd Person/Movements & Combat/Base Male Human Final IK - RotateInPlace.fbx using Guid(07139d3c369f4544dbd6230b91c8fb5c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '973b56560563781b5ddf78e9c12c082a') in 0.192707 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Run_RM.FBX - artifactKey: Guid(a4fec8d4904ac734194b29b088fbb3e9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Run_RM.FBX using Guid(a4fec8d4904ac734194b29b088fbb3e9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd03b4fac2490867aadd01c01cce99d54') in 0.016305 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000052 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Materials/M_Karckmahre_Tint3.mat - artifactKey: Guid(3305ca760f241e24b943e03f8589d130) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Materials/M_Karckmahre_Tint3.mat using Guid(3305ca760f241e24b943e03f8589d130) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b5585456c78af00ef4e56fe425afbe6e') in 0.075351 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000044 seconds. - path: Assets/RPG Creation Kit/Scripts/Inventory System/Item In Inventory/UI/Prefabs/AmmoItem_InPlayerInventoryUI.prefab - artifactKey: Guid(a754de344b33606429a4e7d849692358) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Scripts/Inventory System/Item In Inventory/UI/Prefabs/AmmoItem_InPlayerInventoryUI.prefab using Guid(a754de344b33606429a4e7d849692358) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '38835c0b284fde1b02aa3cd7fe4cc270') in 0.039789 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000038 seconds. - path: Assets/RPG Creation Kit/Scripts/Inventory System/Item In Inventory/UI/Prefabs/ConsumableItem_InPlayerInventoryUI.prefab - artifactKey: Guid(9bcd3809a29ee8541b49a5861ce4e8fc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Scripts/Inventory System/Item In Inventory/UI/Prefabs/ConsumableItem_InPlayerInventoryUI.prefab using Guid(9bcd3809a29ee8541b49a5861ce4e8fc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ae438fbef05ca6ed8d53b7a2a5f1fd6d') in 0.041645 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000040 seconds. - path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00H.prefab - artifactKey: Guid(964c75c164ae75b45ba226c31fbc32ff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00H.prefab using Guid(964c75c164ae75b45ba226c31fbc32ff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) -UnityEditor.GameObjectInspector:GetPreviewData () -UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) -UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) -UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) - -[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] - - -> (artifact id: 'a83d2529547e624a04b5cf62cb49606b') in 0.834189 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000050 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@GetHitFront.FBX - artifactKey: Guid(85562d12bf4657642a8d61fa86c9c88a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@GetHitFront.FBX using Guid(85562d12bf4657642a8d61fa86c9c88a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ff338f7cc0ce820e8ccf67b040376abc') in 0.015822 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000040 seconds. - path: Assets/Daz3D/Races/Outfits/Canyon Guards/Helmet.blend - artifactKey: Guid(0163fdf26f7114f4cb63e1c6746abf39) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Outfits/Canyon Guards/Helmet.blend using Guid(0163fdf26f7114f4cb63e1c6746abf39) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '715cbc71d31ceca6aae12474986af299') in 0.177861 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000043 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Prefabs/Karckmahre_Tint1.prefab - artifactKey: Guid(caeb734a5d517474ca925dd998b1b522) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Prefabs/Karckmahre_Tint1.prefab using Guid(caeb734a5d517474ca925dd998b1b522) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4b8cf3a3f8a88096f6e64e2e96158759') in 0.085053 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000056 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Run.FBX - artifactKey: Guid(cd317fb67e4d8074a8fb7837fda0600d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Run.FBX using Guid(cd317fb67e4d8074a8fb7837fda0600d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dbad1a7737ce0ff33754de9f5ece1508') in 0.019904 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000040 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@JumpBiteAttack.FBX - artifactKey: Guid(c761a7cdc95ed4d48ae05fc29595cc4c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@JumpBiteAttack.FBX using Guid(c761a7cdc95ed4d48ae05fc29595cc4c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '056ea98282b1be269593858d15c9165b') in 0.021126 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000038 seconds. - path: Assets/RPG Creation Kit/Scripts/Inventory System/Item In Inventory/UI/Prefabs/KeyItem_InPlayerInventoryUI.prefab - artifactKey: Guid(6e5faa3aa2dcbac44b89909fb49a3dbc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Scripts/Inventory System/Item In Inventory/UI/Prefabs/KeyItem_InPlayerInventoryUI.prefab using Guid(6e5faa3aa2dcbac44b89909fb49a3dbc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fe12d9d074484c7d8d5863cf96a57b7d') in 0.037607 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000034 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@ClawsAttackLeft.FBX - artifactKey: Guid(4d8eaf84870a53946b51970732cb9dd0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@ClawsAttackLeft.FBX using Guid(4d8eaf84870a53946b51970732cb9dd0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e6fdd365d8a6d3b9adcf90e926f2e905') in 0.016284 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000042 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@ClawsAttackRight_RM.FBX - artifactKey: Guid(331837da68c4a8343a73e4a445ba93d9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@ClawsAttackRight_RM.FBX using Guid(331837da68c4a8343a73e4a445ba93d9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f7a7bae65f16330bb653fb52932b8fa0') in 0.017317 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000033 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Textures/T_Karckmahre_MetallicSmoothness.png - artifactKey: Guid(9c013306d54bb0545877a4ce9c98c8c9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Textures/T_Karckmahre_MetallicSmoothness.png using Guid(9c013306d54bb0545877a4ce9c98c8c9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e4a96dd2bce951d1ce908e2910621405') in 0.022213 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000044 seconds. - path: Assets/Daz3D/Consumables/Karck Juice.prefab - artifactKey: Guid(546c5500169e28c4c9e9a5c282bb2fe5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Consumables/Karck Juice.prefab using Guid(546c5500169e28c4c9e9a5c282bb2fe5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '92d4ef16c9c055d98736cefd291edcc1') in 0.127608 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000047 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Materials/M_Karckmahre_Tint4.mat - artifactKey: Guid(edcda3e8f8f98c74b9d5aad18d5d1476) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Materials/M_Karckmahre_Tint4.mat using Guid(edcda3e8f8f98c74b9d5aad18d5d1476) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a93f6bfaa87cac798d0e953d4e3d49a5') in 0.086693 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000039 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/[FACTION] Karckmahre.asset - artifactKey: Guid(64f6ab468cac16c4dbe0091486410764) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/[FACTION] Karckmahre.asset using Guid(64f6ab468cac16c4dbe0091486410764) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '40cb7d333f95e2e3f8d6b53a32c3ee9f') in 0.010102 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000044 seconds. - path: Assets/FemaleMovementAnimsetPro/Animations/Source/FemaleMovementAnimsetPro_2.fbx - artifactKey: Guid(dd4bc59541169e34ead96f0310ddc7bd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/FemaleMovementAnimsetPro/Animations/Source/FemaleMovementAnimsetPro_2.fbx using Guid(dd4bc59541169e34ead96f0310ddc7bd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd8d86df594f9726dda0c42f5b7be116c') in 0.163039 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000048 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Turn90Left_RM.FBX - artifactKey: Guid(f53076f9af1923d4b900bb69f03ff76f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Turn90Left_RM.FBX using Guid(f53076f9af1923d4b900bb69f03ff76f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3a57b78fb9c267a21716d4d4e522102d') in 0.017896 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000053 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Prefabs/Karckmahre_Tint4.prefab - artifactKey: Guid(3b8dbc56db8e9bb4999a306da4c6dd8f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Prefabs/Karckmahre_Tint4.prefab using Guid(3b8dbc56db8e9bb4999a306da4c6dd8f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) -UnityEditor.GameObjectInspector:GetPreviewData () -UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) -UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) -UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) - -[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] - - -> (artifact id: 'a534ab2b67075e40656d9692a352af6d') in 0.629769 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000049 seconds. - path: Assets/Samples/Universal RP/12.1.8/URP Package Samples/SharedAssets/Prefabs/MainPanel.prefab - artifactKey: Guid(d5fa55a16b49d4da3a93a4958cdc3180) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Samples/Universal RP/12.1.8/URP Package Samples/SharedAssets/Prefabs/MainPanel.prefab using Guid(d5fa55a16b49d4da3a93a4958cdc3180) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a063d59bf8bbb339a3f9f12db9db0db3') in 0.013259 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000044 seconds. - path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00D.prefab - artifactKey: Guid(c8aea09ec4be4e9448471bb8069c73cd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00D.prefab using Guid(c8aea09ec4be4e9448471bb8069c73cd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) -UnityEditor.GameObjectInspector:GetPreviewData () -UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) -UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) -UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) - -[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] - - -> (artifact id: '6b13b03b4d184723e784ba7cec1f631f') in 0.780468 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000046 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@SpitAttack.FBX - artifactKey: Guid(26bdabd2f3288bf4285e115ec4d0819e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@SpitAttack.FBX using Guid(26bdabd2f3288bf4285e115ec4d0819e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3b639d91754ec0dd306548578eb75ae6') in 0.015219 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000058 seconds. - path: Assets/Daz3D/Races/Human/Female/Animations/Resources/FemaleTurnInPlace.fbx - artifactKey: Guid(59aa20a8e4b1ba64b855c9677786c543) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Female/Animations/Resources/FemaleTurnInPlace.fbx using Guid(59aa20a8e4b1ba64b855c9677786c543) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3cd735cb2862caa50f3eec2c1771319f') in 0.021448 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000041 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Taunt.FBX - artifactKey: Guid(777c99078cea32943a4953f816f30657) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Taunt.FBX using Guid(777c99078cea32943a4953f816f30657) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1a4986502fa42cfff22a36a49f31e98d') in 0.020231 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000032 seconds. - path: Assets/InputSystem.inputsettings.asset - artifactKey: Guid(792c806a15ce6184a8c9b559372da5f5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/InputSystem.inputsettings.asset using Guid(792c806a15ce6184a8c9b559372da5f5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '75858394f62cc1511ec89c2802840f90') in 0.009966 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000039 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@GetHitLeft.FBX - artifactKey: Guid(9c996a2d8f1053c4ba55f9922150dddc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@GetHitLeft.FBX using Guid(9c996a2d8f1053c4ba55f9922150dddc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8350ba17b122e4c46b57143b1d36fec2') in 0.016837 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000041 seconds. - path: Assets/FlexibleColorPicker/Materials/FCP_MainPicker.mat - artifactKey: Guid(5a7edd6b3c7402d4fbbce95f42cb4e59) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/FlexibleColorPicker/Materials/FCP_MainPicker.mat using Guid(5a7edd6b3c7402d4fbbce95f42cb4e59) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6072c788b7a9debfff2df484d616a9ad') in 0.026799 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000042 seconds. - path: Assets/Materials/MapMarkers/Karckmahr.mat - artifactKey: Guid(a9ae288d158caea44aab68e6005f7ec3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Materials/MapMarkers/Karckmahr.mat using Guid(a9ae288d158caea44aab68e6005f7ec3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd628453103e7396aa86e7b127437273c') in 0.019028 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000045 seconds. - path: Assets/Daz3D/Races/Outfits/Canyon Guards/GND/SK_Karckmahre.prefab - artifactKey: Guid(3cdbb0ff59bda144e8443eca60d240d4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Outfits/Canyon Guards/GND/SK_Karckmahre.prefab using Guid(3cdbb0ff59bda144e8443eca60d240d4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ab5a6b2417a86e407f8109dc97713134') in 0.224963 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000048 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Claws2HitComboAttack_RM.FBX - artifactKey: Guid(cd6129295ea738f4d9e62324038cb9f4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Claws2HitComboAttack_RM.FBX using Guid(cd6129295ea738f4d9e62324038cb9f4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5ba655e06d498b8c7ebc9ca8617c3dfa') in 0.019077 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000038 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@GetHitRight.FBX - artifactKey: Guid(a612d41242e1c2f46bc99437a4a2108f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@GetHitRight.FBX using Guid(a612d41242e1c2f46bc99437a4a2108f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e4a6bb622a79dc42553e299b4aaba832') in 0.016894 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000032 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Turn90Right.FBX - artifactKey: Guid(6df8595ce01a8f744ba0c5ededac7840) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Turn90Right.FBX using Guid(6df8595ce01a8f744ba0c5ededac7840) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e6d2d5e62c8f5d02f9292a3281d18ef1') in 0.020374 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000042 seconds. - path: Assets/RPG Creation Kit/Demos/__RckDemo__/Specific Behaviours/They Shall Fall/[BTree] TheyShallFall_Follower2WaitInPalace.asset - artifactKey: Guid(b81e857f298b50e4a8cf2e1c0c82853a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Specific Behaviours/They Shall Fall/[BTree] TheyShallFall_Follower2WaitInPalace.asset using Guid(b81e857f298b50e4a8cf2e1c0c82853a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e74ff613d62bf823931377026c3e0d6e') in 0.013417 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000039 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Walk.FBX - artifactKey: Guid(f112222ddf663d2429c46339b48debdc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Walk.FBX using Guid(f112222ddf663d2429c46339b48debdc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2d31e5fd6121833c4f47350c7219fa1f') in 0.017951 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000040 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@JumpBiteAttack_RM.FBX - artifactKey: Guid(5a65a6d1314adf841af223ba99620f4e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@JumpBiteAttack_RM.FBX using Guid(5a65a6d1314adf841af223ba99620f4e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cd8cfc0a0422f334b818bff939c1d91d') in 0.015947 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000043 seconds. - path: Assets/Daz3D/Mix4/Materials/MainPants.mat - artifactKey: Guid(c1fe20959bf15f34ba1a631ec7ba1d5a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Mix4/Materials/MainPants.mat using Guid(c1fe20959bf15f34ba1a631ec7ba1d5a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '309a3a1db6fd04e845fa17ae1931693a') in 0.101231 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000056 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Turn90Right_RM.FBX - artifactKey: Guid(76370727378bc7a489468bc4cb884003) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Turn90Right_RM.FBX using Guid(76370727378bc7a489468bc4cb884003) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '29c1d83a400f559d7bab4428e2c5193a') in 0.020179 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000037 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Textures/T_Karckmahre_Emissive.jpg - artifactKey: Guid(048c6b4ae2bbe054ca63d58be50e3a9c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Textures/T_Karckmahre_Emissive.jpg using Guid(048c6b4ae2bbe054ca63d58be50e3a9c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6af7266d719c14caca588b399c29ba20') in 0.024226 seconds -======================================================================== -Received Import Request. - Time since last request: 2261.509616 seconds. - path: Assets/RPG Creation Kit/Scripts/Player/RckPlayer.prefab - artifactKey: Guid(7d773329c5729034d88226ce86f10455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Scripts/Player/RckPlayer.prefab using Guid(7d773329c5729034d88226ce86f10455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5e58a3968247a151eee97f660f808ebd') in 2.168408 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000047 seconds. - path: Assets/RPG Creation Kit/Scripts/Input/RckPlayer_Actions.inputactions - artifactKey: Guid(a2e503aa67bea644d9ef98768f609ecf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Scripts/Input/RckPlayer_Actions.inputactions using Guid(a2e503aa67bea644d9ef98768f609ecf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'aa8602ca1a0c3a6c3662e2b39e61e7ad') in 0.065799 seconds -======================================================================== -Received Import Request. - Time since last request: 139.020382 seconds. - path: Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Curch Village/FatherLucien001_DefaultDialogue.asset - artifactKey: Guid(905732d8f199a1449ba0eaf63c9cb7d0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Curch Village/FatherLucien001_DefaultDialogue.asset using Guid(905732d8f199a1449ba0eaf63c9cb7d0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8904fa8aac2eb76a7c30d1336a6dac8a') in 0.064455 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000038 seconds. - path: Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/FarmOutsideCity/Yeneas_Dialogue.asset - artifactKey: Guid(7f021c03474d1b74f96681594a26a134) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/FarmOutsideCity/Yeneas_Dialogue.asset using Guid(7f021c03474d1b74f96681594a26a134) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '419b7629245e94da7333301954ea1f3d') in 0.018000 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000031 seconds. - path: Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/General/Highwayman001DefaultDialogue.asset - artifactKey: Guid(a3a35dbea2e071b48ba2b4cf0758dbe3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/General/Highwayman001DefaultDialogue.asset using Guid(a3a35dbea2e071b48ba2b4cf0758dbe3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7d9e52e1a24cbaa1f0a0782d0cd9db9b') in 0.056842 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000038 seconds. - path: Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Curch Village/MotherNebivia001_EDNConclusion.asset - artifactKey: Guid(e0fa3e5b10809bf42b6ba99ba8f31e37) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Curch Village/MotherNebivia001_EDNConclusion.asset using Guid(e0fa3e5b10809bf42b6ba99ba8f31e37) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '765b78dcff43d92a9bd419a53bd939a8') in 0.031715 seconds -======================================================================== -Received Import Request. - Time since last request: 0.181795 seconds. - path: Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/MQ02_The Red Shade/[DIALOGUE] MackTalksToPlayerInvite001.asset - artifactKey: Guid(4ced6d855ccc43b46bfbdd49792f0d1c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/MQ02_The Red Shade/[DIALOGUE] MackTalksToPlayerInvite001.asset using Guid(4ced6d855ccc43b46bfbdd49792f0d1c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '19dc29c5e6bc204f895d97c50933d569') in 0.026600 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000034 seconds. - path: Assets/RPG Creation Kit/Scripts/Alchemy/Item In Inventory/UI/Prefabs/WeaponItem_InPlayerInventoryUI.prefab - artifactKey: Guid(811ea06a9d362b94d8d75c540eb8a9c1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Scripts/Alchemy/Item In Inventory/UI/Prefabs/WeaponItem_InPlayerInventoryUI.prefab using Guid(811ea06a9d362b94d8d75c540eb8a9c1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fedd88ba1690d68edcc3abb53c699175') in 0.030556 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000050 seconds. - path: Assets/RPG Creation Kit/Scripts/Inventory System/Item In Inventory/UI/Prefabs/WeaponItem_InPlayerInventoryUI.prefab - artifactKey: Guid(50d6614cc00a6154f89b74fa849dbe3c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Scripts/Inventory System/Item In Inventory/UI/Prefabs/WeaponItem_InPlayerInventoryUI.prefab using Guid(50d6614cc00a6154f89b74fa849dbe3c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2b759b5f216acb16184890aaa6e4cbb6') in 0.025861 seconds + Time since last request: 95111.613247 seconds. + path: Assets/RPG Creation Kit/GeneralIcons/Icons/CellView.WindowIcon.png + artifactKey: Guid(47f4e30489e4d6b4bbbfe8b36995bbb3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/GeneralIcons/Icons/CellView.WindowIcon.png using Guid(47f4e30489e4d6b4bbbfe8b36995bbb3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6b7423bf20bb1652a7be8676eed06ba4') in 0.180113 seconds ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.012462 seconds. +Registered in 0.009880 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll @@ -710,754 +192,40 @@ UnityEngine.Debug:LogError (object) UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () Mono: successfully reloaded assembly -- Completed reload, in 2.249 seconds +- Completed reload, in 1.927 seconds Domain Reload Profiling: - ReloadAssembly (2250ms) - BeginReloadAssembly (190ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (77ms) - EndReloadAssembly (1923ms) - LoadAssemblies (114ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (372ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (68ms) - SetupLoadedEditorAssemblies (1143ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (12ms) - SetLoadedEditorAssemblies (0ms) - RefreshPlugins (4ms) - BeforeProcessingInitializeOnLoad (122ms) - ProcessInitializeOnLoadAttributes (668ms) - ProcessInitializeOnLoadMethodAttributes (326ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (26ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 11.88 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) -Unloading 105 unused Assets / (4.9 MB). Loaded Objects now: 7925. -Memory consumption went from 457.1 MB to 452.2 MB. -Total: 7.612200 ms (FindLiveObjects: 0.737100 ms CreateObjectMapping: 0.617800 ms MarkObjects: 4.716800 ms DeleteObjects: 1.539200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 112.934082 seconds. - path: Assets/RPG Creation Kit/UI Sprites/RPG ICONS/Arrow Inventory.png - artifactKey: Guid(6d2e3e4008ab38c418adeb0065b4806d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/UI Sprites/RPG ICONS/Arrow Inventory.png using Guid(6d2e3e4008ab38c418adeb0065b4806d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3050090fee732128e61043b7416144ac') in 0.169448 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000043 seconds. - path: Assets/Daz3D/Animations/Female/FBX/Animations@Pose1.fbx - artifactKey: Guid(250502f710982504dbcf42457529c3d3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Animations/Female/FBX/Animations@Pose1.fbx using Guid(250502f710982504dbcf42457529c3d3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1d11aa70ffe60d94fa297283bc93acf1') in 0.025802 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000039 seconds. - path: Assets/RPG Creation Kit/UI Sprites/RPG ICONS/Book Inventory.png - artifactKey: Guid(ab9b09ef5f797a549b73baef06a66e8d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/UI Sprites/RPG ICONS/Book Inventory.png using Guid(ab9b09ef5f797a549b73baef06a66e8d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5489589cd5cf43e5561b087964ba2477') in 0.085567 seconds -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.010109 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 1.994 seconds -Domain Reload Profiling: - ReloadAssembly (1995ms) - BeginReloadAssembly (170ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (62ms) - EndReloadAssembly (1703ms) - LoadAssemblies (117ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (370ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (68ms) - SetupLoadedEditorAssemblies (1047ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (13ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (4ms) - BeforeProcessingInitializeOnLoad (120ms) - ProcessInitializeOnLoadAttributes (658ms) - ProcessInitializeOnLoadMethodAttributes (242ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (19ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 11.58 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 7942. -Memory consumption went from 456.9 MB to 452.0 MB. -Total: 11.247100 ms (FindLiveObjects: 1.010300 ms CreateObjectMapping: 1.101400 ms MarkObjects: 6.836100 ms DeleteObjects: 2.297400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 886.306428 seconds. - path: Assets/RPG Creation Kit/Demos/__RckDemo__/Quests/Southern Village/A Donation of Wheat/- [QUEST] A Donation of Wheat.asset - artifactKey: Guid(dd5c1c3cbf8f84e46b5f218108a7e7ea) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Quests/Southern Village/A Donation of Wheat/- [QUEST] A Donation of Wheat.asset using Guid(dd5c1c3cbf8f84e46b5f218108a7e7ea) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '39142bc333526328677d66d5dd4f3158') in 0.042264 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/RPG Creation Kit/Demos/__RckDemo__/Quests/Southern Village/For my little sister/- [QUEST] For My Little Sister.asset - artifactKey: Guid(3c23f1cc0adfbab45a0321d9e665ba14) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Quests/Southern Village/For my little sister/- [QUEST] For My Little Sister.asset using Guid(3c23f1cc0adfbab45a0321d9e665ba14) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'eec4876c5e2a8715730ae4a3efac45da') in 0.008221 seconds -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.011213 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.64 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 2.029 seconds -Domain Reload Profiling: - ReloadAssembly (2030ms) - BeginReloadAssembly (183ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (66ms) - EndReloadAssembly (1721ms) - LoadAssemblies (127ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (376ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (72ms) - SetupLoadedEditorAssemblies (1047ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (13ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (5ms) - BeforeProcessingInitializeOnLoad (124ms) - ProcessInitializeOnLoadAttributes (645ms) - ProcessInitializeOnLoadMethodAttributes (250ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (22ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 8.46 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 7957. -Memory consumption went from 456.9 MB to 452.0 MB. -Total: 7.327100 ms (FindLiveObjects: 0.779700 ms CreateObjectMapping: 0.668300 ms MarkObjects: 4.193900 ms DeleteObjects: 1.683900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.010759 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.76 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 2.981 seconds -Domain Reload Profiling: - ReloadAssembly (2982ms) - BeginReloadAssembly (312ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (79ms) - EndReloadAssembly (2506ms) - LoadAssemblies (243ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (779ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (83ms) - SetupLoadedEditorAssemblies (1269ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (15ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (5ms) - BeforeProcessingInitializeOnLoad (131ms) - ProcessInitializeOnLoadAttributes (751ms) - ProcessInitializeOnLoadMethodAttributes (357ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (23ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 12.62 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 7972. -Memory consumption went from 456.9 MB to 452.0 MB. -Total: 9.931900 ms (FindLiveObjects: 0.797100 ms CreateObjectMapping: 0.900000 ms MarkObjects: 6.264200 ms DeleteObjects: 1.969000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 24389.476642 seconds. - path: Assets/RPG Creation Kit/Scripts/Quest System/Player/QuestManager.cs - artifactKey: Guid(97266d86f79e57c418fee0197509a39e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Scripts/Quest System/Player/QuestManager.cs using Guid(97266d86f79e57c418fee0197509a39e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9c57fb5ae3c624b0524d1758e6959a44') in 0.036249 seconds -======================================================================== -Received Import Request. - Time since last request: 34.541877 seconds. - path: Assets/Daz3D/Races/Human/Male/Body 2.prefab - artifactKey: Guid(cc1dd0d576a24c841a4fbddcccbecb50) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Male/Body 2.prefab using Guid(cc1dd0d576a24c841a4fbddcccbecb50) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b3c576023181be6b9a3bd8e8bba3d603') in 5.960110 seconds -======================================================================== -Received Import Request. - Time since last request: 11.620102 seconds. - path: Assets/Daz3D/Races/Human/Male/Body 2.prefab - artifactKey: Guid(cc1dd0d576a24c841a4fbddcccbecb50) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Male/Body 2.prefab using Guid(cc1dd0d576a24c841a4fbddcccbecb50) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fb55295d3f170dab650386cceaa4c362') in 5.643839 seconds -======================================================================== -Received Import Request. - Time since last request: 8.232545 seconds. - path: Assets/Daz3D/Races/Human/Male/Body 2.prefab - artifactKey: Guid(cc1dd0d576a24c841a4fbddcccbecb50) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Male/Body 2.prefab using Guid(cc1dd0d576a24c841a4fbddcccbecb50) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '80d493000153692502aa5a503501eeb2') in 5.721818 seconds -======================================================================== -Received Import Request. - Time since last request: 6.004269 seconds. - path: Assets/Daz3D/Races/Human/Male/Body 2.prefab - artifactKey: Guid(cc1dd0d576a24c841a4fbddcccbecb50) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Male/Body 2.prefab using Guid(cc1dd0d576a24c841a4fbddcccbecb50) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0adc80bca8a7356e4b7bf0b680339881') in 5.730739 seconds -======================================================================== -Received Import Request. - Time since last request: 6.127069 seconds. - path: Assets/Daz3D/Races/Human/Male/Body 2.prefab - artifactKey: Guid(cc1dd0d576a24c841a4fbddcccbecb50) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Male/Body 2.prefab using Guid(cc1dd0d576a24c841a4fbddcccbecb50) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '179cd4429ec508d9118be275d2e9d5a4') in 5.623118 seconds -======================================================================== -Received Import Request. - Time since last request: 45.462707 seconds. - path: Assets/Daz3D/Races/Human/Female/Body.prefab - artifactKey: Guid(38674239631e0ce4da6f9f86b2da0688) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Female/Body.prefab using Guid(38674239631e0ce4da6f9f86b2da0688) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4d9f00c1d5f8dedacd1956d70d5cf1cc') in 6.443498 seconds -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.013641 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.72 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 2.248 seconds -Domain Reload Profiling: - ReloadAssembly (2249ms) - BeginReloadAssembly (180ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (71ms) - EndReloadAssembly (1953ms) - LoadAssemblies (112ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (374ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (78ms) - SetupLoadedEditorAssemblies (1251ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (14ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (5ms) - BeforeProcessingInitializeOnLoad (146ms) - ProcessInitializeOnLoadAttributes (785ms) - ProcessInitializeOnLoadMethodAttributes (288ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (31ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 14.02 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8029. -Memory consumption went from 459.5 MB to 454.5 MB. -Total: 9.492700 ms (FindLiveObjects: 1.257400 ms CreateObjectMapping: 1.059000 ms MarkObjects: 5.564000 ms DeleteObjects: 1.610900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 463.162202 seconds. - path: Assets/Prefabs/RckPlayer Variant.prefab - artifactKey: Guid(e4295a978fc0c534bb2cc9cc7ed6d57b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/RckPlayer Variant.prefab using Guid(e4295a978fc0c534bb2cc9cc7ed6d57b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '895f480c4da66b7fd509bad868cf3169') in 1.730625 seconds -======================================================================== -Received Import Request. - Time since last request: 25.582035 seconds. - path: Assets/Textures/UI/Map Markers - artifactKey: Guid(f51fb7dc516ed3c4cb03fdf74fbc2f1c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Textures/UI/Map Markers using Guid(f51fb7dc516ed3c4cb03fdf74fbc2f1c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8300afe79bd81b64ac1d98b6d3956e88') in 0.007082 seconds -======================================================================== -Received Import Request. - Time since last request: 0.068550 seconds. - path: Assets/Textures/UI/Map Markers/anvil-512 1.png - artifactKey: Guid(4aa0c5e13e69c2446b39cdcbca307163) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Textures/UI/Map Markers/anvil-512 1.png using Guid(4aa0c5e13e69c2446b39cdcbca307163) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f1856270777e811885a538d9995590ed') in 0.052586 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000041 seconds. - path: Assets/Textures/UI/Map Markers/Door.png - artifactKey: Guid(ad747ac0f3a4714408c41ec23638724b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Textures/UI/Map Markers/Door.png using Guid(ad747ac0f3a4714408c41ec23638724b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd2c54832278e38e217706549da31a9ec') in 0.030502 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000042 seconds. - path: Assets/Textures/UI/Map Markers/Cave.png - artifactKey: Guid(8664a13b92febb94e81b8c7b3110775b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Textures/UI/Map Markers/Cave.png using Guid(8664a13b92febb94e81b8c7b3110775b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '62ef896ed8d13f6ec45c49b7e0f68d50') in 0.038761 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000047 seconds. - path: Assets/Textures/UI/Map Markers/Green.png - artifactKey: Guid(c132e353a59178d4d8e1b3054f554df9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Textures/UI/Map Markers/Green.png using Guid(c132e353a59178d4d8e1b3054f554df9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '915b5aa53c490cee5a2746f14c6a4648') in 0.036133 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000082 seconds. - path: Assets/Textures/UI/Map Markers/playerIcon.png - artifactKey: Guid(066a5ec4fa8b8ad459110d814db87a10) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Textures/UI/Map Markers/playerIcon.png using Guid(066a5ec4fa8b8ad459110d814db87a10) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '98326fc4a46cbbb439e0bc81e62fb11a') in 0.031329 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000041 seconds. - path: Assets/Textures/UI/Map Markers/Enemy.png - artifactKey: Guid(4040e8acd6339a64b87a1221f5765689) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Textures/UI/Map Markers/Enemy.png using Guid(4040e8acd6339a64b87a1221f5765689) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3f4b850af42b30fc1028e062cb3fee36') in 0.041138 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000042 seconds. - path: Assets/Textures/UI/Map Markers/Yellow.png - artifactKey: Guid(33a32f71d0d3ea0468cb1e154575ef95) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Textures/UI/Map Markers/Yellow.png using Guid(33a32f71d0d3ea0468cb1e154575ef95) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1775886bdb1a491697adb14c35b110f3') in 0.040779 seconds -======================================================================== -Received Import Request. - Time since last request: 691.058717 seconds. - path: Assets/Invector-3rdPersonController_LITE - artifactKey: Guid(c5258a66f902dfe4a818b699b96c9d7a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Invector-3rdPersonController_LITE using Guid(c5258a66f902dfe4a818b699b96c9d7a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a41c7d9d40c9fc0aa57c2f721b15626c') in 0.007968 seconds -======================================================================== -Received Import Request. - Time since last request: 5.574859 seconds. - path: Assets/Plugins - artifactKey: Guid(6cbed571ae8558845829a1e7ca19e2a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Plugins using Guid(6cbed571ae8558845829a1e7ca19e2a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ab075ced9e30884485c7950c6f9cda03') in 0.006698 seconds -======================================================================== -Received Import Request. - Time since last request: 4.630737 seconds. - path: Assets/Ground Preset.asset - artifactKey: Guid(2107754b9a6172e48b66d498198ab8fe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Ground Preset.asset using Guid(2107754b9a6172e48b66d498198ab8fe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c22e3a38714bb5c00310f8aff1790ec7') in 0.065451 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000035 seconds. - path: Assets/Terrain 0 0.asset - artifactKey: Guid(d80b07c3382b0954984107cb695edcc3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Terrain 0 0.asset using Guid(d80b07c3382b0954984107cb695edcc3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '830bf6603811fc5c387bed3cdde414ad') in 0.117217 seconds -======================================================================== -Received Import Request. - Time since last request: 0.345316 seconds. - path: Assets/Terrain 0 1.asset - artifactKey: Guid(4a1eea3259f294f4fbac3a29b18dae91) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Terrain 0 1.asset using Guid(4a1eea3259f294f4fbac3a29b18dae91) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6998633b72b36977c096066a467e15fc') in 0.049627 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000041 seconds. - path: Assets/Terrain 0.asset - artifactKey: Guid(2a59644b8a950244bb1eeadc1d060c2d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Terrain 0.asset using Guid(2a59644b8a950244bb1eeadc1d060c2d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) The tree CaveRockCATA_A couldn't be instanced because the prefab contains no valid mesh renderer. -The tree CaveRockCATA_B couldn't be instanced because the prefab contains no valid mesh renderer. -The tree CaveRockCATA_D couldn't be instanced because the prefab contains no valid mesh renderer. - -> (artifact id: '7eb86b902b8d99dfaec0b1fad7fccaae') in 0.044649 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/Terrain 1 0.asset - artifactKey: Guid(be184bee3ec6db94e80dd830bf135521) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Terrain 1 0.asset using Guid(be184bee3ec6db94e80dd830bf135521) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '17c2be233300601d336e0995c0a8cdbe') in 0.044298 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000045 seconds. - path: Assets/Terrain 1 1.asset - artifactKey: Guid(250ff56fbe738fe4da596c64d84c060c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Terrain 1 1.asset using Guid(250ff56fbe738fe4da596c64d84c060c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9ba8b56d480b44f1513116831fdebce8') in 0.040284 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/Terrain 1 2.asset - artifactKey: Guid(46f8e79a06caba04a9e44d7e513a3300) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Terrain 1 2.asset using Guid(46f8e79a06caba04a9e44d7e513a3300) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5ac0874ca1723e90d4bbf40a7215ae6d') in 0.059598 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000033 seconds. - path: Assets/Terrain 1.asset - artifactKey: Guid(c79d01fdef64a994ea2d76d37179de9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Terrain 1.asset using Guid(c79d01fdef64a994ea2d76d37179de9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) The tree CaveRockCATA_A couldn't be instanced because the prefab contains no valid mesh renderer. -The tree CaveRockCATA_B couldn't be instanced because the prefab contains no valid mesh renderer. -The tree CaveRockCATA_D couldn't be instanced because the prefab contains no valid mesh renderer. - -> (artifact id: 'f0a70492663fb388018d22f2475d39b3') in 0.042606 seconds -======================================================================== -Received Import Request. - Time since last request: 1.924821 seconds. - path: Assets/Sky - artifactKey: Guid(e95aeaf61be80674baaf09f9570c6b7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Sky using Guid(e95aeaf61be80674baaf09f9570c6b7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '087495df82e069ea706406350237e208') in 0.007611 seconds -======================================================================== -Received Import Request. - Time since last request: 0.243394 seconds. - path: Assets/Settings - artifactKey: Guid(70f1142a4422506479549713c85b0de4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Settings using Guid(70f1142a4422506479549713c85b0de4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dc469c92c592c489a3ef6b063105514a') in 0.007517 seconds -======================================================================== -Received Import Request. - Time since last request: 0.489990 seconds. - path: Assets/Scenes - artifactKey: Guid(89e5f9b6a0fcdae4e8ccb4b461925e8c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Scenes using Guid(89e5f9b6a0fcdae4e8ccb4b461925e8c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '21a127d53529f65b92f458d3e10fd288') in 0.008482 seconds -======================================================================== -Received Import Request. - Time since last request: 0.361983 seconds. - path: Assets/Toby Fredson - artifactKey: Guid(4a26c69381a0222499753e4aecc52283) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Toby Fredson using Guid(4a26c69381a0222499753e4aecc52283) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4002d0ed0ff70bf70d353ae8ec6d4be3') in 0.008217 seconds -======================================================================== -Received Import Request. - Time since last request: 1.281989 seconds. - path: Assets/Textures - artifactKey: Guid(3bd114993e2eaa540ac1b7f24fbc3658) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Textures using Guid(3bd114993e2eaa540ac1b7f24fbc3658) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '82a1f3fa6bafd692597d6a93457c25ba') in 0.007184 seconds -======================================================================== -Received Import Request. - Time since last request: 0.949555 seconds. - path: Assets/Textures/Boardwalk - artifactKey: Guid(f6741ce4489fe2b4fa4cad73f8deab98) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Textures/Boardwalk using Guid(f6741ce4489fe2b4fa4cad73f8deab98) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '339b72397c68590b1208f1c3b6b887c1') in 0.006924 seconds -======================================================================== -Received Import Request. - Time since last request: 0.156708 seconds. - path: Assets/Textures/Grass - artifactKey: Guid(ab375a5af98ff9d4589f0f17ad3bf3ed) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Textures/Grass using Guid(ab375a5af98ff9d4589f0f17ad3bf3ed) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c377cae7319ab4e2602bb3253e2ae217') in 0.008428 seconds -======================================================================== -Received Import Request. - Time since last request: 0.138982 seconds. - path: Assets/Textures/Ground - artifactKey: Guid(2fa5bee3be43e794dac0caeaaa9edb36) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Textures/Ground using Guid(2fa5bee3be43e794dac0caeaaa9edb36) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '87431a541a607395e735dae23725a174') in 0.006846 seconds -======================================================================== -Received Import Request. - Time since last request: 0.130272 seconds. - path: Assets/Textures/Rocks - artifactKey: Guid(46046caf61b6c7447b52b7e635d168a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Textures/Rocks using Guid(46046caf61b6c7447b52b7e635d168a2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f071506ec0aaeef8af8ff387ef6d6b75') in 0.007544 seconds -======================================================================== -Received Import Request. - Time since last request: 0.138821 seconds. - path: Assets/Textures/Temple - artifactKey: Guid(e788175431be9ad4cbe557ea03d5098b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Textures/Temple using Guid(e788175431be9ad4cbe557ea03d5098b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '234ec0b0a10cdd4ce1ce5390f6568a06') in 0.006681 seconds -======================================================================== -Received Import Request. - Time since last request: 0.103529 seconds. - path: Assets/Textures/Trees - artifactKey: Guid(6c111ad05ec7f894189b96818fefe8c6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Textures/Trees using Guid(6c111ad05ec7f894189b96818fefe8c6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e0caf2837db39b1b7aa274e1995b5644') in 0.007402 seconds -======================================================================== -Received Import Request. - Time since last request: 13.224372 seconds. - path: Assets/Textures/UI/Compass 1.png - artifactKey: Guid(a4176076fd224e3419d85518acf44e48) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Textures/UI/Compass 1.png using Guid(a4176076fd224e3419d85518acf44e48) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9732c64633eadc103b5f92eae0a8008b') in 0.015305 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000039 seconds. - path: Assets/Textures/UI/CompassBackground.png - artifactKey: Guid(97e76b9fe6385944da85946031e74b0b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Textures/UI/CompassBackground.png using Guid(97e76b9fe6385944da85946031e74b0b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4b3c50f95d78fd931ad7ff341e2e47a6') in 0.013722 seconds -======================================================================== -Received Import Request. - Time since last request: 54.832084 seconds. - path: Assets/Textures/UI/Compass 1.png - artifactKey: Guid(a4176076fd224e3419d85518acf44e48) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Textures/UI/Compass 1.png using Guid(a4176076fd224e3419d85518acf44e48) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1c73e84777eb64109001d89ec1192d5b') in 0.016868 seconds -======================================================================== -Received Import Request. - Time since last request: 0.023075 seconds. - path: Assets/Textures/UI/compass1.png - artifactKey: Guid(7d487a0880f4571438943b23d7083d68) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Textures/UI/compass1.png using Guid(7d487a0880f4571438943b23d7083d68) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '28e17b4cb7e5bf44e55bd1a20a387e63') in 0.030584 seconds -======================================================================== -Received Import Request. - Time since last request: 12554.707550 seconds. - path: Assets/Textures/UI/Compass 1.png - artifactKey: Guid(a4176076fd224e3419d85518acf44e48) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Textures/UI/Compass 1.png using Guid(a4176076fd224e3419d85518acf44e48) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '52ab7b7ca06d6da4f7dd47ca317c1938') in 0.120193 seconds -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.010377 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.67 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 2.881 seconds -Domain Reload Profiling: - ReloadAssembly (2882ms) - BeginReloadAssembly (317ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (11ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (81ms) - EndReloadAssembly (2393ms) - LoadAssemblies (238ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (768ms) - ReleaseScriptCaches (4ms) - RebuildScriptCaches (85ms) - SetupLoadedEditorAssemblies (1229ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (16ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (5ms) - BeforeProcessingInitializeOnLoad (136ms) - ProcessInitializeOnLoadAttributes (752ms) - ProcessInitializeOnLoadMethodAttributes (311ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (24ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 12.07 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 105 unused Assets / (4.9 MB). Loaded Objects now: 8095. -Memory consumption went from 463.2 MB to 458.2 MB. -Total: 8.332800 ms (FindLiveObjects: 0.805300 ms CreateObjectMapping: 0.791200 ms MarkObjects: 4.317500 ms DeleteObjects: 2.417800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 280.466689 seconds. - path: Assets/Textures/UI/Compass 1.png - artifactKey: Guid(a4176076fd224e3419d85518acf44e48) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Textures/UI/Compass 1.png using Guid(a4176076fd224e3419d85518acf44e48) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9d2b4ba675c16dd25bb49e8ed669ce7c') in 0.081172 seconds -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.009917 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.39 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 1.915 seconds -Domain Reload Profiling: - ReloadAssembly (1915ms) - BeginReloadAssembly (177ms) + ReloadAssembly (1928ms) + BeginReloadAssembly (178ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (67ms) - EndReloadAssembly (1629ms) - LoadAssemblies (118ms) + EndReloadAssembly (1641ms) + LoadAssemblies (114ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (365ms) + SetupTypeCache (359ms) ReleaseScriptCaches (3ms) - RebuildScriptCaches (62ms) - SetupLoadedEditorAssemblies (989ms) + RebuildScriptCaches (72ms) + SetupLoadedEditorAssemblies (1029ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (12ms) + InitializePlatformSupportModulesInManaged (13ms) SetLoadedEditorAssemblies (1ms) RefreshPlugins (4ms) - BeforeProcessingInitializeOnLoad (115ms) - ProcessInitializeOnLoadAttributes (625ms) - ProcessInitializeOnLoadMethodAttributes (223ms) - AfterProcessingInitializeOnLoad (9ms) + BeforeProcessingInitializeOnLoad (119ms) + ProcessInitializeOnLoadAttributes (661ms) + ProcessInitializeOnLoadMethodAttributes (224ms) + AfterProcessingInitializeOnLoad (8ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (19ms) + AwakeInstancesAfterBackupRestoration (15ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 9.08 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 8.24 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8110. -Memory consumption went from 463.0 MB to 458.1 MB. -Total: 7.773300 ms (FindLiveObjects: 0.781000 ms CreateObjectMapping: 0.641800 ms MarkObjects: 4.469200 ms DeleteObjects: 1.878500 ms) +Unloading 7078 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 7820. +Memory consumption went from 436.3 MB to 431.3 MB. +Total: 6.746000 ms (FindLiveObjects: 0.752000 ms CreateObjectMapping: 0.708300 ms MarkObjects: 3.941000 ms DeleteObjects: 1.343000 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -1472,7 +240,689 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.010413 seconds. +Registered in 0.010194 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.867 seconds +Domain Reload Profiling: + ReloadAssembly (1868ms) + BeginReloadAssembly (164ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (61ms) + EndReloadAssembly (1589ms) + LoadAssemblies (110ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (355ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (62ms) + SetupLoadedEditorAssemblies (990ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (12ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (118ms) + ProcessInitializeOnLoadAttributes (616ms) + ProcessInitializeOnLoadMethodAttributes (230ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.15 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7078 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 7835. +Memory consumption went from 436.3 MB to 431.3 MB. +Total: 6.675400 ms (FindLiveObjects: 0.719800 ms CreateObjectMapping: 0.633200 ms MarkObjects: 3.894500 ms DeleteObjects: 1.426500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 391.779941 seconds. + path: Assets/RPG Creation Kit/Scripts/Databases/Icons Database/Icons Database File.asset + artifactKey: Guid(b09a363ab1bfb1842b4e6b47ae6eca28) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/Databases/Icons Database/Icons Database File.asset using Guid(b09a363ab1bfb1842b4e6b47ae6eca28) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '24389b41a73ba964b459240aff22da38') in 0.100446 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000030 seconds. + path: Assets/Plugins/IngameDebugConsole/Sprites/IconSnapToBottomBg.psd + artifactKey: Guid(b902f763d0e47364dae25207b7e47800) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Plugins/IngameDebugConsole/Sprites/IconSnapToBottomBg.psd using Guid(b902f763d0e47364dae25207b7e47800) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0f281d65253d3a2289d14b3814690240') in 0.059006 seconds +======================================================================== +Received Import Request. + Time since last request: 35.955517 seconds. + path: Assets/RPG Creation Kit/GeneralIcons/Icons/AmmoItem.WindowIcon.png + artifactKey: Guid(cfca69a72bc96dc45abfd281caa31d42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/GeneralIcons/Icons/AmmoItem.WindowIcon.png using Guid(cfca69a72bc96dc45abfd281caa31d42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '18c1e0b46463b6838633f0d1299fac53') in 0.058390 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000034 seconds. + path: Assets/RPG Creation Kit/GeneralIcons/Icons/MiscItem.WindowIcon.png + artifactKey: Guid(8b02726e99f608640804bc0793852305) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/GeneralIcons/Icons/MiscItem.WindowIcon.png using Guid(8b02726e99f608640804bc0793852305) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b0d898cf147ce3ce3a2f6dcce8a0ddf6') in 0.021890 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000044 seconds. + path: Assets/RPG Creation Kit/GeneralIcons/Icons/WeaponItem.WindowIcon.png + artifactKey: Guid(47ddaa1b5aff5744bb33a3a76f102cc6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/GeneralIcons/Icons/WeaponItem.WindowIcon.png using Guid(47ddaa1b5aff5744bb33a3a76f102cc6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3c04022568a58fc74800e3d849b431a9') in 0.032661 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000027 seconds. + path: Assets/RPG Creation Kit/GeneralIcons/Icons/RPGCKEditor.WindowIcon.png + artifactKey: Guid(43cac5be838258748acc1af848f60719) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/GeneralIcons/Icons/RPGCKEditor.WindowIcon.png using Guid(43cac5be838258748acc1af848f60719) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '207b8527c89590206ba421e59090889a') in 0.021369 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000032 seconds. + path: Assets/RPG Creation Kit/GeneralIcons/Icons/MainMenuEditorIcon.png + artifactKey: Guid(bc4b80279dfbf724592958366306e7cc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/GeneralIcons/Icons/MainMenuEditorIcon.png using Guid(bc4b80279dfbf724592958366306e7cc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b21e55d649b6ff09c888f0aed3e5a8a3') in 0.014935 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000034 seconds. + path: Assets/RPG Creation Kit/GeneralIcons/Icons/KeyItem.WindowIcon.png + artifactKey: Guid(dc7da66df88ba224285a8cb4282a0523) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/GeneralIcons/Icons/KeyItem.WindowIcon.png using Guid(dc7da66df88ba224285a8cb4282a0523) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6e94e81d7055e250d7144f9a5dc2fb04') in 0.030451 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000030 seconds. + path: Assets/RPG Creation Kit/GeneralIcons/Icons/Quest.WindowIcon.png + artifactKey: Guid(dab724361636b5c43a6e0c67068306ec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/GeneralIcons/Icons/Quest.WindowIcon.png using Guid(dab724361636b5c43a6e0c67068306ec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5dbfbfffc54b890068654cab77aa8ec5') in 0.024559 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000032 seconds. + path: Assets/RPG Creation Kit/GeneralIcons/Icons/FactionEditorIcon.png + artifactKey: Guid(01eeeb979ca2a754d941967e9d45ba71) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/GeneralIcons/Icons/FactionEditorIcon.png using Guid(01eeeb979ca2a754d941967e9d45ba71) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '37c68a58865ad0e0fca64665a4b2803d') in 0.036228 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000036 seconds. + path: Assets/RPG Creation Kit/GeneralIcons/Icons/WorldLoaderIcon.png + artifactKey: Guid(375544aaaeffe2247811384599935eee) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/GeneralIcons/Icons/WorldLoaderIcon.png using Guid(375544aaaeffe2247811384599935eee) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a7179dd001f19cd71688783c82b10279') in 0.013846 seconds +======================================================================== +Received Import Request. + Time since last request: 116.500588 seconds. + path: Assets/RPG Creation Kit/GeneralIcons/Icons/ActorEditorIcon.png + artifactKey: Guid(2863b5a3ed47fdb40a95a399df23e174) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/GeneralIcons/Icons/ActorEditorIcon.png using Guid(2863b5a3ed47fdb40a95a399df23e174) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e6898a756fcbb2f66f11415ee0b15552') in 0.041703 seconds +======================================================================== +Received Import Request. + Time since last request: 27.732947 seconds. + path: Assets/RPG Creation Kit/GeneralIcons/Icons/ActorEditorIcon.png + artifactKey: Guid(2863b5a3ed47fdb40a95a399df23e174) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/GeneralIcons/Icons/ActorEditorIcon.png using Guid(2863b5a3ed47fdb40a95a399df23e174) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '20ebbe974d1c7833a0b693ee5f841315') in 0.013650 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.012372 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.893 seconds +Domain Reload Profiling: + ReloadAssembly (1894ms) + BeginReloadAssembly (172ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (63ms) + EndReloadAssembly (1608ms) + LoadAssemblies (116ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (337ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (71ms) + SetupLoadedEditorAssemblies (1013ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (117ms) + ProcessInitializeOnLoadAttributes (639ms) + ProcessInitializeOnLoadMethodAttributes (230ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7078 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 7862. +Memory consumption went from 436.3 MB to 431.4 MB. +Total: 9.125900 ms (FindLiveObjects: 0.747400 ms CreateObjectMapping: 0.806000 ms MarkObjects: 5.419200 ms DeleteObjects: 2.151500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 12625.610909 seconds. + path: Assets/Kevin Iglesias/Basic Motions/Animations/Movement/BasicMotions@Jump01.fbx + artifactKey: Guid(067cc188e25b78b4a940a9fa67cd6ee7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Kevin Iglesias/Basic Motions/Animations/Movement/BasicMotions@Jump01.fbx using Guid(067cc188e25b78b4a940a9fa67cd6ee7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e6925920755da72293a92fb429cc0a19') in 0.082322 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000044 seconds. + path: Assets/EverydayMotionPack/Motion/05_Act/@male_act_meditate_start.FBX + artifactKey: Guid(aab7563e4ea92b24184714a11b36362c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/EverydayMotionPack/Motion/05_Act/@male_act_meditate_start.FBX using Guid(aab7563e4ea92b24184714a11b36362c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f9d76d1e2dab254b2417c81aeedf1bb0') in 0.020631 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000034 seconds. + path: Assets/RPG Creation Kit/UI Sprites/xelu_free_keyboardcontroller_prompts_pack/Others/Xbox 360/360_Start_Alt.png + artifactKey: Guid(5bc9570b8b223cf41a03fd3cb34e4ea8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/UI Sprites/xelu_free_keyboardcontroller_prompts_pack/Others/Xbox 360/360_Start_Alt.png using Guid(5bc9570b8b223cf41a03fd3cb34e4ea8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9ec1e246d8faba714de9ee533aee82e8') in 0.034324 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000038 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/AimJumpWalkBwd.fbx + artifactKey: Guid(5c5497907221b1a4da9b8da112906277) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/AimJumpWalkBwd.fbx using Guid(5c5497907221b1a4da9b8da112906277) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a1988d6d3d20a9dd63acb779e4d3a614') in 0.044512 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000050 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/AimCrouchJumpBwd.fbx + artifactKey: Guid(6aff8a2a0335dc643a9e0b2c5b16f6c9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/AimCrouchJumpBwd.fbx using Guid(6aff8a2a0335dc643a9e0b2c5b16f6c9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ec17033386d02392e4a1435890abfec7') in 0.026719 seconds +======================================================================== +Received Import Request. + Time since last request: 5.304815 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/AimJumpWalkFwd.fbx + artifactKey: Guid(d986fde7d913bfd4995876050d4bfd46) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/AimJumpWalkFwd.fbx using Guid(d986fde7d913bfd4995876050d4bfd46) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e30315090a67a2507b210f8ca737de1d') in 0.043821 seconds +======================================================================== +Received Import Request. + Time since last request: 0.196932 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/AimJumpWalkStrafeRight.fbx + artifactKey: Guid(a0308d2dd758a2747b0df755be387e5c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/AimJumpWalkStrafeRight.fbx using Guid(a0308d2dd758a2747b0df755be387e5c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c0466e17b374bdbff5f36858e28545e3') in 0.047434 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000031 seconds. + path: Assets/RPG Creation Kit/Animations/3rd Person/Movements & Combat/Locomotion/Combat 1H/Base Male Human Final IK - OneHStartBlocking.fbx + artifactKey: Guid(9b05a6fe3e575404b909accad5d1a1f8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Animations/3rd Person/Movements & Combat/Locomotion/Combat 1H/Base Male Human Final IK - OneHStartBlocking.fbx using Guid(9b05a6fe3e575404b909accad5d1a1f8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ed84078d1b89bebab1da03ed4dfec335') in 0.019242 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000041 seconds. + path: Assets/RPG Creation Kit/Animations/3rd Person/Movements & Combat/Locomotion/Combat 2H/Base Male Human Final IK - BlockStart.fbx + artifactKey: Guid(190212ebf54e9a34c860c08ef72f468e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Animations/3rd Person/Movements & Combat/Locomotion/Combat 2H/Base Male Human Final IK - BlockStart.fbx using Guid(190212ebf54e9a34c860c08ef72f468e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '20b67ad9d29306e989d84008085d2f7a') in 0.020186 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000047 seconds. + path: Assets/RPG Creation Kit/Animations/3rd Person/NPC_Actions/Leaning/LeanOnCounter/Base Male Human Final IK - LeanOnCounterStart.fbx + artifactKey: Guid(dc53a0a6beb9a1848ae94ff314eb118c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Animations/3rd Person/NPC_Actions/Leaning/LeanOnCounter/Base Male Human Final IK - LeanOnCounterStart.fbx using Guid(dc53a0a6beb9a1848ae94ff314eb118c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '10be0c9d57b6575352235c42b20bc4b9') in 0.020374 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000029 seconds. + path: Assets/RPG Creation Kit/Animations/3rd Person/Movements & Combat/Locomotion/Base Male Human Final IK - Jump_Start.fbx + artifactKey: Guid(82d11b827ca437a4d9f83880eb0bbb28) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Animations/3rd Person/Movements & Combat/Locomotion/Base Male Human Final IK - Jump_Start.fbx using Guid(82d11b827ca437a4d9f83880eb0bbb28) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4da999052dd239d0d9f68873c8b0db12') in 0.017968 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000039 seconds. + path: Assets/RPG Creation Kit/Animations/3rd Person/Movements & Combat/Locomotion/Combat Unarmed/Combat/Base Male Human Final IK - C_Unarmed_Blocking_Start.fbx + artifactKey: Guid(75a080c5a68eebc45bcac58ca08fe36b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Animations/3rd Person/Movements & Combat/Locomotion/Combat Unarmed/Combat/Base Male Human Final IK - C_Unarmed_Blocking_Start.fbx using Guid(75a080c5a68eebc45bcac58ca08fe36b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '166af304c8d030f29f5d431d12defe6b') in 0.013809 seconds +======================================================================== +Received Import Request. + Time since last request: 0.021711 seconds. + path: Assets/RPG Creation Kit/Animations/3rd Person/Movements & Combat/Locomotion/Combat Shield/Base Male Human Final IK - SHIELD_BlockStart.fbx + artifactKey: Guid(25a5a515969c0c7479a2fefc44fca4bf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Animations/3rd Person/Movements & Combat/Locomotion/Combat Shield/Base Male Human Final IK - SHIELD_BlockStart.fbx using Guid(25a5a515969c0c7479a2fefc44fca4bf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8b5779987b77659bc3723a1b58ef3200') in 0.016736 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000028 seconds. + path: Assets/RPG Creation Kit/Animations/First Person/Unarmed/fbx/Base-Male-Human-FP-Arms-Unarmed-Blocking-Start.fbx + artifactKey: Guid(80b96c275be2bf2449dd0dec7562f7b9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Animations/First Person/Unarmed/fbx/Base-Male-Human-FP-Arms-Unarmed-Blocking-Start.fbx using Guid(80b96c275be2bf2449dd0dec7562f7b9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9a49ea6e6529bd0eb4bfa5ac43c6c77c') in 0.301866 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000036 seconds. + path: Assets/RPG Creation Kit/Animations/First Person/One Handed/fbx/Base-Male-Human-FP-Arms-ROneHanded-StartBlocking.fbx + artifactKey: Guid(ddfe36f5552bdcc45918f7efc18a36dc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Animations/First Person/One Handed/fbx/Base-Male-Human-FP-Arms-ROneHanded-StartBlocking.fbx using Guid(ddfe36f5552bdcc45918f7efc18a36dc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '404812293ce2ff1221dfe06ae8a580c4') in 0.100877 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000052 seconds. + path: Assets/Kevin Iglesias/Basic Motions/Animations/Misc/BasicMotions@SitGround01.fbx + artifactKey: Guid(abe666b672568124c85e211c5f239089) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Kevin Iglesias/Basic Motions/Animations/Misc/BasicMotions@SitGround01.fbx using Guid(abe666b672568124c85e211c5f239089) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e9d83fa6239a28ba2a8ceddbf165f7df') in 0.020376 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000047 seconds. + path: Assets/RPG Creation Kit/Animations/First Person/Two Handed/fbx/Base-Male-Human-FP-Arms-TwoHanded-BlockingStarted.fbx + artifactKey: Guid(625254d70fd07a747a24cc56587e05a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Animations/First Person/Two Handed/fbx/Base-Male-Human-FP-Arms-TwoHanded-BlockingStarted.fbx using Guid(625254d70fd07a747a24cc56587e05a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a78b218db00b1cdeea75ea92fbf1f889') in 0.083364 seconds +======================================================================== +Received Import Request. + Time since last request: 0.222867 seconds. + path: Assets/RPG Creation Kit/Scripts/Combat System/Player/Models - Animations/First Person Animation One Hand.fbx + artifactKey: Guid(ed136a5f727d2644280e933da5adc1fc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/Combat System/Player/Models - Animations/First Person Animation One Hand.fbx using Guid(ed136a5f727d2644280e933da5adc1fc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e2fa7dc8043ac487dd545d55b9cbe5a4') in 0.057501 seconds +======================================================================== +Received Import Request. + Time since last request: 1.449033 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/BowAimCrouchJump.fbx + artifactKey: Guid(fca0d943ffd79a348828ee48d6b1ec19) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/BowAimCrouchJump.fbx using Guid(fca0d943ffd79a348828ee48d6b1ec19) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd0fb86fc708db6e336eb9defd024e696') in 0.020193 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000036 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/BowAimJumpBwd.fbx + artifactKey: Guid(2b45bbd855639884ea2d345016dad1e0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/BowAimJumpBwd.fbx using Guid(2b45bbd855639884ea2d345016dad1e0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '48393d1f570537438d12a64237959ba4') in 0.042262 seconds +======================================================================== +Received Import Request. + Time since last request: 0.240983 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/BowAimJumpFwd.fbx + artifactKey: Guid(b81127be9d853ca46a168fd39774ff62) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/BowAimJumpFwd.fbx using Guid(b81127be9d853ca46a168fd39774ff62) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2c6979e459d4a53f996ea75b8774a735') in 0.042738 seconds +======================================================================== +Received Import Request. + Time since last request: 0.295219 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/BowAimJumpStrafeLeft.fbx + artifactKey: Guid(4571d9178b2db9b4a978c540dc80e47d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/BowAimJumpStrafeLeft.fbx using Guid(4571d9178b2db9b4a978c540dc80e47d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e364eb85708bbdef9adbcbb0305ea9f5') in 0.029940 seconds +======================================================================== +Received Import Request. + Time since last request: 0.493954 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Crouch/CrouchBwd.fbx + artifactKey: Guid(540775fc57e5b1244b66cb4578d7481b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Crouch/CrouchBwd.fbx using Guid(540775fc57e5b1244b66cb4578d7481b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd9836e3abbdf60806cc1b40e6459faea') in 0.022941 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000029 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/CrouchJumpBwd.fbx + artifactKey: Guid(a6f0b54b5a723f7488516eb6ca92b398) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/CrouchJumpBwd.fbx using Guid(a6f0b54b5a723f7488516eb6ca92b398) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '70529f63bee76a5b4032ab286020f935') in 0.027722 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000048 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Crouch/CrouchFwdTurnLeft.fbx + artifactKey: Guid(a10565c50d9c0a441ac83f0e22d3432b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Crouch/CrouchFwdTurnLeft.fbx using Guid(a10565c50d9c0a441ac83f0e22d3432b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '91f3e12c3e2559194e908d91ba9113a4') in 0.022378 seconds +======================================================================== +Received Import Request. + Time since last request: 0.128988 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/CrouchJumpFwd.fbx + artifactKey: Guid(277dfc68adeea564da8c26d2ce0bb6ec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/CrouchJumpFwd.fbx using Guid(277dfc68adeea564da8c26d2ce0bb6ec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3e4508b2ea267b54f1ee1938434e3012') in 0.027395 seconds +======================================================================== +Received Import Request. + Time since last request: 0.456375 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/CrouchJump.fbx + artifactKey: Guid(6d53662e51baece4c84b5200006cf6a4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/CrouchJump.fbx using Guid(6d53662e51baece4c84b5200006cf6a4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '52c62131650eb43e32573453bf8a8bb6') in 0.022180 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000036 seconds. + path: Assets/Daz3D/Races/Outfits/Trappers/Resources/DE_ChestArmor_43618/DarkElf_ChestArmor_Brown_Height.jpg + artifactKey: Guid(f47f7090766f8d34d9df7bd0f775e1f3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Outfits/Trappers/Resources/DE_ChestArmor_43618/DarkElf_ChestArmor_Brown_Height.jpg using Guid(f47f7090766f8d34d9df7bd0f775e1f3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a205c4219cddbd8226ea68a0be7cff66') in 0.019625 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000048 seconds. + path: Assets/Daz3D/Races/Outfits/Trappers/Resources/DE_ChestArmor_43618/DarkElf_ChestArmor_Brown_Base_Color.jpg + artifactKey: Guid(29edb3d358f41de4eae2992671bbef6b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Outfits/Trappers/Resources/DE_ChestArmor_43618/DarkElf_ChestArmor_Brown_Base_Color.jpg using Guid(29edb3d358f41de4eae2992671bbef6b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a4e0228c859f8fd102916581f8ea2b48') in 0.023531 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000035 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/CrouchJumpStrafeRight.fbx + artifactKey: Guid(563e4f8fb87756a448eb02225cc70a9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/CrouchJumpStrafeRight.fbx using Guid(563e4f8fb87756a448eb02225cc70a9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e7926f0ad05eae08e61be95506077753') in 0.022372 seconds +======================================================================== +Received Import Request. + Time since last request: 0.184090 seconds. + path: Assets/Daz3D/Races/Outfits/Trappers/Resources/DE_ChestArmor_43618/DarkElf_ChestArmor_Brown_Metallic.jpg + artifactKey: Guid(7cbac207f0585c4438fc0ba09c66a0a9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Outfits/Trappers/Resources/DE_ChestArmor_43618/DarkElf_ChestArmor_Brown_Metallic.jpg using Guid(7cbac207f0585c4438fc0ba09c66a0a9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ac3c0d85bdbe5900c26f67c6851dcf0a') in 0.021332 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000032 seconds. + path: Assets/Daz3D/Races/Outfits/Trappers/Parts/InWorld/DE_ChestArmor_43618.Shape.prefab + artifactKey: Guid(a7d2cd40fc33fbb45b7dc75604325257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Outfits/Trappers/Parts/InWorld/DE_ChestArmor_43618.Shape.prefab using Guid(a7d2cd40fc33fbb45b7dc75604325257) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e1462264d412d4e580dffc249ecb070c') in 2.306503 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000041 seconds. + path: Assets/RPG Creation Kit/Demos/__RckDemo__/Specific Behaviours/[BTree] [P] [S] MurielSpeaksToLanius.asset + artifactKey: Guid(5cd219c4081da904fb437df6bd278760) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Specific Behaviours/[BTree] [P] [S] MurielSpeaksToLanius.asset using Guid(5cd219c4081da904fb437df6bd278760) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9bc9d70aafae6afb4cd760884d3a6fcb') in 0.014957 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000045 seconds. + path: Assets/Toby Fredson/Modular Dungeon Catacombs - Mobile/Prefabs/Prefabs_Merged/Merged Models Unity/HallwayNarrowLowWideTCATAM_A_Start.prefab + artifactKey: Guid(2e308d27288b2234198ae10736f3a6fe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Toby Fredson/Modular Dungeon Catacombs - Mobile/Prefabs/Prefabs_Merged/Merged Models Unity/HallwayNarrowLowWideTCATAM_A_Start.prefab using Guid(2e308d27288b2234198ae10736f3a6fe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e16a7728c74b811c2483b93cae6301f2') in 0.528918 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000045 seconds. + path: Assets/Daz3D/Races/Outfits/Trappers/Resources/TrappersGND.fbx + artifactKey: Guid(39d9e26a9efd0cf438499820754def72) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Outfits/Trappers/Resources/TrappersGND.fbx using Guid(39d9e26a9efd0cf438499820754def72) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '24cd4da5cba7497a5f87a943792a2aae') in 0.278263 seconds +======================================================================== +Received Import Request. + Time since last request: 60.546956 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/JumpRunBwd.fbx + artifactKey: Guid(a086f9a8c24f14d4588389a38476dedc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/JumpRunBwd.fbx using Guid(a086f9a8c24f14d4588389a38476dedc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '035b715482117fbd069f257534258a4f') in 0.044267 seconds +======================================================================== +Received Import Request. + Time since last request: 0.605390 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/JumpRunStrafeLeft.fbx + artifactKey: Guid(5059a29df91bbbe449848f623374ae99) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/JumpRunStrafeLeft.fbx using Guid(5059a29df91bbbe449848f623374ae99) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dfc30df2241ed7ae72e00a42c4fec15b') in 0.027696 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000032 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/JumpWalkBwd.fbx + artifactKey: Guid(63e1eeb869a9a544e8d1b721207dd022) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/JumpWalkBwd.fbx using Guid(63e1eeb869a9a544e8d1b721207dd022) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f9fc6e95765fd892852b4c7f972a2274') in 0.040580 seconds +======================================================================== +Received Import Request. + Time since last request: 0.897682 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/JumpWalkFwd.fbx + artifactKey: Guid(d6487134d8d0a5b4baa8ce8c146ee073) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/JumpWalkFwd.fbx using Guid(d6487134d8d0a5b4baa8ce8c146ee073) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5d56d2ace474c8bfd54495d00a24e6de') in 0.044984 seconds +======================================================================== +Received Import Request. + Time since last request: 0.020159 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/JumpWalkStrafeLeft.fbx + artifactKey: Guid(d71fdd9db90c83b499cb1e1b1c259be3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/JumpWalkStrafeLeft.fbx using Guid(d71fdd9db90c83b499cb1e1b1c259be3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7e4ee85cf3938d781bbc1ba47433eab9') in 0.027754 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000035 seconds. + path: Assets/Daz3D/Mix5/Materials/MainChestArmor.mat + artifactKey: Guid(3c1decdf742b40c41a16c8db1b5b0eab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Mix5/Materials/MainChestArmor.mat using Guid(3c1decdf742b40c41a16c8db1b5b0eab) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2de835fca0f3f2209831afea7356fd64') in 0.078879 seconds +======================================================================== +Received Import Request. + Time since last request: 0.115019 seconds. + path: Assets/RPG Creation Kit/UI Sprites/xelu_free_keyboardcontroller_prompts_pack/Others/PS3/PS3_Start.png + artifactKey: Guid(d14f84e1096f32a488da7e6bb5dabb79) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/UI Sprites/xelu_free_keyboardcontroller_prompts_pack/Others/PS3/PS3_Start.png using Guid(d14f84e1096f32a488da7e6bb5dabb79) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '71f351dfa71c87380d30eec3a28e8074') in 0.017368 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000038 seconds. + path: Assets/FemaleMovementAnimsetPro/Animations/Source/FemaleMovementAnimsetPro_1.fbx + artifactKey: Guid(e5366f5926c8dd949a168f5f0095a4d3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/FemaleMovementAnimsetPro/Animations/Source/FemaleMovementAnimsetPro_1.fbx using Guid(e5366f5926c8dd949a168f5f0095a4d3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7109839adbaf92db1021004de1237003') in 0.119259 seconds +======================================================================== +Received Import Request. + Time since last request: 4.312278 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Start/StartRunBwd.fbx + artifactKey: Guid(cd195e7b179866b4a850af4fac2e1b45) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Start/StartRunBwd.fbx using Guid(cd195e7b179866b4a850af4fac2e1b45) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1da7a13ffee6d94a708ea0dc1d0d1c12') in 0.021029 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000031 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Start/StartRunFwd.fbx + artifactKey: Guid(a879510e37aa91e4f9d6540807ab857a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Start/StartRunFwd.fbx using Guid(a879510e37aa91e4f9d6540807ab857a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b4901a74146dba14e78355c234f592af') in 0.020279 seconds +======================================================================== +Received Import Request. + Time since last request: 1.131520 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Start/StartRunFwdTurnLeft.fbx + artifactKey: Guid(f982a8d38d347d04595d0e5a4b098b2f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Start/StartRunFwdTurnLeft.fbx using Guid(f982a8d38d347d04595d0e5a4b098b2f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b566813c1fc401a0b228db2ce098be24') in 0.021262 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000045 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Start/StartRunStrafeLeft.fbx + artifactKey: Guid(8ebc7d063459c6e4e980de4ae75a10b0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Start/StartRunStrafeLeft.fbx using Guid(8ebc7d063459c6e4e980de4ae75a10b0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '83f3001dbb33f89fe908d48844b16543') in 0.021691 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000033 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Start/StartWalkBwd.fbx + artifactKey: Guid(56db28bc69cce1241b140546b82284f7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Start/StartWalkBwd.fbx using Guid(56db28bc69cce1241b140546b82284f7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a58b8c3a11b99cbeaecdfb524c951824') in 0.020798 seconds +======================================================================== +Received Import Request. + Time since last request: 0.283939 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Start/StartWalkBwdTurnLeft.fbx + artifactKey: Guid(0c0c16705d6106d4783af981435f6368) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Start/StartWalkBwdTurnLeft.fbx using Guid(0c0c16705d6106d4783af981435f6368) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c266feaa3fc7997f2bb2c0e757bedeea') in 0.022565 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000032 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Start/StartWalkFwdTurnLeft.fbx + artifactKey: Guid(2428e13171e01474e893b13fa7b7c66e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Start/StartWalkFwdTurnLeft.fbx using Guid(2428e13171e01474e893b13fa7b7c66e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '65886cd69f09bcd6584a2fb6ce6cece7') in 0.021024 seconds +======================================================================== +Received Import Request. + Time since last request: 1.851694 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Start/StartWalkStrafeLeft.fbx + artifactKey: Guid(649aef33b3286544c95ba9fa8b0ec700) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Start/StartWalkStrafeLeft.fbx using Guid(649aef33b3286544c95ba9fa8b0ec700) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1e0ddc89239d393567de02a6291f9d5a') in 0.021348 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000033 seconds. + path: Assets/Kevin Iglesias/Villager Animations Pack/Animations/Villager@Alchemy01.fbx + artifactKey: Guid(72ac7057f6ec7814b984943e51e681c8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Kevin Iglesias/Villager Animations Pack/Animations/Villager@Alchemy01.fbx using Guid(72ac7057f6ec7814b984943e51e681c8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e6e2f3e4213229c9db4ec920fe220845') in 0.021086 seconds +======================================================================== +Received Import Request. + Time since last request: 0.352337 seconds. + path: Assets/Kevin Iglesias/Villager Animations Pack/Animations/Villager@Cooking01.fbx + artifactKey: Guid(7523d8b3275b2ca4a8d2d65d813d9bb4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Kevin Iglesias/Villager Animations Pack/Animations/Villager@Cooking01.fbx using Guid(7523d8b3275b2ca4a8d2d65d813d9bb4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a0ea8a24b53408f8f8906ac2d15b8a95') in 0.020482 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000034 seconds. + path: Assets/RPG Creation Kit/UI Sprites/xelu_free_keyboardcontroller_prompts_pack/Others/PS Vita/Vita_Start.png + artifactKey: Guid(039268905198ca24d8cc1a0a7e2c1d25) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/UI Sprites/xelu_free_keyboardcontroller_prompts_pack/Others/PS Vita/Vita_Start.png using Guid(039268905198ca24d8cc1a0a7e2c1d25) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bfd09cdd5ab115878ebd9f93f811e0c1') in 0.021662 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.012727 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.074 seconds +Domain Reload Profiling: + ReloadAssembly (2075ms) + BeginReloadAssembly (185ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (12ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (68ms) + EndReloadAssembly (1773ms) + LoadAssemblies (113ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (373ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (67ms) + SetupLoadedEditorAssemblies (1098ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (121ms) + ProcessInitializeOnLoadAttributes (690ms) + ProcessInitializeOnLoadMethodAttributes (259ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (30ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 9.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 7968. +Memory consumption went from 455.4 MB to 450.4 MB. +Total: 7.026200 ms (FindLiveObjects: 0.875900 ms CreateObjectMapping: 0.712400 ms MarkObjects: 3.983700 ms DeleteObjects: 1.452800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.009856 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 6.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.047 seconds +Domain Reload Profiling: + ReloadAssembly (2048ms) + BeginReloadAssembly (172ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (65ms) + EndReloadAssembly (1761ms) + LoadAssemblies (116ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (374ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (79ms) + SetupLoadedEditorAssemblies (1086ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (6ms) + BeforeProcessingInitializeOnLoad (123ms) + ProcessInitializeOnLoadAttributes (679ms) + ProcessInitializeOnLoadMethodAttributes (252ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (20ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 10.39 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 7983. +Memory consumption went from 455.3 MB to 450.4 MB. +Total: 7.659200 ms (FindLiveObjects: 0.751600 ms CreateObjectMapping: 0.670000 ms MarkObjects: 4.674900 ms DeleteObjects: 1.561600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.009892 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll @@ -1494,880 +944,40 @@ UnityEngine.Debug:LogError (object) UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () Mono: successfully reloaded assembly -- Completed reload, in 2.097 seconds +- Completed reload, in 1.923 seconds Domain Reload Profiling: - ReloadAssembly (2098ms) - BeginReloadAssembly (187ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (71ms) - EndReloadAssembly (1796ms) - LoadAssemblies (118ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (370ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (79ms) - SetupLoadedEditorAssemblies (1112ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (13ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (4ms) - BeforeProcessingInitializeOnLoad (122ms) - ProcessInitializeOnLoadAttributes (695ms) - ProcessInitializeOnLoadMethodAttributes (267ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (21ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 13.93 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8125. -Memory consumption went from 463.0 MB to 458.1 MB. -Total: 11.322400 ms (FindLiveObjects: 1.077400 ms CreateObjectMapping: 1.135000 ms MarkObjects: 7.048200 ms DeleteObjects: 2.060600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.010399 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 5.57 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 2.173 seconds -Domain Reload Profiling: - ReloadAssembly (2173ms) - BeginReloadAssembly (173ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (66ms) - EndReloadAssembly (1875ms) - LoadAssemblies (114ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (377ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (78ms) - SetupLoadedEditorAssemblies (1169ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (14ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (6ms) - BeforeProcessingInitializeOnLoad (134ms) - ProcessInitializeOnLoadAttributes (735ms) - ProcessInitializeOnLoadMethodAttributes (270ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (28ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 11.63 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8140. -Memory consumption went from 463.1 MB to 458.1 MB. -Total: 9.207400 ms (FindLiveObjects: 0.830700 ms CreateObjectMapping: 0.706200 ms MarkObjects: 5.372100 ms DeleteObjects: 2.297300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.011643 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.25 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 1.951 seconds -Domain Reload Profiling: - ReloadAssembly (1952ms) - BeginReloadAssembly (182ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (65ms) - EndReloadAssembly (1660ms) - LoadAssemblies (121ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (345ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (70ms) - SetupLoadedEditorAssemblies (1024ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (12ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (4ms) - BeforeProcessingInitializeOnLoad (121ms) - ProcessInitializeOnLoadAttributes (648ms) - ProcessInitializeOnLoadMethodAttributes (227ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (21ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 8.45 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8155. -Memory consumption went from 463.1 MB to 458.2 MB. -Total: 7.520600 ms (FindLiveObjects: 0.802600 ms CreateObjectMapping: 0.665500 ms MarkObjects: 4.409500 ms DeleteObjects: 1.641800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.009754 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.38 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 2.004 seconds -Domain Reload Profiling: - ReloadAssembly (2005ms) - BeginReloadAssembly (177ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (68ms) - EndReloadAssembly (1713ms) - LoadAssemblies (115ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (384ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (82ms) - SetupLoadedEditorAssemblies (1026ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (13ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (4ms) - BeforeProcessingInitializeOnLoad (113ms) - ProcessInitializeOnLoadAttributes (653ms) - ProcessInitializeOnLoadMethodAttributes (234ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (19ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 8.65 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8170. -Memory consumption went from 463.1 MB to 458.2 MB. -Total: 7.074900 ms (FindLiveObjects: 0.792500 ms CreateObjectMapping: 0.692800 ms MarkObjects: 4.013100 ms DeleteObjects: 1.575300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.010397 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 5.29 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 2.157 seconds -Domain Reload Profiling: - ReloadAssembly (2158ms) - BeginReloadAssembly (171ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (57ms) - EndReloadAssembly (1874ms) - LoadAssemblies (114ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (406ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (79ms) - SetupLoadedEditorAssemblies (1157ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (15ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (5ms) - BeforeProcessingInitializeOnLoad (136ms) - ProcessInitializeOnLoadAttributes (724ms) - ProcessInitializeOnLoadMethodAttributes (264ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (22ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 10.61 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8185. -Memory consumption went from 463.1 MB to 458.2 MB. -Total: 8.843500 ms (FindLiveObjects: 0.932700 ms CreateObjectMapping: 1.114700 ms MarkObjects: 4.781700 ms DeleteObjects: 2.013100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.010196 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.34 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 2.026 seconds -Domain Reload Profiling: - ReloadAssembly (2027ms) - BeginReloadAssembly (179ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (7ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (60ms) - EndReloadAssembly (1717ms) - LoadAssemblies (114ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (388ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (66ms) - SetupLoadedEditorAssemblies (1044ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (13ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (4ms) - BeforeProcessingInitializeOnLoad (131ms) - ProcessInitializeOnLoadAttributes (665ms) - ProcessInitializeOnLoadMethodAttributes (222ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (24ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 8.22 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8200. -Memory consumption went from 463.2 MB to 458.2 MB. -Total: 9.497500 ms (FindLiveObjects: 1.418900 ms CreateObjectMapping: 1.107300 ms MarkObjects: 4.357800 ms DeleteObjects: 2.611200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.010717 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.94 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 2.024 seconds -Domain Reload Profiling: - ReloadAssembly (2024ms) - BeginReloadAssembly (182ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (71ms) - EndReloadAssembly (1727ms) - LoadAssemblies (119ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (353ms) - ReleaseScriptCaches (4ms) - RebuildScriptCaches (76ms) - SetupLoadedEditorAssemblies (1066ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (14ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (5ms) - BeforeProcessingInitializeOnLoad (130ms) - ProcessInitializeOnLoadAttributes (669ms) - ProcessInitializeOnLoadMethodAttributes (236ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (19ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 8.17 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8215. -Memory consumption went from 463.2 MB to 458.2 MB. -Total: 7.493500 ms (FindLiveObjects: 0.888100 ms CreateObjectMapping: 1.113700 ms MarkObjects: 3.926000 ms DeleteObjects: 1.564500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.010757 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.44 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 1.903 seconds -Domain Reload Profiling: - ReloadAssembly (1904ms) - BeginReloadAssembly (169ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (63ms) - EndReloadAssembly (1624ms) - LoadAssemblies (112ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (351ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (62ms) - SetupLoadedEditorAssemblies (997ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (13ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (5ms) - BeforeProcessingInitializeOnLoad (117ms) - ProcessInitializeOnLoadAttributes (630ms) - ProcessInitializeOnLoadMethodAttributes (223ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (19ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 10.15 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8230. -Memory consumption went from 463.2 MB to 458.3 MB. -Total: 7.927100 ms (FindLiveObjects: 0.954000 ms CreateObjectMapping: 0.718500 ms MarkObjects: 4.525400 ms DeleteObjects: 1.727900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.011674 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 6.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 2.147 seconds -Domain Reload Profiling: - ReloadAssembly (2148ms) - BeginReloadAssembly (162ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (56ms) - EndReloadAssembly (1860ms) - LoadAssemblies (112ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (388ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (78ms) - SetupLoadedEditorAssemblies (1146ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (15ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (6ms) - BeforeProcessingInitializeOnLoad (131ms) - ProcessInitializeOnLoadAttributes (723ms) - ProcessInitializeOnLoadMethodAttributes (261ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (23ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 11.06 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8245. -Memory consumption went from 463.2 MB to 458.3 MB. -Total: 9.744400 ms (FindLiveObjects: 0.853600 ms CreateObjectMapping: 1.084400 ms MarkObjects: 5.444700 ms DeleteObjects: 2.360300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.010596 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.25 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 1.901 seconds -Domain Reload Profiling: - ReloadAssembly (1902ms) - BeginReloadAssembly (161ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (59ms) - EndReloadAssembly (1626ms) - LoadAssemblies (103ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (342ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (63ms) - SetupLoadedEditorAssemblies (1018ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (12ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (4ms) - BeforeProcessingInitializeOnLoad (122ms) - ProcessInitializeOnLoadAttributes (637ms) - ProcessInitializeOnLoadMethodAttributes (234ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (19ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 8.15 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8260. -Memory consumption went from 463.2 MB to 458.3 MB. -Total: 7.063200 ms (FindLiveObjects: 0.797200 ms CreateObjectMapping: 0.663600 ms MarkObjects: 4.015100 ms DeleteObjects: 1.585900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.010501 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 5.12 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 2.023 seconds -Domain Reload Profiling: - ReloadAssembly (2024ms) + ReloadAssembly (1924ms) BeginReloadAssembly (165ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (64ms) - EndReloadAssembly (1741ms) - LoadAssemblies (97ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (368ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (76ms) - SetupLoadedEditorAssemblies (1069ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (13ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (5ms) - BeforeProcessingInitializeOnLoad (128ms) - ProcessInitializeOnLoadAttributes (687ms) - ProcessInitializeOnLoadMethodAttributes (227ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (23ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 9.22 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8275. -Memory consumption went from 463.3 MB to 458.3 MB. -Total: 7.879700 ms (FindLiveObjects: 0.852800 ms CreateObjectMapping: 0.832300 ms MarkObjects: 4.510700 ms DeleteObjects: 1.682700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.012023 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 6.96 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 2.304 seconds -Domain Reload Profiling: - ReloadAssembly (2305ms) - BeginReloadAssembly (169ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (59ms) - EndReloadAssembly (2023ms) + CreateAndSetChildDomain (60ms) + EndReloadAssembly (1644ms) LoadAssemblies (116ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (365ms) + SetupTypeCache (351ms) ReleaseScriptCaches (3ms) - RebuildScriptCaches (78ms) - SetupLoadedEditorAssemblies (1335ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (14ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (7ms) - BeforeProcessingInitializeOnLoad (144ms) - ProcessInitializeOnLoadAttributes (826ms) - ProcessInitializeOnLoadMethodAttributes (332ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (24ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 11.66 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8290. -Memory consumption went from 463.3 MB to 458.3 MB. -Total: 11.102300 ms (FindLiveObjects: 0.960800 ms CreateObjectMapping: 1.159000 ms MarkObjects: 6.966500 ms DeleteObjects: 2.014500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.013655 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.20 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 1.893 seconds -Domain Reload Profiling: - ReloadAssembly (1894ms) - BeginReloadAssembly (167ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (62ms) - EndReloadAssembly (1610ms) - LoadAssemblies (110ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (346ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (64ms) - SetupLoadedEditorAssemblies (994ms) + RebuildScriptCaches (72ms) + SetupLoadedEditorAssemblies (993ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (13ms) SetLoadedEditorAssemblies (1ms) RefreshPlugins (4ms) - BeforeProcessingInitializeOnLoad (116ms) - ProcessInitializeOnLoadAttributes (632ms) - ProcessInitializeOnLoadMethodAttributes (219ms) + BeforeProcessingInitializeOnLoad (114ms) + ProcessInitializeOnLoadAttributes (616ms) + ProcessInitializeOnLoadMethodAttributes (238ms) AfterProcessingInitializeOnLoad (8ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (18ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 8.14 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 8.27 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8305. -Memory consumption went from 463.3 MB to 458.4 MB. -Total: 8.113900 ms (FindLiveObjects: 0.820700 ms CreateObjectMapping: 0.727000 ms MarkObjects: 4.903700 ms DeleteObjects: 1.660800 ms) +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 7998. +Memory consumption went from 455.4 MB to 450.4 MB. +Total: 7.005600 ms (FindLiveObjects: 0.776800 ms CreateObjectMapping: 0.716700 ms MarkObjects: 4.004800 ms DeleteObjects: 1.505800 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -2382,12 +992,12 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.010438 seconds. +Registered in 0.012676 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 5.73 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 6.45 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 @@ -2404,442 +1014,40 @@ UnityEngine.Debug:LogError (object) UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () Mono: successfully reloaded assembly -- Completed reload, in 2.038 seconds +- Completed reload, in 2.017 seconds Domain Reload Profiling: - ReloadAssembly (2038ms) - BeginReloadAssembly (159ms) + ReloadAssembly (2018ms) + BeginReloadAssembly (170ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (55ms) - EndReloadAssembly (1772ms) - LoadAssemblies (99ms) + CreateAndSetChildDomain (58ms) + EndReloadAssembly (1727ms) + LoadAssemblies (110ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (383ms) - ReleaseScriptCaches (4ms) + SetupTypeCache (360ms) + ReleaseScriptCaches (3ms) RebuildScriptCaches (69ms) - SetupLoadedEditorAssemblies (1100ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (14ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (6ms) - BeforeProcessingInitializeOnLoad (139ms) - ProcessInitializeOnLoadAttributes (690ms) - ProcessInitializeOnLoadMethodAttributes (242ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (19ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 12.12 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8320. -Memory consumption went from 463.3 MB to 458.4 MB. -Total: 11.745200 ms (FindLiveObjects: 1.099800 ms CreateObjectMapping: 1.142700 ms MarkObjects: 7.745200 ms DeleteObjects: 1.755900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.010069 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.67 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 1.915 seconds -Domain Reload Profiling: - ReloadAssembly (1916ms) - BeginReloadAssembly (171ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (62ms) - EndReloadAssembly (1632ms) - LoadAssemblies (106ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (345ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (67ms) - SetupLoadedEditorAssemblies (1015ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (15ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (5ms) - BeforeProcessingInitializeOnLoad (123ms) - ProcessInitializeOnLoadAttributes (627ms) - ProcessInitializeOnLoadMethodAttributes (235ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (19ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 9.56 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8335. -Memory consumption went from 463.4 MB to 458.4 MB. -Total: 10.056600 ms (FindLiveObjects: 0.816100 ms CreateObjectMapping: 0.811900 ms MarkObjects: 6.639700 ms DeleteObjects: 1.787600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.011399 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.55 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 2.135 seconds -Domain Reload Profiling: - ReloadAssembly (2136ms) - BeginReloadAssembly (161ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (56ms) - EndReloadAssembly (1844ms) - LoadAssemblies (97ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (366ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (89ms) - SetupLoadedEditorAssemblies (1151ms) + SetupLoadedEditorAssemblies (1072ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (17ms) SetLoadedEditorAssemblies (1ms) - RefreshPlugins (5ms) - BeforeProcessingInitializeOnLoad (135ms) - ProcessInitializeOnLoadAttributes (713ms) - ProcessInitializeOnLoadMethodAttributes (271ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (24ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 9.25 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8350. -Memory consumption went from 463.4 MB to 458.4 MB. -Total: 10.408600 ms (FindLiveObjects: 0.972400 ms CreateObjectMapping: 1.191700 ms MarkObjects: 6.429300 ms DeleteObjects: 1.813500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 3594.900523 seconds. - path: Assets/RPG Creation Kit/Demos/__RckDemo__/Worldspaces/[WORLDSPACE] CityInterior.asset - artifactKey: Guid(e4f9aeb32334aed4e933cd126f3d4aba) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Worldspaces/[WORLDSPACE] CityInterior.asset using Guid(e4f9aeb32334aed4e933cd126f3d4aba) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e10001766e943419cc91da201f37fc66') in 0.198596 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000035 seconds. - path: Assets/Daz3D/Architecture/Med Class/FirePlace/FirePlace_Stones/ARCStones2_M-FireplaceInterior_Roughness.png - artifactKey: Guid(7e501166491ac5240ac70a9c24fa4f09) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Architecture/Med Class/FirePlace/FirePlace_Stones/ARCStones2_M-FireplaceInterior_Roughness.png using Guid(7e501166491ac5240ac70a9c24fa4f09) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '230f0f48049d90a306f01f512865e62b') in 0.045022 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000046 seconds. - path: Assets/Daz3D/Architecture/Med Class/FirePlace/FirePlace_Stones/ARCStones2_M-FireplaceInterior_BaseColor.png - artifactKey: Guid(598991533e46d9f4da43f4aefc3cf284) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Architecture/Med Class/FirePlace/FirePlace_Stones/ARCStones2_M-FireplaceInterior_BaseColor.png using Guid(598991533e46d9f4da43f4aefc3cf284) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2e7b3ad6e3dec86b5b2b34024d4ede57') in 0.025659 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000032 seconds. - path: Assets/Daz3D/Architecture/Med Class/FirePlace/FirePlace_Stones/ARCStones2_M-FireplaceInterior_Metallic.png - artifactKey: Guid(c80755f2687b96e44a534de9ecf4e74d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Architecture/Med Class/FirePlace/FirePlace_Stones/ARCStones2_M-FireplaceInterior_Metallic.png using Guid(c80755f2687b96e44a534de9ecf4e74d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ff5403ff53c8aa5b304825539e380df6') in 0.022047 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000041 seconds. - path: Assets/RPG Creation Kit/Animations/3rd Person/Movements & Combat/Locomotion/Combat 1H/C_1H_SwingInterrupted.fbx - artifactKey: Guid(8107ba4ca4e77af4481b1efc6a21f4e9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Animations/3rd Person/Movements & Combat/Locomotion/Combat 1H/C_1H_SwingInterrupted.fbx using Guid(8107ba4ca4e77af4481b1efc6a21f4e9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ca042abbce4991464d2b84b505f4c482') in 0.030899 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000033 seconds. - path: Assets/RPG Creation Kit/Prefab Library/UI/InteractiveOptionUI.prefab - artifactKey: Guid(63bdbd82fc7c643409fba17d3a3abb72) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Prefab Library/UI/InteractiveOptionUI.prefab using Guid(63bdbd82fc7c643409fba17d3a3abb72) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5d20fc948b962b64b5cf52ac0c3210d8') in 0.027423 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Interact/FirstPerson/OpenChestFirstPerson.fbx - artifactKey: Guid(f6dd1fd4f1ec0c04ca6682504bfd7eb2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Interact/FirstPerson/OpenChestFirstPerson.fbx using Guid(f6dd1fd4f1ec0c04ca6682504bfd7eb2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4c29ed6d1f27b693e433a54cbd8bab7e') in 0.031074 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Interact/OpenDoorLeft.fbx - artifactKey: Guid(7ff011e9d804629419996456831650f5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Interact/OpenDoorLeft.fbx using Guid(7ff011e9d804629419996456831650f5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4552333b17e658478e23321065d4b7b4') in 0.026001 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000044 seconds. - path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Interact/PressButton.fbx - artifactKey: Guid(a5d7d0b46dce89b4fa6145f778407923) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Interact/PressButton.fbx using Guid(a5d7d0b46dce89b4fa6145f778407923) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd9e3256bbe6701aefe8956de8ac5e302') in 0.027952 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000043 seconds. - path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Interact/FirstPerson/OpenDoorRightFirstPerson.fbx - artifactKey: Guid(b4766e214399bd447993c608bfaf488e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Interact/FirstPerson/OpenDoorRightFirstPerson.fbx using Guid(b4766e214399bd447993c608bfaf488e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '831c6f574d843557ffeda210eec6547b') in 0.028783 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000039 seconds. - path: Assets/Opsive/UltimateCharacterController/Demo/Audio/Scene/InteractButtonPress.wav - artifactKey: Guid(1058dac247027c449aa35218ac730a5c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Opsive/UltimateCharacterController/Demo/Audio/Scene/InteractButtonPress.wav using Guid(1058dac247027c449aa35218ac730a5c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9645f9bcb71d5bd7c5a04b283e11d0ee') in 0.032836 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000030 seconds. - path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Interact/FirstPerson/OpenDoorLeftFirstPerson.fbx - artifactKey: Guid(fbb0997abc1574342b9828664421df31) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Interact/FirstPerson/OpenDoorLeftFirstPerson.fbx using Guid(fbb0997abc1574342b9828664421df31) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ad1dc6c75a649cc7e677b9dde29126dc') in 0.029751 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000030 seconds. - path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Interact/FirstPerson/PressButtonFirstPerson.fbx - artifactKey: Guid(e2e84dd097aba0c418d7aa988f144c4c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Interact/FirstPerson/PressButtonFirstPerson.fbx using Guid(e2e84dd097aba0c418d7aa988f144c4c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b6907607e9a06f56efbb92aadc69f0bd') in 0.026481 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000055 seconds. - path: Assets/Opsive/UltimateCharacterController/Demo/Audio/Scene/InteractDoorOpen.wav - artifactKey: Guid(0ed999a03c9ceed40ace6ef744d4dff7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Opsive/UltimateCharacterController/Demo/Audio/Scene/InteractDoorOpen.wav using Guid(0ed999a03c9ceed40ace6ef744d4dff7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3004ac8f30e90e88ec31a4b074b846db') in 0.029639 seconds -======================================================================== -Received Import Request. - Time since last request: 37.770540 seconds. - path: Assets/RPG Creation Kit/Scripts/Inventory System/Character Tab/Icons/PlayerIcon.png - artifactKey: Guid(e2fac3a9bbabdd245a4282fbffcc2119) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Scripts/Inventory System/Character Tab/Icons/PlayerIcon.png using Guid(e2fac3a9bbabdd245a4282fbffcc2119) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'eef232a7c823e6a5783618d188d34df1') in 0.045925 seconds -======================================================================== -Received Import Request. - Time since last request: 0.265216 seconds. - path: Assets/RPG Creation Kit/Scripts/BehaviourTrees/Builtin Behaviours/Purpose Behaviours/[BTree] [P] JustAnotherDelvieryGuardOutside001_SpeakToPlayer.asset - artifactKey: Guid(eee0676621e59634ab4020dc1c1343c6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Scripts/BehaviourTrees/Builtin Behaviours/Purpose Behaviours/[BTree] [P] JustAnotherDelvieryGuardOutside001_SpeakToPlayer.asset using Guid(eee0676621e59634ab4020dc1c1343c6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd079bb4001b178270839f5149c8030b7') in 0.021288 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000026 seconds. - path: Assets/RPG Creation Kit/Demos/__RckDemo__/Factions/[FACTION] Against Player.asset - artifactKey: Guid(2c988a98afb4ddc4aa524cc1430746de) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Factions/[FACTION] Against Player.asset using Guid(2c988a98afb4ddc4aa524cc1430746de) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e5c4733a163062f7fbcda1951636ba4b') in 0.016387 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000041 seconds. - path: Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/Red Shade Questline/One of them/[DIALOGUE] CountSpeaksToPlayerBlewCoverage.asset - artifactKey: Guid(1daf01fe6f2e29b4882606a2d8e805c6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/Red Shade Questline/One of them/[DIALOGUE] CountSpeaksToPlayerBlewCoverage.asset using Guid(1daf01fe6f2e29b4882606a2d8e805c6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9ed19158fd9e6d6f4d7c4826c5eaaf4b') in 0.018481 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000028 seconds. - path: Assets/MeshBaker/Examples/CharacterCustomization/paintwars_gameassets.fbx - artifactKey: Guid(33dc55d6aa48f95498362c733e434014) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/MeshBaker/Examples/CharacterCustomization/paintwars_gameassets.fbx using Guid(33dc55d6aa48f95498362c733e434014) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6627117991cd507ef5f3a143dbb545b0') in 0.517164 seconds -======================================================================== -Received Import Request. - Time since last request: 279.353133 seconds. - path: Assets/RPG Creation Kit/Scripts/Player/PlayerUI.cs - artifactKey: Guid(20a0743fee2496e40a8df8dd341f0c1e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Scripts/Player/PlayerUI.cs using Guid(20a0743fee2496e40a8df8dd341f0c1e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '42c9a22abfba4cd965149426a3c9e965') in 0.007342 seconds -======================================================================== -Received Import Request. - Time since last request: 1192.190547 seconds. - path: Assets/RPG Creation Kit/Prefab Library/AI/[AI] CountTheveninThibault001.prefab - artifactKey: Guid(d6ac7fbaad43f024581a3275be4ebcb8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Prefab Library/AI/[AI] CountTheveninThibault001.prefab using Guid(d6ac7fbaad43f024581a3275be4ebcb8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6347f480419a0e1cf827b364f89ce6c1') in 134.875230 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000054 seconds. - path: Assets/RPG Creation Kit/Scripts/Character System/Scripts/BodyData.cs - artifactKey: Guid(b71667b839d325a4ba5250522712efe7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Scripts/Character System/Scripts/BodyData.cs using Guid(b71667b839d325a4ba5250522712efe7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '37ccded25d4cb55c9b1fdbcc62630ae8') in 0.008131 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000091 seconds. - path: Assets/Daz3D/Races/Oni/Male/Body.prefab - artifactKey: Guid(0b7b005f2ae3d8649904a4bb3b3feb9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Body.prefab using Guid(0b7b005f2ae3d8649904a4bb3b3feb9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '51a19597d46546578af58bf69bf9a8fd') in 2.538533 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000039 seconds. - path: Assets/Daz3D/Races/Outfits/Trappers/Resources/Body.blend - artifactKey: Guid(85cb301381d78d64f9d5d7e05cbd2c84) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Outfits/Trappers/Resources/Body.blend using Guid(85cb301381d78d64f9d5d7e05cbd2c84) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5e4a16ab370f1978e7da399cbddfb2ff') in 6.074925 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000068 seconds. - path: Assets/Daz3D/Races/Underworld/Female/Body.prefab - artifactKey: Guid(b7868f47df775654094aed906b22a0f3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Underworld/Female/Body.prefab using Guid(b7868f47df775654094aed906b22a0f3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '15cfbbe7be82be6318b2553e0b687ed0') in 1.699146 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000042 seconds. - path: Assets/Daz3D/Races/Ogre/Male/Body.prefab - artifactKey: Guid(999d1ed96455feb41a71980c56d6dd53) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ogre/Male/Body.prefab using Guid(999d1ed96455feb41a71980c56d6dd53) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8a9d7130c7bc5b631756fd6ff8231ee1') in 1.521695 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000052 seconds. - path: Assets/Daz3D/Races/Oumua/Male/Body.prefab - artifactKey: Guid(95c68d036a8785e4cbec4cc02f8daded) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Male/Body.prefab using Guid(95c68d036a8785e4cbec4cc02f8daded) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '28b83dc7df17fc3f241f3b9dfc77a80a') in 2.363369 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000043 seconds. - path: Assets/RPG Creation Kit/Demos/__RckDemo__/Specific Behaviours/[S_BTree] TheThiefOfTheDeadPackingStuffBehaviour.asset - artifactKey: Guid(7f66e7e20a6b1814a82f7f25818bfed3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Specific Behaviours/[S_BTree] TheThiefOfTheDeadPackingStuffBehaviour.asset using Guid(7f66e7e20a6b1814a82f7f25818bfed3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5d0e89e82ffcebbdf758d8c518ceede1') in 0.022463 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000046 seconds. - path: Assets/RPG Creation Kit/Demos/__RckDemo__/Specific Behaviours/[S_BTree] TheThiefOfTheDeadKeepDiggingBehaviour.asset - artifactKey: Guid(0c9f433f8f8f5404994cfb6e75887077) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Specific Behaviours/[S_BTree] TheThiefOfTheDeadKeepDiggingBehaviour.asset using Guid(0c9f433f8f8f5404994cfb6e75887077) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '361e0acb1d1d026374f56882d07b140e') in 0.022985 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000044 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 2/Arthromahre/FBX Files/Arthromahre@GetHitFront.FBX - artifactKey: Guid(ad6185b4ef0f6604b9b662d071486b4b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 2/Arthromahre/FBX Files/Arthromahre@GetHitFront.FBX using Guid(ad6185b4ef0f6604b9b662d071486b4b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8145c4feda034f561d69038ac212f0d2') in 0.026007 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000040 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 2/Arthromahre/FBX Files/Arthromahre@GetHitBack.FBX - artifactKey: Guid(339912c4b0a8a094fb3e3ed16600d841) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 2/Arthromahre/FBX Files/Arthromahre@GetHitBack.FBX using Guid(339912c4b0a8a094fb3e3ed16600d841) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ae5605fb89722ea8e619fd8382045ed5') in 0.023814 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000041 seconds. - path: Assets/Daz3D/Architecture/Fancy/Gothic Bed/_GothicBed.fbx - artifactKey: Guid(6053c330606a9024892e383400a5812e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Architecture/Fancy/Gothic Bed/_GothicBed.fbx using Guid(6053c330606a9024892e383400a5812e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '01d8ec70f95c12b63aaf7fb397897690') in 0.494179 seconds -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.010343 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 5.49 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 2.254 seconds -Domain Reload Profiling: - ReloadAssembly (2255ms) - BeginReloadAssembly (175ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (67ms) - EndReloadAssembly (1970ms) - LoadAssemblies (115ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (391ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (86ms) - SetupLoadedEditorAssemblies (1228ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (18ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (6ms) - BeforeProcessingInitializeOnLoad (142ms) - ProcessInitializeOnLoadAttributes (798ms) - ProcessInitializeOnLoadMethodAttributes (255ms) + RefreshPlugins (7ms) + BeforeProcessingInitializeOnLoad (123ms) + ProcessInitializeOnLoadAttributes (672ms) + ProcessInitializeOnLoadMethodAttributes (243ms) AfterProcessingInitializeOnLoad (8ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (32ms) + AwakeInstancesAfterBackupRestoration (25ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 9.76 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 9.48 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 91 unused Assets / (4.9 MB). Loaded Objects now: 8411. -Memory consumption went from 464.5 MB to 459.6 MB. -Total: 9.457000 ms (FindLiveObjects: 0.887200 ms CreateObjectMapping: 0.905000 ms MarkObjects: 5.679800 ms DeleteObjects: 1.983200 ms) +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8013. +Memory consumption went from 455.4 MB to 450.4 MB. +Total: 9.843300 ms (FindLiveObjects: 0.976800 ms CreateObjectMapping: 1.526100 ms MarkObjects: 5.101400 ms DeleteObjects: 2.237400 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -2854,7 +1062,7 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.010576 seconds. +Registered in 0.010674 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll @@ -2876,110 +1084,40 @@ UnityEngine.Debug:LogError (object) UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () Mono: successfully reloaded assembly -- Completed reload, in 2.127 seconds +- Completed reload, in 2.585 seconds Domain Reload Profiling: - ReloadAssembly (2128ms) - BeginReloadAssembly (173ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (58ms) - EndReloadAssembly (1845ms) - LoadAssemblies (114ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (372ms) - ReleaseScriptCaches (4ms) - RebuildScriptCaches (74ms) - SetupLoadedEditorAssemblies (1159ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (14ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (4ms) - BeforeProcessingInitializeOnLoad (131ms) - ProcessInitializeOnLoadAttributes (721ms) - ProcessInitializeOnLoadMethodAttributes (278ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (22ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 11.15 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8426. -Memory consumption went from 464.5 MB to 459.5 MB. -Total: 11.227700 ms (FindLiveObjects: 1.037600 ms CreateObjectMapping: 1.212600 ms MarkObjects: 7.053500 ms DeleteObjects: 1.922600 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.010262 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.39 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 2.698 seconds -Domain Reload Profiling: - ReloadAssembly (2699ms) - BeginReloadAssembly (181ms) + ReloadAssembly (2585ms) + BeginReloadAssembly (297ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (64ms) - EndReloadAssembly (2392ms) - LoadAssemblies (119ms) + CreateAndSetChildDomain (70ms) + EndReloadAssembly (2156ms) + LoadAssemblies (246ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (407ms) - ReleaseScriptCaches (4ms) - RebuildScriptCaches (92ms) - SetupLoadedEditorAssemblies (1631ms) + SetupTypeCache (725ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (65ms) + SetupLoadedEditorAssemblies (1083ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (15ms) + InitializePlatformSupportModulesInManaged (13ms) SetLoadedEditorAssemblies (1ms) RefreshPlugins (4ms) - BeforeProcessingInitializeOnLoad (120ms) - ProcessInitializeOnLoadAttributes (1134ms) - ProcessInitializeOnLoadMethodAttributes (346ms) - AfterProcessingInitializeOnLoad (11ms) + BeforeProcessingInitializeOnLoad (115ms) + ProcessInitializeOnLoadAttributes (642ms) + ProcessInitializeOnLoadMethodAttributes (299ms) + AfterProcessingInitializeOnLoad (9ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (26ms) + AwakeInstancesAfterBackupRestoration (19ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 11.62 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 9.38 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8441. -Memory consumption went from 464.5 MB to 459.6 MB. -Total: 7.936500 ms (FindLiveObjects: 0.923500 ms CreateObjectMapping: 0.722500 ms MarkObjects: 4.402500 ms DeleteObjects: 1.886700 ms) +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8028. +Memory consumption went from 455.4 MB to 450.5 MB. +Total: 8.077900 ms (FindLiveObjects: 0.756600 ms CreateObjectMapping: 0.684000 ms MarkObjects: 4.820100 ms DeleteObjects: 1.816100 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -2992,169 +1130,14 @@ AssetImportParameters requested are different than current active one (requested custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== -Received Import Request. - Time since last request: 1273.604020 seconds. - path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Carcidonte00.prefab - artifactKey: Guid(f497b186b7589c142984398b448d7b8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Carcidonte00.prefab using Guid(f497b186b7589c142984398b448d7b8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Carcidonte_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) -UnityEditor.GameObjectInspector:GetPreviewData () -UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) -UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) -UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) - -[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] - - -> (artifact id: 'a95e6005e094fa9e35861efc80e006ca') in 1.029427 seconds -======================================================================== -Received Import Request. - Time since last request: 2.185945 seconds. - path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00B.prefab - artifactKey: Guid(05aebcc5b6afe314c8efe7d98eaa3abf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00B.prefab using Guid(05aebcc5b6afe314c8efe7d98eaa3abf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) -UnityEditor.GameObjectInspector:GetPreviewData () -UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) -UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) -UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) - -[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] - - -> (artifact id: '8a68d0e99f96fd0fa37062a6cb218fe4') in 0.661068 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000038 seconds. - path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00I.prefab - artifactKey: Guid(910d9f2722f2b884db602ab3113df917) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00I.prefab using Guid(910d9f2722f2b884db602ab3113df917) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) -UnityEditor.GameObjectInspector:GetPreviewData () -UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) -UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) -UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) - -[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] - - -> (artifact id: 'beb5cbea8e7b75b4c3f726cab0e89af8') in 0.633839 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000048 seconds. - path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] SkeletonOutlaw001.prefab - artifactKey: Guid(2102777de61867b4c974a06b24f7cbba) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] SkeletonOutlaw001.prefab using Guid(2102777de61867b4c974a06b24f7cbba) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '88099c8c7a680579b8716e5f320397e0') in 0.279773 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000041 seconds. - path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00E.prefab - artifactKey: Guid(a780ec0f63d4ba941b1426a554f5139a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00E.prefab using Guid(a780ec0f63d4ba941b1426a554f5139a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) -UnityEditor.GameObjectInspector:GetPreviewData () -UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) -UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) -UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) - -[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] - - -> (artifact id: '2797963f7e081a9864b7370765e6c66d') in 0.662063 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000047 seconds. - path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00D.prefab - artifactKey: Guid(c8aea09ec4be4e9448471bb8069c73cd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00D.prefab using Guid(c8aea09ec4be4e9448471bb8069c73cd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) -UnityEditor.GameObjectInspector:GetPreviewData () -UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) -UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) -UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) - -[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] - - -> (artifact id: 'ee8ab54da4031fc9d58e0596d60ae7e0') in 0.634915 seconds -======================================================================== -Received Import Request. - Time since last request: 0.342869 seconds. - path: Assets/RPG Creation Kit/Scripts/AI/Creature AI/Editor/CreatureAI_InspectorImage.png - artifactKey: Guid(16b51a45e75991b4ab91a67dbc6afd2f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Scripts/AI/Creature AI/Editor/CreatureAI_InspectorImage.png using Guid(16b51a45e75991b4ab91a67dbc6afd2f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bfb29c25dc4be9d6dab2fb7d085e4408') in 0.026026 seconds -======================================================================== -Received Import Request. - Time since last request: 1.780343 seconds. - path: Assets/RPG Creation Kit/Demos/Character Creation/_CharacterCreation_.unity - artifactKey: Guid(6463029c8c312c44bad489e88a5f8441) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Demos/Character Creation/_CharacterCreation_.unity using Guid(6463029c8c312c44bad489e88a5f8441) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4ccb5c4ccf4508d4770a5db264e421eb') in 0.007018 seconds -======================================================================== -Received Prepare -Refreshing native plugins compatible for Editor in 17.93 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 90 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8519. -Memory consumption went from 290.4 MB to 285.5 MB. -Total: 9.381700 ms (FindLiveObjects: 0.877400 ms CreateObjectMapping: 0.767300 ms MarkObjects: 5.793000 ms DeleteObjects: 1.942300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 32473.416945 seconds. - path: Assets/Daz3D/Races/Human/Male/Body 1.prefab - artifactKey: Guid(aae6e21843032ef458fefcb63a0aa491) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Male/Body 1.prefab using Guid(aae6e21843032ef458fefcb63a0aa491) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '48215e43802428d2ebfe53fb692be6ab') in 0.913166 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000057 seconds. - path: Assets/Daz3D/Races/Human/Male/Body.prefab - artifactKey: Guid(f26f3daa913e70d4dab390e12c669d42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Male/Body.prefab using Guid(f26f3daa913e70d4dab390e12c669d42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'feddd03e3d65e8844deef2b79cc92c94') in 0.805071 seconds -======================================================================== -Received Import Request. - Time since last request: 96.211047 seconds. - path: Assets/Daz3D/Races/Human/Male/Body 2.prefab - artifactKey: Guid(cc1dd0d576a24c841a4fbddcccbecb50) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Male/Body 2.prefab using Guid(cc1dd0d576a24c841a4fbddcccbecb50) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '12282c14a241cd0acea2a6c41b075f89') in 5.360542 seconds -======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.011907 seconds. +Registered in 0.010352 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.55 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 4.32 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 @@ -3171,110 +1154,110 @@ UnityEngine.Debug:LogError (object) UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () Mono: successfully reloaded assembly -- Completed reload, in 2.206 seconds +- Completed reload, in 1.896 seconds Domain Reload Profiling: - ReloadAssembly (2207ms) - BeginReloadAssembly (184ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (70ms) - EndReloadAssembly (1898ms) - LoadAssemblies (123ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (390ms) - ReleaseScriptCaches (4ms) - RebuildScriptCaches (79ms) - SetupLoadedEditorAssemblies (1179ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (15ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (5ms) - BeforeProcessingInitializeOnLoad (134ms) - ProcessInitializeOnLoadAttributes (747ms) - ProcessInitializeOnLoadMethodAttributes (266ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (31ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 12.80 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8498. -Memory consumption went from 464.8 MB to 459.8 MB. -Total: 9.845300 ms (FindLiveObjects: 1.102400 ms CreateObjectMapping: 1.156800 ms MarkObjects: 5.565700 ms DeleteObjects: 2.018800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.012652 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 7.26 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 2.212 seconds -Domain Reload Profiling: - ReloadAssembly (2213ms) - BeginReloadAssembly (173ms) + ReloadAssembly (1897ms) + BeginReloadAssembly (160ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (58ms) - EndReloadAssembly (1920ms) - LoadAssemblies (113ms) + CreateAndSetChildDomain (56ms) + EndReloadAssembly (1620ms) + LoadAssemblies (111ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (379ms) - ReleaseScriptCaches (4ms) - RebuildScriptCaches (75ms) - SetupLoadedEditorAssemblies (1230ms) + SetupTypeCache (356ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (63ms) + SetupLoadedEditorAssemblies (986ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (13ms) SetLoadedEditorAssemblies (1ms) - RefreshPlugins (7ms) - BeforeProcessingInitializeOnLoad (139ms) - ProcessInitializeOnLoadAttributes (776ms) - ProcessInitializeOnLoadMethodAttributes (279ms) - AfterProcessingInitializeOnLoad (14ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (119ms) + ProcessInitializeOnLoadAttributes (610ms) + ProcessInitializeOnLoadMethodAttributes (230ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.50 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8043. +Memory consumption went from 455.4 MB to 450.5 MB. +Total: 7.335900 ms (FindLiveObjects: 0.757000 ms CreateObjectMapping: 0.709400 ms MarkObjects: 4.295100 ms DeleteObjects: 1.572700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010417 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.49 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.024 seconds +Domain Reload Profiling: + ReloadAssembly (2024ms) + BeginReloadAssembly (165ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + EndReloadAssembly (1741ms) + LoadAssemblies (100ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (366ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (76ms) + SetupLoadedEditorAssemblies (1084ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (123ms) + ProcessInitializeOnLoadAttributes (689ms) + ProcessInitializeOnLoadMethodAttributes (242ms) + AfterProcessingInitializeOnLoad (11ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (24ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 11.58 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 10.65 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8513. -Memory consumption went from 464.7 MB to 459.8 MB. -Total: 8.561700 ms (FindLiveObjects: 0.881200 ms CreateObjectMapping: 1.015900 ms MarkObjects: 4.609100 ms DeleteObjects: 2.054500 ms) +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8058. +Memory consumption went from 455.5 MB to 450.5 MB. +Total: 8.848500 ms (FindLiveObjects: 0.898800 ms CreateObjectMapping: 1.077500 ms MarkObjects: 4.320200 ms DeleteObjects: 2.550600 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -3289,12 +1272,12 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.009842 seconds. +Registered in 0.012873 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.62 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 5.39 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 @@ -3311,40 +1294,40 @@ UnityEngine.Debug:LogError (object) UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () Mono: successfully reloaded assembly -- Completed reload, in 2.142 seconds +- Completed reload, in 2.051 seconds Domain Reload Profiling: - ReloadAssembly (2143ms) - BeginReloadAssembly (182ms) + ReloadAssembly (2051ms) + BeginReloadAssembly (173ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) + DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (64ms) - EndReloadAssembly (1842ms) - LoadAssemblies (119ms) + CreateAndSetChildDomain (63ms) + EndReloadAssembly (1760ms) + LoadAssemblies (122ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (373ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (72ms) - SetupLoadedEditorAssemblies (1154ms) + SetupTypeCache (375ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (74ms) + SetupLoadedEditorAssemblies (1073ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (16ms) + InitializePlatformSupportModulesInManaged (13ms) SetLoadedEditorAssemblies (1ms) RefreshPlugins (5ms) - BeforeProcessingInitializeOnLoad (133ms) - ProcessInitializeOnLoadAttributes (734ms) - ProcessInitializeOnLoadMethodAttributes (256ms) - AfterProcessingInitializeOnLoad (9ms) + BeforeProcessingInitializeOnLoad (121ms) + ProcessInitializeOnLoadAttributes (683ms) + ProcessInitializeOnLoadMethodAttributes (241ms) + AfterProcessingInitializeOnLoad (8ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (28ms) + AwakeInstancesAfterBackupRestoration (23ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 11.79 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 8.61 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8528. -Memory consumption went from 464.8 MB to 459.8 MB. -Total: 11.913500 ms (FindLiveObjects: 1.185300 ms CreateObjectMapping: 1.552600 ms MarkObjects: 7.125500 ms DeleteObjects: 2.048300 ms) +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8073. +Memory consumption went from 455.3 MB to 450.3 MB. +Total: 7.184900 ms (FindLiveObjects: 0.767300 ms CreateObjectMapping: 0.692200 ms MarkObjects: 4.051900 ms DeleteObjects: 1.672100 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -3359,7 +1342,287 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.010200 seconds. +Registered in 0.011435 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.008 seconds +Domain Reload Profiling: + ReloadAssembly (2008ms) + BeginReloadAssembly (159ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + EndReloadAssembly (1726ms) + LoadAssemblies (108ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (359ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (72ms) + SetupLoadedEditorAssemblies (1071ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (126ms) + ProcessInitializeOnLoadAttributes (676ms) + ProcessInitializeOnLoadMethodAttributes (242ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.91 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8088. +Memory consumption went from 455.3 MB to 450.4 MB. +Total: 8.309800 ms (FindLiveObjects: 0.770000 ms CreateObjectMapping: 0.722000 ms MarkObjects: 5.096100 ms DeleteObjects: 1.720300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.009905 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.24 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.916 seconds +Domain Reload Profiling: + ReloadAssembly (1916ms) + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (63ms) + EndReloadAssembly (1632ms) + LoadAssemblies (113ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (350ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (67ms) + SetupLoadedEditorAssemblies (1004ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (122ms) + ProcessInitializeOnLoadAttributes (623ms) + ProcessInitializeOnLoadMethodAttributes (234ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.25 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8103. +Memory consumption went from 455.4 MB to 450.4 MB. +Total: 7.192500 ms (FindLiveObjects: 0.772600 ms CreateObjectMapping: 0.766000 ms MarkObjects: 4.022800 ms DeleteObjects: 1.629700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010770 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.926 seconds +Domain Reload Profiling: + ReloadAssembly (1926ms) + BeginReloadAssembly (157ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + EndReloadAssembly (1655ms) + LoadAssemblies (101ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (368ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (77ms) + SetupLoadedEditorAssemblies (999ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (112ms) + ProcessInitializeOnLoadAttributes (628ms) + ProcessInitializeOnLoadMethodAttributes (232ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.51 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8118. +Memory consumption went from 455.4 MB to 450.5 MB. +Total: 7.727900 ms (FindLiveObjects: 0.774900 ms CreateObjectMapping: 0.689900 ms MarkObjects: 4.650500 ms DeleteObjects: 1.611100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010233 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.22 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.418 seconds +Domain Reload Profiling: + ReloadAssembly (2418ms) + BeginReloadAssembly (255ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (69ms) + EndReloadAssembly (2023ms) + LoadAssemblies (193ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (612ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (68ms) + SetupLoadedEditorAssemblies (1029ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (113ms) + ProcessInitializeOnLoadAttributes (620ms) + ProcessInitializeOnLoadMethodAttributes (268ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (20ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 9.86 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8133. +Memory consumption went from 455.4 MB to 450.5 MB. +Total: 7.652100 ms (FindLiveObjects: 0.773900 ms CreateObjectMapping: 0.750400 ms MarkObjects: 4.513500 ms DeleteObjects: 1.612400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010385 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll @@ -3381,40 +1644,898 @@ UnityEngine.Debug:LogError (object) UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () Mono: successfully reloaded assembly -- Completed reload, in 1.897 seconds +- Completed reload, in 1.905 seconds Domain Reload Profiling: - ReloadAssembly (1898ms) + ReloadAssembly (1906ms) BeginReloadAssembly (159ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + EndReloadAssembly (1636ms) + LoadAssemblies (93ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (360ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (69ms) + SetupLoadedEditorAssemblies (1003ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (12ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (118ms) + ProcessInitializeOnLoadAttributes (627ms) + ProcessInitializeOnLoadMethodAttributes (232ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 10.83 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8148. +Memory consumption went from 455.4 MB to 450.5 MB. +Total: 7.644800 ms (FindLiveObjects: 0.800700 ms CreateObjectMapping: 0.722000 ms MarkObjects: 4.502800 ms DeleteObjects: 1.617900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.011741 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 5.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.107 seconds +Domain Reload Profiling: + ReloadAssembly (2108ms) + BeginReloadAssembly (182ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (75ms) + EndReloadAssembly (1811ms) + LoadAssemblies (112ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (380ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (81ms) + SetupLoadedEditorAssemblies (1112ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (6ms) + BeforeProcessingInitializeOnLoad (129ms) + ProcessInitializeOnLoadAttributes (699ms) + ProcessInitializeOnLoadMethodAttributes (253ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8163. +Memory consumption went from 455.5 MB to 450.5 MB. +Total: 6.996100 ms (FindLiveObjects: 0.786500 ms CreateObjectMapping: 0.710900 ms MarkObjects: 3.899800 ms DeleteObjects: 1.597500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.013234 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 7.25 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.354 seconds +Domain Reload Profiling: + ReloadAssembly (2355ms) + BeginReloadAssembly (195ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (65ms) + EndReloadAssembly (2022ms) + LoadAssemblies (150ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (464ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (83ms) + SetupLoadedEditorAssemblies (1207ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (7ms) + BeforeProcessingInitializeOnLoad (142ms) + ProcessInitializeOnLoadAttributes (748ms) + ProcessInitializeOnLoadMethodAttributes (283ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (26ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 13.60 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8178. +Memory consumption went from 455.5 MB to 450.6 MB. +Total: 12.005800 ms (FindLiveObjects: 0.819200 ms CreateObjectMapping: 0.863700 ms MarkObjects: 8.343000 ms DeleteObjects: 1.978500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010133 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.95 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.894 seconds +Domain Reload Profiling: + ReloadAssembly (1894ms) + BeginReloadAssembly (153ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + EndReloadAssembly (1624ms) + LoadAssemblies (101ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (343ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (76ms) + SetupLoadedEditorAssemblies (993ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (122ms) + ProcessInitializeOnLoadAttributes (611ms) + ProcessInitializeOnLoadMethodAttributes (231ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.63 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8193. +Memory consumption went from 455.5 MB to 450.6 MB. +Total: 9.731800 ms (FindLiveObjects: 0.821100 ms CreateObjectMapping: 0.779300 ms MarkObjects: 6.434000 ms DeleteObjects: 1.695800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.013383 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 5.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.057 seconds +Domain Reload Profiling: + ReloadAssembly (2057ms) + BeginReloadAssembly (185ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (70ms) + EndReloadAssembly (1760ms) + LoadAssemblies (118ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (364ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (63ms) + SetupLoadedEditorAssemblies (1100ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (6ms) + BeforeProcessingInitializeOnLoad (126ms) + ProcessInitializeOnLoadAttributes (692ms) + ProcessInitializeOnLoadMethodAttributes (252ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.69 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8208. +Memory consumption went from 455.5 MB to 450.6 MB. +Total: 8.092000 ms (FindLiveObjects: 0.787000 ms CreateObjectMapping: 0.706600 ms MarkObjects: 4.971600 ms DeleteObjects: 1.625700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.011239 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.67 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.054 seconds +Domain Reload Profiling: + ReloadAssembly (2055ms) + BeginReloadAssembly (153ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + EndReloadAssembly (1788ms) + LoadAssemblies (101ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (372ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (77ms) + SetupLoadedEditorAssemblies (1100ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (125ms) + ProcessInitializeOnLoadAttributes (691ms) + ProcessInitializeOnLoadMethodAttributes (254ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (27ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.91 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8223. +Memory consumption went from 455.6 MB to 450.6 MB. +Total: 9.507400 ms (FindLiveObjects: 0.898600 ms CreateObjectMapping: 0.808700 ms MarkObjects: 5.755800 ms DeleteObjects: 2.042600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010090 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.26 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.392 seconds +Domain Reload Profiling: + ReloadAssembly (2393ms) + BeginReloadAssembly (244ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (57ms) + EndReloadAssembly (2039ms) + LoadAssemblies (187ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (649ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (64ms) + SetupLoadedEditorAssemblies (1051ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (12ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (118ms) + ProcessInitializeOnLoadAttributes (621ms) + ProcessInitializeOnLoadMethodAttributes (284ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (20ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 9.02 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8238. +Memory consumption went from 455.6 MB to 450.7 MB. +Total: 9.151800 ms (FindLiveObjects: 0.982300 ms CreateObjectMapping: 0.986100 ms MarkObjects: 5.305600 ms DeleteObjects: 1.876300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.012742 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 5.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.114 seconds +Domain Reload Profiling: + ReloadAssembly (2115ms) + BeginReloadAssembly (184ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (70ms) + EndReloadAssembly (1808ms) + LoadAssemblies (116ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (386ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (79ms) + SetupLoadedEditorAssemblies (1105ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (6ms) + BeforeProcessingInitializeOnLoad (130ms) + ProcessInitializeOnLoadAttributes (685ms) + ProcessInitializeOnLoadMethodAttributes (257ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (21ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.83 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8253. +Memory consumption went from 455.6 MB to 450.7 MB. +Total: 8.019500 ms (FindLiveObjects: 0.808000 ms CreateObjectMapping: 0.766300 ms MarkObjects: 4.789000 ms DeleteObjects: 1.654800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 51990.893196 seconds. + path: Assets/Sky/DefaultLightingPreset.asset + artifactKey: Guid(034d596cb8d9b2a4d8c97cb73395ee26) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Sky/DefaultLightingPreset.asset using Guid(034d596cb8d9b2a4d8c97cb73395ee26) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '17a40fb114fd741c316d7535aba7f2e4') in 0.036500 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010117 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.909 seconds +Domain Reload Profiling: + ReloadAssembly (1910ms) + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + EndReloadAssembly (1627ms) + LoadAssemblies (115ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (343ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (77ms) + SetupLoadedEditorAssemblies (996ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (119ms) + ProcessInitializeOnLoadAttributes (626ms) + ProcessInitializeOnLoadMethodAttributes (225ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.63 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8268. +Memory consumption went from 455.6 MB to 450.7 MB. +Total: 11.528800 ms (FindLiveObjects: 0.840600 ms CreateObjectMapping: 0.773900 ms MarkObjects: 8.002400 ms DeleteObjects: 1.910200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010528 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 6.16 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.885 seconds +Domain Reload Profiling: + ReloadAssembly (1885ms) + BeginReloadAssembly (168ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (64ms) + EndReloadAssembly (1610ms) + LoadAssemblies (99ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (337ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (76ms) + SetupLoadedEditorAssemblies (994ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (6ms) + BeforeProcessingInitializeOnLoad (121ms) + ProcessInitializeOnLoadAttributes (614ms) + ProcessInitializeOnLoadMethodAttributes (231ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.02 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8283. +Memory consumption went from 455.7 MB to 450.7 MB. +Total: 8.378600 ms (FindLiveObjects: 0.783600 ms CreateObjectMapping: 0.673900 ms MarkObjects: 5.300600 ms DeleteObjects: 1.619100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 5094.749734 seconds. + path: Assets/Scenes/Interior/Canyon Caves/[EnvPreset] Canyon Default.asset + artifactKey: Guid(18cfd04ce59686746b2e27edc739ed77) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scenes/Interior/Canyon Caves/[EnvPreset] Canyon Default.asset using Guid(18cfd04ce59686746b2e27edc739ed77) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '412741ef2c432d405578efa537eb59ed') in 0.038062 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010770 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.28 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.049 seconds +Domain Reload Profiling: + ReloadAssembly (2050ms) + BeginReloadAssembly (212ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (86ms) + EndReloadAssembly (1725ms) + LoadAssemblies (113ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (382ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (70ms) + SetupLoadedEditorAssemblies (1057ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (119ms) + ProcessInitializeOnLoadAttributes (662ms) + ProcessInitializeOnLoadMethodAttributes (248ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 7.94 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8298. +Memory consumption went from 455.7 MB to 450.7 MB. +Total: 8.083500 ms (FindLiveObjects: 0.852300 ms CreateObjectMapping: 0.793100 ms MarkObjects: 4.469600 ms DeleteObjects: 1.967000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010548 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 6.90 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.030 seconds +Domain Reload Profiling: + ReloadAssembly (2031ms) + BeginReloadAssembly (178ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + EndReloadAssembly (1733ms) + LoadAssemblies (115ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (378ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (74ms) + SetupLoadedEditorAssemblies (1056ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (7ms) + BeforeProcessingInitializeOnLoad (121ms) + ProcessInitializeOnLoadAttributes (660ms) + ProcessInitializeOnLoadMethodAttributes (243ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (20ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 11.39 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8313. +Memory consumption went from 455.7 MB to 450.8 MB. +Total: 8.065800 ms (FindLiveObjects: 1.100500 ms CreateObjectMapping: 0.699100 ms MarkObjects: 4.589600 ms DeleteObjects: 1.674700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 4523.078971 seconds. + path: Assets/Scenes/Interior/Canyon Caves/[EnvPreset] Canyon Default.asset + artifactKey: Guid(18cfd04ce59686746b2e27edc739ed77) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scenes/Interior/Canyon Caves/[EnvPreset] Canyon Default.asset using Guid(18cfd04ce59686746b2e27edc739ed77) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9fb99e8b8527a16a1b8a868cf0d85e9e') in 0.023233 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010606 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.034 seconds +Domain Reload Profiling: + ReloadAssembly (2034ms) + BeginReloadAssembly (171ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (55ms) - EndReloadAssembly (1634ms) - LoadAssemblies (103ms) + EndReloadAssembly (1750ms) + LoadAssemblies (118ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (339ms) + SetupTypeCache (366ms) ReleaseScriptCaches (3ms) - RebuildScriptCaches (63ms) - SetupLoadedEditorAssemblies (1024ms) + RebuildScriptCaches (67ms) + SetupLoadedEditorAssemblies (1102ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (14ms) SetLoadedEditorAssemblies (1ms) - RefreshPlugins (4ms) - BeforeProcessingInitializeOnLoad (114ms) - ProcessInitializeOnLoadAttributes (657ms) - ProcessInitializeOnLoadMethodAttributes (227ms) - AfterProcessingInitializeOnLoad (8ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (123ms) + ProcessInitializeOnLoadAttributes (701ms) + ProcessInitializeOnLoadMethodAttributes (247ms) + AfterProcessingInitializeOnLoad (11ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (21ms) + AwakeInstancesAfterBackupRestoration (22ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 8.75 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 10.01 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8543. -Memory consumption went from 464.8 MB to 459.8 MB. -Total: 7.562700 ms (FindLiveObjects: 0.852500 ms CreateObjectMapping: 0.734700 ms MarkObjects: 4.268400 ms DeleteObjects: 1.705300 ms) +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8328. +Memory consumption went from 455.7 MB to 450.8 MB. +Total: 7.105900 ms (FindLiveObjects: 0.795900 ms CreateObjectMapping: 0.661700 ms MarkObjects: 4.038100 ms DeleteObjects: 1.609200 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -3427,14 +2548,20 @@ AssetImportParameters requested are different than current active one (requested custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== +Received Import Request. + Time since last request: 249.946578 seconds. + path: Assets/Sky/DefaultLightingPreset.asset + artifactKey: Guid(034d596cb8d9b2a4d8c97cb73395ee26) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Sky/DefaultLightingPreset.asset using Guid(034d596cb8d9b2a4d8c97cb73395ee26) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '01954a32711353375372597cfb947793') in 0.041221 seconds +======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.012879 seconds. +Registered in 0.010062 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.61 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 6.06 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 @@ -3451,40 +2578,250 @@ UnityEngine.Debug:LogError (object) UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () Mono: successfully reloaded assembly -- Completed reload, in 2.141 seconds +- Completed reload, in 2.295 seconds Domain Reload Profiling: - ReloadAssembly (2142ms) - BeginReloadAssembly (174ms) + ReloadAssembly (2296ms) + BeginReloadAssembly (189ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) + DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (58ms) - EndReloadAssembly (1842ms) - LoadAssemblies (108ms) + CreateAndSetChildDomain (70ms) + EndReloadAssembly (1984ms) + LoadAssemblies (128ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (363ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (76ms) - SetupLoadedEditorAssemblies (1156ms) + SetupTypeCache (427ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (89ms) + SetupLoadedEditorAssemblies (1212ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (18ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (6ms) + BeforeProcessingInitializeOnLoad (136ms) + ProcessInitializeOnLoadAttributes (770ms) + ProcessInitializeOnLoadMethodAttributes (277ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 10.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8343. +Memory consumption went from 455.8 MB to 450.8 MB. +Total: 8.228500 ms (FindLiveObjects: 0.825800 ms CreateObjectMapping: 0.705700 ms MarkObjects: 4.984100 ms DeleteObjects: 1.711500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010256 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.142 seconds +Domain Reload Profiling: + ReloadAssembly (2143ms) + BeginReloadAssembly (165ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (61ms) + EndReloadAssembly (1865ms) + LoadAssemblies (130ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (403ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (74ms) + SetupLoadedEditorAssemblies (1119ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (12ms) SetLoadedEditorAssemblies (1ms) RefreshPlugins (5ms) BeforeProcessingInitializeOnLoad (126ms) - ProcessInitializeOnLoadAttributes (742ms) - ProcessInitializeOnLoadMethodAttributes (256ms) + ProcessInitializeOnLoadAttributes (689ms) + ProcessInitializeOnLoadMethodAttributes (273ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (27ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 9.88 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8358. +Memory consumption went from 455.8 MB to 450.8 MB. +Total: 8.539600 ms (FindLiveObjects: 0.818300 ms CreateObjectMapping: 0.723100 ms MarkObjects: 5.358200 ms DeleteObjects: 1.638800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.012107 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.931 seconds +Domain Reload Profiling: + ReloadAssembly (1932ms) + BeginReloadAssembly (165ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (58ms) + EndReloadAssembly (1658ms) + LoadAssemblies (106ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (365ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (64ms) + SetupLoadedEditorAssemblies (1023ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (12ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (120ms) + ProcessInitializeOnLoadAttributes (637ms) + ProcessInitializeOnLoadMethodAttributes (240ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8373. +Memory consumption went from 455.9 MB to 451.0 MB. +Total: 7.183500 ms (FindLiveObjects: 0.821300 ms CreateObjectMapping: 0.627000 ms MarkObjects: 4.113200 ms DeleteObjects: 1.620500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.012431 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.96 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.000 seconds +Domain Reload Profiling: + ReloadAssembly (2001ms) + BeginReloadAssembly (158ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + EndReloadAssembly (1733ms) + LoadAssemblies (105ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (360ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (68ms) + SetupLoadedEditorAssemblies (1084ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (120ms) + ProcessInitializeOnLoadAttributes (687ms) + ProcessInitializeOnLoadMethodAttributes (246ms) AfterProcessingInitializeOnLoad (10ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (28ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 11.24 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 11.66 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8558. -Memory consumption went from 464.8 MB to 459.9 MB. -Total: 9.947100 ms (FindLiveObjects: 1.196300 ms CreateObjectMapping: 0.915400 ms MarkObjects: 5.630800 ms DeleteObjects: 2.202900 ms) +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8388. +Memory consumption went from 455.9 MB to 451.0 MB. +Total: 9.940600 ms (FindLiveObjects: 0.956100 ms CreateObjectMapping: 0.780400 ms MarkObjects: 6.017500 ms DeleteObjects: 2.185100 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -3497,410 +2834,14 @@ AssetImportParameters requested are different than current active one (requested custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== -Received Import Request. - Time since last request: 4658.291410 seconds. - path: Assets/Daz3D/Races/Human/Female/Body (OLD Delete me).prefab - artifactKey: Guid(327251dd02480b24fa9a43f008887005) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Female/Body (OLD Delete me).prefab using Guid(327251dd02480b24fa9a43f008887005) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '22dba9962fe722355cf1e9aeda1f421d') in 1.847854 seconds -======================================================================== -Received Import Request. - Time since last request: 16.090831 seconds. - path: Assets/Daz3D/Races/Dark Elf/Male - artifactKey: Guid(69905605b1d533d43abdd6e7f80a5a30) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Dark Elf/Male using Guid(69905605b1d533d43abdd6e7f80a5a30) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0edec390a103bf0cfdc71bbd4d033ed5') in 0.007862 seconds -======================================================================== -Received Import Request. - Time since last request: 0.200920 seconds. - path: Assets/Daz3D/Races/Dark Elf/Male/Body.prefab - artifactKey: Guid(b9dc31516af09154db26185981345beb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Dark Elf/Male/Body.prefab using Guid(b9dc31516af09154db26185981345beb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '76ea817dcb574ed4c5588aaad124241d') in 1.418080 seconds -======================================================================== -Received Import Request. - Time since last request: 8.749502 seconds. - path: Assets/Daz3D/Races/Dark Elf/Male/Body.prefab - artifactKey: Guid(b9dc31516af09154db26185981345beb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Dark Elf/Male/Body.prefab using Guid(b9dc31516af09154db26185981345beb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cadf95e5fdfdddcc94a23ebd96f44367') in 1.142754 seconds -======================================================================== -Received Import Request. - Time since last request: 1.152588 seconds. - path: Assets/Daz3D/Races/Dark Elf/Male/Body.prefab - artifactKey: Guid(b9dc31516af09154db26185981345beb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Dark Elf/Male/Body.prefab using Guid(b9dc31516af09154db26185981345beb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd53bd00a2cdc1dcb7559f20ba53a1218') in 1.174164 seconds -======================================================================== -Received Import Request. - Time since last request: 1.583274 seconds. - path: Assets/Daz3D/Races/Dark Elf/Female/Body.prefab - artifactKey: Guid(0573e2feb1a62d14ba87c38e789d82e2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Dark Elf/Female/Body.prefab using Guid(0573e2feb1a62d14ba87c38e789d82e2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ecf6ed00f45a32311265248c6a94d47c') in 6.483105 seconds -======================================================================== -Received Import Request. - Time since last request: 3.551038 seconds. - path: Assets/Daz3D/Races/Fi/Female/Body.prefab - artifactKey: Guid(3bd1f6407d56631488aa18e31f574b1b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Fi/Female/Body.prefab using Guid(3bd1f6407d56631488aa18e31f574b1b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '466bf847fcb6ebd906f2bf253d2092e2') in 6.935291 seconds -======================================================================== -Received Import Request. - Time since last request: 4.876517 seconds. - path: Assets/Daz3D/Races/Fi/Male/Body.prefab - artifactKey: Guid(7978de8ca735b5448bb28071841ee21b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Fi/Male/Body.prefab using Guid(7978de8ca735b5448bb28071841ee21b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '363ad442d766e8171c8bc21e060399f7') in 1.889814 seconds -======================================================================== -Received Import Request. - Time since last request: 7.911705 seconds. - path: Assets/Daz3D/Races/Goblin/Female/Body.prefab - artifactKey: Guid(9b5fb873976e0054a854b443fec66f42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Goblin/Female/Body.prefab using Guid(9b5fb873976e0054a854b443fec66f42) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ea18066d0276e0b17f2a2857d0443aeb') in 6.337938 seconds -======================================================================== -Received Import Request. - Time since last request: 5.743289 seconds. - path: Assets/Daz3D/Races/Goblin/Male/Body.prefab - artifactKey: Guid(f0eac46153d9277498019ffbd605a120) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Goblin/Male/Body.prefab using Guid(f0eac46153d9277498019ffbd605a120) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '71b411ad6688dd9c8d8ed3f8f067feaf') in 5.546257 seconds -======================================================================== -Received Import Request. - Time since last request: 6.425454 seconds. - path: Assets/Daz3D/Races/Ichtapau/Male/Body.prefab - artifactKey: Guid(6dd50b9e6adb8004cb331dbfa95960e5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ichtapau/Male/Body.prefab using Guid(6dd50b9e6adb8004cb331dbfa95960e5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'eb2772669903ca15398478e0d8e151a3') in 5.732520 seconds -======================================================================== -Received Import Request. - Time since last request: 5.024810 seconds. - path: Assets/Daz3D/Races/Jaz/Male/Body.prefab - artifactKey: Guid(875abd4c9d8bff842af962faf7443c85) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Jaz/Male/Body.prefab using Guid(875abd4c9d8bff842af962faf7443c85) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2a6892bbd04f24853c378db8cafc87ea') in 5.628584 seconds -======================================================================== -Received Import Request. - Time since last request: 0.944070 seconds. - path: Assets/Daz3D/Races/Jaz/Male/Body.prefab - artifactKey: Guid(875abd4c9d8bff842af962faf7443c85) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Jaz/Male/Body.prefab using Guid(875abd4c9d8bff842af962faf7443c85) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd872204bdb15ef5ce29d70b2733e1234') in 5.737291 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000045 seconds. - path: Assets/Daz3D/Races/Jaz/Female/Body.prefab - artifactKey: Guid(de804a55b547b39468601b032b36e98a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Jaz/Female/Body.prefab using Guid(de804a55b547b39468601b032b36e98a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0be5a3c4714a44c00f95d092798d4ef6') in 6.519900 seconds -======================================================================== -Received Import Request. - Time since last request: 4.670598 seconds. - path: Assets/Daz3D/Races/Ogre/Male/Body.prefab - artifactKey: Guid(999d1ed96455feb41a71980c56d6dd53) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ogre/Male/Body.prefab using Guid(999d1ed96455feb41a71980c56d6dd53) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dce5d0f165d7683bac02d9f24dc354dd') in 1.222713 seconds -======================================================================== -Received Import Request. - Time since last request: 0.154586 seconds. - path: Assets/Daz3D/Races/Ogre/Male/Body.prefab - artifactKey: Guid(999d1ed96455feb41a71980c56d6dd53) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ogre/Male/Body.prefab using Guid(999d1ed96455feb41a71980c56d6dd53) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '630bfae51099572ccf389ed34aec57ff') in 1.101879 seconds -======================================================================== -Received Import Request. - Time since last request: 9.968634 seconds. - path: Assets/Daz3D/Races/Oni/Male/Body.prefab - artifactKey: Guid(0b7b005f2ae3d8649904a4bb3b3feb9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Body.prefab using Guid(0b7b005f2ae3d8649904a4bb3b3feb9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5afdbd4f41d59f92ee5bea0fe4044765') in 1.199604 seconds -======================================================================== -Received Import Request. - Time since last request: 5.795376 seconds. - path: Assets/Daz3D/Races/Oni/Male/Body.prefab - artifactKey: Guid(0b7b005f2ae3d8649904a4bb3b3feb9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Body.prefab using Guid(0b7b005f2ae3d8649904a4bb3b3feb9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2d5a7c0df71f92180620ade2790ae729') in 1.007120 seconds -======================================================================== -Received Import Request. - Time since last request: 0.212450 seconds. - path: Assets/Daz3D/Races/Oni/Male/Body.prefab - artifactKey: Guid(0b7b005f2ae3d8649904a4bb3b3feb9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Male/Body.prefab using Guid(0b7b005f2ae3d8649904a4bb3b3feb9d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6e9f860797843ae1a01b12680aec08c6') in 1.022403 seconds -======================================================================== -Received Import Request. - Time since last request: 93.157737 seconds. - path: Assets/Daz3D/Races/Oumua/Male/Body.prefab - artifactKey: Guid(95c68d036a8785e4cbec4cc02f8daded) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Male/Body.prefab using Guid(95c68d036a8785e4cbec4cc02f8daded) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '148f41eb69e2952198da07bfda88dcd3') in 1.886429 seconds -======================================================================== -Received Import Request. - Time since last request: 4.401243 seconds. - path: Assets/Daz3D/Races/Oumua/Male/Body.prefab - artifactKey: Guid(95c68d036a8785e4cbec4cc02f8daded) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Male/Body.prefab using Guid(95c68d036a8785e4cbec4cc02f8daded) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2830ffc64f3172a928dd1fc444ec0c05') in 1.719469 seconds -======================================================================== -Received Import Request. - Time since last request: 0.350938 seconds. - path: Assets/Daz3D/Races/Oumua/Female/Body.prefab - artifactKey: Guid(0a7177ce4aa30c242a9000177411d5a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Female/Body.prefab using Guid(0a7177ce4aa30c242a9000177411d5a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd60f628f84d07a9d9a1eff2ecdda37eb') in 6.455742 seconds -======================================================================== -Received Import Request. - Time since last request: 1.184850 seconds. - path: Assets/Daz3D/Races/Ozias/[RACE] Ozias.asset - artifactKey: Guid(2a727b4644ea58c4c9e88a3b82aa7291) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/[RACE] Ozias.asset using Guid(2a727b4644ea58c4c9e88a3b82aa7291) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7b558fa20a16e46eb6eda185528da4b0') in 114.040346 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000067 seconds. - path: Assets/Daz3D/Races/Underworld/Male/Body 2.prefab - artifactKey: Guid(fc6cec7da4770a3439b2d4f73359a6d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Underworld/Male/Body 2.prefab using Guid(fc6cec7da4770a3439b2d4f73359a6d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ce4bea1ef98a991bd29219f10b288c61') in 1.708462 seconds -======================================================================== -Received Import Request. - Time since last request: 33.888838 seconds. - path: Assets/Daz3D/Races/Underworld/Female/Body.prefab - artifactKey: Guid(b7868f47df775654094aed906b22a0f3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Underworld/Female/Body.prefab using Guid(b7868f47df775654094aed906b22a0f3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '49b7003a9f39dbb1571cf3f2ca7804bc') in 1.182930 seconds -======================================================================== -Received Import Request. - Time since last request: 2.873547 seconds. - path: Assets/Daz3D/Races/Underworld/Female/Body 2.prefab - artifactKey: Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Underworld/Female/Body 2.prefab using Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cd7d2f08b6a42c34e82a99c6b5f2af5a') in 1.337756 seconds -======================================================================== -Received Import Request. - Time since last request: 29.005470 seconds. - path: Assets/Daz3D/Races/Underworld/Female/Body 2.prefab - artifactKey: Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Underworld/Female/Body 2.prefab using Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b57e2df65d8c1eb651c925ecc746eb74') in 1.358091 seconds -======================================================================== -Received Import Request. - Time since last request: 12.855317 seconds. - path: Assets/Daz3D/Races/Underworld/Female/Body 2.prefab - artifactKey: Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Underworld/Female/Body 2.prefab using Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bc7c4fdb2460c87d688e527b813b417b') in 1.363839 seconds -======================================================================== -Received Import Request. - Time since last request: 2.638811 seconds. - path: Assets/Daz3D/Races/Underworld/Female/Body 2.prefab - artifactKey: Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Underworld/Female/Body 2.prefab using Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '312db9e81e4d828675c26d911fd4b7da') in 1.331969 seconds -======================================================================== -Received Import Request. - Time since last request: 2.986891 seconds. - path: Assets/Daz3D/Races/Underworld/Female/Body 2.prefab - artifactKey: Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Underworld/Female/Body 2.prefab using Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c8c1229f694de1e328798d1d3e7d6415') in 1.345071 seconds -======================================================================== -Received Import Request. - Time since last request: 7.359228 seconds. - path: Assets/Daz3D/Races/Underworld/Female/Body 2.prefab - artifactKey: Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Underworld/Female/Body 2.prefab using Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '54693d930d8f0a11cd586887cf64d742') in 1.329720 seconds -======================================================================== -Received Import Request. - Time since last request: 2.296741 seconds. - path: Assets/Daz3D/Races/Underworld/Female/Body 2.prefab - artifactKey: Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Underworld/Female/Body 2.prefab using Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b2cbe94eabf8db963837db8321f13787') in 1.354935 seconds -======================================================================== -Received Import Request. - Time since last request: 3.963006 seconds. - path: Assets/Daz3D/Races/Underworld/Female/Body 2.prefab - artifactKey: Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Underworld/Female/Body 2.prefab using Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f7097649db9590cc57077caae1d64b50') in 1.358122 seconds -======================================================================== -Received Import Request. - Time since last request: 10.736097 seconds. - path: Assets/Daz3D/Races/Underworld/Female/Body 2.prefab - artifactKey: Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Underworld/Female/Body 2.prefab using Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e87812671da71d02c27c20af765f9840') in 1.361307 seconds -======================================================================== -Received Import Request. - Time since last request: 3.349241 seconds. - path: Assets/Daz3D/Races/Underworld/Female/Body 2.prefab - artifactKey: Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Underworld/Female/Body 2.prefab using Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dd186a828518580ce6969b753cfe31f7') in 1.332075 seconds -======================================================================== -Received Import Request. - Time since last request: 2.995474 seconds. - path: Assets/Daz3D/Races/Underworld/Female/Body 2.prefab - artifactKey: Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Underworld/Female/Body 2.prefab using Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '77f2da568dff5821fe9cd226d1fecde7') in 1.358696 seconds -======================================================================== -Received Import Request. - Time since last request: 60.898933 seconds. - path: Assets/Daz3D/Races/Underworld/Female/Body 2.prefab - artifactKey: Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Underworld/Female/Body 2.prefab using Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1907af3e41c8ac3feb04377969dab73b') in 1.297665 seconds -======================================================================== -Received Import Request. - Time since last request: 2015.162429 seconds. - path: Assets/Daz3D/Races/Underworld/Female/Body 2.prefab - artifactKey: Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Underworld/Female/Body 2.prefab using Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0cbb708f847ef548ec211316d82b5cfb') in 1.343745 seconds -======================================================================== -Received Import Request. - Time since last request: 8.410377 seconds. - path: Assets/Daz3D/Races/Underworld/Female/Body 2.prefab - artifactKey: Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Underworld/Female/Body 2.prefab using Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7ad233ca316f069b67b849ac4530b54d') in 1.344508 seconds -======================================================================== -Received Import Request. - Time since last request: 7.409089 seconds. - path: Assets/Daz3D/Races/Underworld/Female/Body 2.prefab - artifactKey: Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Underworld/Female/Body 2.prefab using Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '900d1f611b23e7905dcfbd6010ac5f37') in 1.434974 seconds -======================================================================== -Received Import Request. - Time since last request: 7.280719 seconds. - path: Assets/Daz3D/Races/Underworld/Female/Body 2.prefab - artifactKey: Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Underworld/Female/Body 2.prefab using Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '75a7e41f9873a3d3a27221f706c923be') in 1.356688 seconds -======================================================================== -Received Import Request. - Time since last request: 24.308644 seconds. - path: Assets/Daz3D/Races/Underworld/Female/Body.prefab - artifactKey: Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Underworld/Female/Body.prefab using Guid(39d59ba39ca84154db5c75a8a12caeb1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2a22c4ff5296d1251b139d697f88e7a7') in 1.362809 seconds -======================================================================== -Received Import Request. - Time since last request: 14.053842 seconds. - path: Assets/Daz3D/Races/Underworld/Male/Body 2.prefab - artifactKey: Guid(fc6cec7da4770a3439b2d4f73359a6d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Underworld/Male/Body 2.prefab using Guid(fc6cec7da4770a3439b2d4f73359a6d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'aadb5f41e24202f711abe91f4b54cbec') in 1.377752 seconds -======================================================================== -Received Import Request. - Time since last request: 7.097293 seconds. - path: Assets/Daz3D/Races/Underworld/Male/Body 2.prefab - artifactKey: Guid(fc6cec7da4770a3439b2d4f73359a6d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Underworld/Male/Body 2.prefab using Guid(fc6cec7da4770a3439b2d4f73359a6d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9ad2e3018a600dbf6367dd4fffaf9645') in 1.369408 seconds -======================================================================== -Received Import Request. - Time since last request: 6.430377 seconds. - path: Assets/Daz3D/Races/Underworld/Male/Body 2.prefab - artifactKey: Guid(fc6cec7da4770a3439b2d4f73359a6d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Underworld/Male/Body 2.prefab using Guid(fc6cec7da4770a3439b2d4f73359a6d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '758621f28bbb4becf5e86278f365ec23') in 1.350973 seconds -======================================================================== -Received Import Request. - Time since last request: 9.078195 seconds. - path: Assets/Daz3D/Races/Underworld/Male/Body 2.prefab - artifactKey: Guid(fc6cec7da4770a3439b2d4f73359a6d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Underworld/Male/Body 2.prefab using Guid(fc6cec7da4770a3439b2d4f73359a6d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '32c2a0cf2b99c088de7313372e1c5b50') in 1.354405 seconds -======================================================================== -Received Import Request. - Time since last request: 10.218672 seconds. - path: Assets/Daz3D/Races/Underworld/Male/Body.prefab - artifactKey: Guid(fc6cec7da4770a3439b2d4f73359a6d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Underworld/Male/Body.prefab using Guid(fc6cec7da4770a3439b2d4f73359a6d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cb6bbb1b175cbd048b4236c21658a6ab') in 1.326845 seconds -======================================================================== -Received Import Request. - Time since last request: 5.567790 seconds. - path: Assets/Daz3D/Races/Abyss/Female - artifactKey: Guid(b1a3b5fa4cba88e47b1d310de17e36a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Abyss/Female using Guid(b1a3b5fa4cba88e47b1d310de17e36a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fee8de5c72e16a25de0b306f6db5bf08') in 0.007890 seconds -======================================================================== -Received Import Request. - Time since last request: 0.594082 seconds. - path: Assets/Daz3D/Races/Abyss/Male/Body.prefab - artifactKey: Guid(ccc382de852d11d4782d8be4b0a35e06) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Abyss/Male/Body.prefab using Guid(ccc382de852d11d4782d8be4b0a35e06) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c2a36fb71b49840b3d8ffb08aa918404') in 1.330907 seconds -======================================================================== -Received Import Request. - Time since last request: 11.853236 seconds. - path: Assets/Daz3D/Races/Abyss/Male/Body.prefab - artifactKey: Guid(ccc382de852d11d4782d8be4b0a35e06) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Abyss/Male/Body.prefab using Guid(ccc382de852d11d4782d8be4b0a35e06) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ed0eb3842793cc4c2a58844eae6ea139') in 1.168026 seconds -======================================================================== -Received Import Request. - Time since last request: 16.824221 seconds. - path: Assets/Daz3D/Races/Abyss/Male/Body.prefab - artifactKey: Guid(ccc382de852d11d4782d8be4b0a35e06) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Abyss/Male/Body.prefab using Guid(ccc382de852d11d4782d8be4b0a35e06) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b6eb5e2029198abdaeeb60974086db98') in 1.205167 seconds -======================================================================== -Received Import Request. - Time since last request: 2.405673 seconds. - path: Assets/Daz3D/Races/Abyss/Male/Body.prefab - artifactKey: Guid(ccc382de852d11d4782d8be4b0a35e06) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Abyss/Male/Body.prefab using Guid(ccc382de852d11d4782d8be4b0a35e06) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd3b85551eed48c8434f477d1ae9f5a06') in 1.165357 seconds -======================================================================== -Received Import Request. - Time since last request: 5.349940 seconds. - path: Assets/Daz3D/Races/Abyss/Male/Body.prefab - artifactKey: Guid(ccc382de852d11d4782d8be4b0a35e06) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Abyss/Male/Body.prefab using Guid(ccc382de852d11d4782d8be4b0a35e06) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7af6f50a40a06485bb00261d68ecf617') in 1.154012 seconds -======================================================================== -Received Import Request. - Time since last request: 7.512120 seconds. - path: Assets/Daz3D/Races/Abyss/Female/Body.prefab - artifactKey: Guid(9899fb48f2304324fb9ecba9918c9c47) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Abyss/Female/Body.prefab using Guid(9899fb48f2304324fb9ecba9918c9c47) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e1ae854866bf26a68fba2e1ba891d923') in 1.780881 seconds -======================================================================== -Received Import Request. - Time since last request: 8.165731 seconds. - path: Assets/Daz3D/Races/Abyss/Female/Body.prefab - artifactKey: Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Abyss/Female/Body.prefab using Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a3c4083d947698cd58030e0bf4e8dca9') in 1.130374 seconds -======================================================================== -Received Import Request. - Time since last request: 23.968449 seconds. - path: Assets/Daz3D/Races/Abyss/Female/Body.prefab - artifactKey: Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Abyss/Female/Body.prefab using Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '08db67c0536b8d15393d9d3fee031c03') in 1.141544 seconds -======================================================================== -Received Import Request. - Time since last request: 7.592814 seconds. - path: Assets/Daz3D/Races/Abyss/Female/Body.prefab - artifactKey: Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Abyss/Female/Body.prefab using Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '293224ce8bec4750d6f77bb33cd63baf') in 1.120447 seconds -======================================================================== -Received Import Request. - Time since last request: 2.544905 seconds. - path: Assets/Daz3D/Races/Abyss/Female/Body.prefab - artifactKey: Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Abyss/Female/Body.prefab using Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd64b29663c80ee277e5a36cf8f0936c3') in 1.131454 seconds -======================================================================== -Received Import Request. - Time since last request: 2.173392 seconds. - path: Assets/Daz3D/Races/Abyss/Female/Body.prefab - artifactKey: Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Abyss/Female/Body.prefab using Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b4d4e74509f3db221dcbc967526f5a61') in 1.142743 seconds -======================================================================== -Received Import Request. - Time since last request: 3.627439 seconds. - path: Assets/Daz3D/Races/Abyss/Female/Body.prefab - artifactKey: Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Abyss/Female/Body.prefab using Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b4d2cb0d850499189b5e7be57ccd0867') in 1.150344 seconds -======================================================================== -Received Import Request. - Time since last request: 2.404213 seconds. - path: Assets/Daz3D/Races/Abyss/Female/Body.prefab - artifactKey: Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Abyss/Female/Body.prefab using Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '35ddbe1bb7ddef5c9bec831b41b224e0') in 1.125510 seconds -======================================================================== -Received Import Request. - Time since last request: 2.747130 seconds. - path: Assets/Daz3D/Races/Abyss/Female/Body.prefab - artifactKey: Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Abyss/Female/Body.prefab using Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '49714141902c3c1faa0367a11a22164c') in 1.147498 seconds -======================================================================== -Received Import Request. - Time since last request: 2.559938 seconds. - path: Assets/Daz3D/Races/Abyss/Female/Body.prefab - artifactKey: Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Abyss/Female/Body.prefab using Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '03445e21a9a16eee6449f92736b898ab') in 1.164283 seconds -======================================================================== -Received Import Request. - Time since last request: 8.802090 seconds. - path: Assets/Daz3D/Races/Abyss/Female/Body.prefab - artifactKey: Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Abyss/Female/Body.prefab using Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2ba4ac455d20440391695aa762348210') in 1.140900 seconds -======================================================================== -Received Import Request. - Time since last request: 2.918118 seconds. - path: Assets/Daz3D/Races/Abyss/Female/Body.prefab - artifactKey: Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Abyss/Female/Body.prefab using Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c6e3d6d0d3cbb4ab360910af1fd72532') in 1.128499 seconds -======================================================================== -Received Import Request. - Time since last request: 4.205370 seconds. - path: Assets/Daz3D/Races/Abyss/Female/Body.prefab - artifactKey: Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Abyss/Female/Body.prefab using Guid(ffd6e0607e7a94b499c37e24ec33986a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0f3fa4f1f5ae296941481925cba72e3d') in 1.198724 seconds -======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.012052 seconds. +Registered in 0.010360 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 5.12 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 4.72 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 @@ -3917,40 +2858,180 @@ UnityEngine.Debug:LogError (object) UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () Mono: successfully reloaded assembly -- Completed reload, in 2.637 seconds +- Completed reload, in 2.516 seconds Domain Reload Profiling: - ReloadAssembly (2638ms) - BeginReloadAssembly (316ms) + ReloadAssembly (2517ms) + BeginReloadAssembly (255ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (13ms) + DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (89ms) - EndReloadAssembly (2172ms) - LoadAssemblies (220ms) + CreateAndSetChildDomain (56ms) + EndReloadAssembly (2115ms) + LoadAssemblies (200ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (688ms) - ReleaseScriptCaches (4ms) - RebuildScriptCaches (68ms) - SetupLoadedEditorAssemblies (1150ms) + SetupTypeCache (664ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (64ms) + SetupLoadedEditorAssemblies (1102ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (16ms) + InitializePlatformSupportModulesInManaged (13ms) SetLoadedEditorAssemblies (1ms) RefreshPlugins (5ms) - BeforeProcessingInitializeOnLoad (127ms) - ProcessInitializeOnLoadAttributes (681ms) - ProcessInitializeOnLoadMethodAttributes (310ms) + BeforeProcessingInitializeOnLoad (121ms) + ProcessInitializeOnLoadAttributes (658ms) + ProcessInitializeOnLoadMethodAttributes (295ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 10.04 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8403. +Memory consumption went from 455.9 MB to 451.0 MB. +Total: 9.096700 ms (FindLiveObjects: 0.924500 ms CreateObjectMapping: 0.779400 ms MarkObjects: 5.658700 ms DeleteObjects: 1.732700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.012266 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 5.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.297 seconds +Domain Reload Profiling: + ReloadAssembly (2298ms) + BeginReloadAssembly (199ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (77ms) + EndReloadAssembly (1962ms) + LoadAssemblies (136ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (426ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (89ms) + SetupLoadedEditorAssemblies (1180ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (140ms) + ProcessInitializeOnLoadAttributes (732ms) + ProcessInitializeOnLoadMethodAttributes (277ms) AfterProcessingInitializeOnLoad (11ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (26ms) + AwakeInstancesAfterBackupRestoration (27ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 11.17 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 11.57 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8614. -Memory consumption went from 466.7 MB to 461.7 MB. -Total: 7.522500 ms (FindLiveObjects: 0.976200 ms CreateObjectMapping: 0.725600 ms MarkObjects: 4.149200 ms DeleteObjects: 1.669600 ms) +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8418. +Memory consumption went from 456.0 MB to 451.0 MB. +Total: 8.975200 ms (FindLiveObjects: 1.074300 ms CreateObjectMapping: 0.978100 ms MarkObjects: 4.955100 ms DeleteObjects: 1.966000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.009820 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.16 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.984 seconds +Domain Reload Profiling: + ReloadAssembly (1984ms) + BeginReloadAssembly (185ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (63ms) + EndReloadAssembly (1682ms) + LoadAssemblies (123ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (365ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (65ms) + SetupLoadedEditorAssemblies (1034ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (119ms) + ProcessInitializeOnLoadAttributes (655ms) + ProcessInitializeOnLoadMethodAttributes (234ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8433. +Memory consumption went from 456.0 MB to 451.0 MB. +Total: 9.249700 ms (FindLiveObjects: 0.829200 ms CreateObjectMapping: 0.712900 ms MarkObjects: 6.121900 ms DeleteObjects: 1.584500 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -3964,7 +3045,1095 @@ AssetImportParameters requested are different than current active one (requested custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - Time since last request: 17996.664224 seconds. - path: Assets/Daz3D/Races/Abyss/[RACE] Abyss.asset - artifactKey: Guid(77284990dba8ae74181da5ab8c8d8929) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Abyss/[RACE] Abyss.asset using Guid(77284990dba8ae74181da5ab8c8d8929) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd92df5146a4c19947fd2197a56a93092') in 1.002266 seconds + Time since last request: 6912.033774 seconds. + path: Assets/Scenes/Interior/Canyon Caves/[Canyon] Wothabs Inn/[EnvPreset] [Canyon] Wothabs Inn.asset + artifactKey: Guid(c90aa8526b844e44997c084d954a05ad) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scenes/Interior/Canyon Caves/[Canyon] Wothabs Inn/[EnvPreset] [Canyon] Wothabs Inn.asset using Guid(c90aa8526b844e44997c084d954a05ad) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9f8f0817ec44970108a17c3b7013cd67') in 0.033773 seconds +======================================================================== +Received Import Request. + Time since last request: 2.733998 seconds. + path: Assets/RPG Creation Kit/Scripts/Save System/SaveElements/Environment.cs + artifactKey: Guid(6d403208006e1394eb574e282934918a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/Save System/SaveElements/Environment.cs using Guid(6d403208006e1394eb574e282934918a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4e405b6b2065934b82a9ec8a55b52b74') in 0.020207 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.009986 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 6.18 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.900 seconds +Domain Reload Profiling: + ReloadAssembly (1900ms) + BeginReloadAssembly (167ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (60ms) + EndReloadAssembly (1622ms) + LoadAssemblies (106ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (349ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (64ms) + SetupLoadedEditorAssemblies (1006ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (6ms) + BeforeProcessingInitializeOnLoad (115ms) + ProcessInitializeOnLoadAttributes (634ms) + ProcessInitializeOnLoadMethodAttributes (228ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8448. +Memory consumption went from 456.0 MB to 451.1 MB. +Total: 7.222300 ms (FindLiveObjects: 0.830700 ms CreateObjectMapping: 0.626100 ms MarkObjects: 4.124800 ms DeleteObjects: 1.639500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.009945 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.60 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.087 seconds +Domain Reload Profiling: + ReloadAssembly (2088ms) + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + EndReloadAssembly (1797ms) + LoadAssemblies (109ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (394ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (67ms) + SetupLoadedEditorAssemblies (1113ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (125ms) + ProcessInitializeOnLoadAttributes (695ms) + ProcessInitializeOnLoadMethodAttributes (264ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (25ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 11.45 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8463. +Memory consumption went from 456.0 MB to 451.1 MB. +Total: 10.375100 ms (FindLiveObjects: 0.852300 ms CreateObjectMapping: 0.731400 ms MarkObjects: 7.075900 ms DeleteObjects: 1.713500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010985 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 6.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.985 seconds +Domain Reload Profiling: + ReloadAssembly (1986ms) + BeginReloadAssembly (176ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (62ms) + EndReloadAssembly (1694ms) + LoadAssemblies (119ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (362ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (67ms) + SetupLoadedEditorAssemblies (1043ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (7ms) + BeforeProcessingInitializeOnLoad (129ms) + ProcessInitializeOnLoadAttributes (647ms) + ProcessInitializeOnLoadMethodAttributes (237ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (20ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8478. +Memory consumption went from 456.1 MB to 451.1 MB. +Total: 7.228900 ms (FindLiveObjects: 0.887900 ms CreateObjectMapping: 0.713500 ms MarkObjects: 4.045500 ms DeleteObjects: 1.580100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.013232 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.56 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.006 seconds +Domain Reload Profiling: + ReloadAssembly (2007ms) + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (58ms) + EndReloadAssembly (1731ms) + LoadAssemblies (105ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (363ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (72ms) + SetupLoadedEditorAssemblies (1077ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (126ms) + ProcessInitializeOnLoadAttributes (671ms) + ProcessInitializeOnLoadMethodAttributes (252ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.91 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8493. +Memory consumption went from 456.1 MB to 451.1 MB. +Total: 10.053900 ms (FindLiveObjects: 0.844900 ms CreateObjectMapping: 0.764900 ms MarkObjects: 6.251200 ms DeleteObjects: 2.191100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010013 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.055 seconds +Domain Reload Profiling: + ReloadAssembly (2056ms) + BeginReloadAssembly (166ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + EndReloadAssembly (1765ms) + LoadAssemblies (108ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (377ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (71ms) + SetupLoadedEditorAssemblies (1092ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (129ms) + ProcessInitializeOnLoadAttributes (680ms) + ProcessInitializeOnLoadMethodAttributes (251ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.39 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8508. +Memory consumption went from 456.1 MB to 451.2 MB. +Total: 7.323700 ms (FindLiveObjects: 0.817300 ms CreateObjectMapping: 0.647300 ms MarkObjects: 4.198300 ms DeleteObjects: 1.659700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.012389 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.969 seconds +Domain Reload Profiling: + ReloadAssembly (1970ms) + BeginReloadAssembly (180ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (72ms) + EndReloadAssembly (1675ms) + LoadAssemblies (112ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (377ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (66ms) + SetupLoadedEditorAssemblies (1019ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (120ms) + ProcessInitializeOnLoadAttributes (634ms) + ProcessInitializeOnLoadMethodAttributes (237ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 12.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8523. +Memory consumption went from 456.1 MB to 451.2 MB. +Total: 8.803400 ms (FindLiveObjects: 1.108200 ms CreateObjectMapping: 0.652700 ms MarkObjects: 5.270300 ms DeleteObjects: 1.771000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010079 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.027 seconds +Domain Reload Profiling: + ReloadAssembly (2028ms) + BeginReloadAssembly (161ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + EndReloadAssembly (1754ms) + LoadAssemblies (109ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (375ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (69ms) + SetupLoadedEditorAssemblies (1087ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (129ms) + ProcessInitializeOnLoadAttributes (679ms) + ProcessInitializeOnLoadMethodAttributes (249ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (20ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 9.85 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8538. +Memory consumption went from 456.2 MB to 451.2 MB. +Total: 10.294200 ms (FindLiveObjects: 0.838600 ms CreateObjectMapping: 0.879200 ms MarkObjects: 6.751100 ms DeleteObjects: 1.823600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.009795 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.23 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.053 seconds +Domain Reload Profiling: + ReloadAssembly (2053ms) + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (57ms) + EndReloadAssembly (1764ms) + LoadAssemblies (106ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (366ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (64ms) + SetupLoadedEditorAssemblies (1121ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (116ms) + ProcessInitializeOnLoadAttributes (749ms) + ProcessInitializeOnLoadMethodAttributes (228ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.50 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8553. +Memory consumption went from 456.2 MB to 451.3 MB. +Total: 7.972600 ms (FindLiveObjects: 0.827700 ms CreateObjectMapping: 0.729900 ms MarkObjects: 4.670800 ms DeleteObjects: 1.742900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010462 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.936 seconds +Domain Reload Profiling: + ReloadAssembly (1937ms) + BeginReloadAssembly (193ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (76ms) + EndReloadAssembly (1632ms) + LoadAssemblies (113ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (354ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (69ms) + SetupLoadedEditorAssemblies (993ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (115ms) + ProcessInitializeOnLoadAttributes (618ms) + ProcessInitializeOnLoadMethodAttributes (232ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (20ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8568. +Memory consumption went from 456.2 MB to 451.3 MB. +Total: 7.170300 ms (FindLiveObjects: 0.828700 ms CreateObjectMapping: 0.618300 ms MarkObjects: 4.006800 ms DeleteObjects: 1.715000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.011156 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.058 seconds +Domain Reload Profiling: + ReloadAssembly (2058ms) + BeginReloadAssembly (167ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + EndReloadAssembly (1784ms) + LoadAssemblies (104ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (365ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (69ms) + SetupLoadedEditorAssemblies (1119ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (149ms) + ProcessInitializeOnLoadAttributes (697ms) + ProcessInitializeOnLoadMethodAttributes (245ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.00 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8583. +Memory consumption went from 456.3 MB to 451.3 MB. +Total: 7.251800 ms (FindLiveObjects: 0.867700 ms CreateObjectMapping: 0.699500 ms MarkObjects: 3.959200 ms DeleteObjects: 1.724100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010288 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.920 seconds +Domain Reload Profiling: + ReloadAssembly (1920ms) + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (61ms) + EndReloadAssembly (1635ms) + LoadAssemblies (105ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (347ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (63ms) + SetupLoadedEditorAssemblies (1021ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (118ms) + ProcessInitializeOnLoadAttributes (637ms) + ProcessInitializeOnLoadMethodAttributes (239ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8598. +Memory consumption went from 456.3 MB to 451.3 MB. +Total: 8.189700 ms (FindLiveObjects: 0.898000 ms CreateObjectMapping: 0.748900 ms MarkObjects: 4.496500 ms DeleteObjects: 2.044900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 4904.225638 seconds. + path: Assets/Daz3D/SoundEffects/UpstairsDoor/01DoorClose.ogg + artifactKey: Guid(5daabac04d5b24a499f175cc93206213) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/SoundEffects/UpstairsDoor/01DoorClose.ogg using Guid(5daabac04d5b24a499f175cc93206213) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '22ea5c306eb12d81fb7dceae85dcd4e6') in 0.077779 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000034 seconds. + path: Assets/Daz3D/Architecture/Doors/DoorRoom/_Door5/Door_3/_Door5@Open.fbx + artifactKey: Guid(859f3c3b8dba50146bb1fe6bf4a1f452) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Doors/DoorRoom/_Door5/Door_3/_Door5@Open.fbx using Guid(859f3c3b8dba50146bb1fe6bf4a1f452) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5fff9235c7c9d96351eb8326f40f50ff') in 0.025797 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000041 seconds. + path: Assets/Daz3D/Architecture/Doors/DoorRoom/_Door5_Prefab.prefab + artifactKey: Guid(fac40dd5db3c2d74e9a7769a67c2cde1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Doors/DoorRoom/_Door5_Prefab.prefab using Guid(fac40dd5db3c2d74e9a7769a67c2cde1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7294891f6af5baafc1f780893d761db3') in 0.408433 seconds +======================================================================== +Received Import Request. + Time since last request: 2.020720 seconds. + path: Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/_DoorFrame.fbx + artifactKey: Guid(4ae4e050183883f42900fa1a0f2887de) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/_DoorFrame.fbx using Guid(4ae4e050183883f42900fa1a0f2887de) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '75ef019188581238fe4541c658f19f08') in 0.186409 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000077 seconds. + path: Assets/RPG Creation Kit/Models/RPG Creation Kit Environment/Big House/Big house First Floor Door 2.fbx + artifactKey: Guid(23d7a935f3516a547bc2fcabdb5c2855) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Models/RPG Creation Kit Environment/Big House/Big house First Floor Door 2.fbx using Guid(23d7a935f3516a547bc2fcabdb5c2855) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '04147236026d0762b599532e44e6f223') in 0.035247 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000044 seconds. + path: Assets/RPG Creation Kit/Models/RPG Creation Kit Environment/Big House/Big house First Floor Door 1.fbx + artifactKey: Guid(9e5044d38c2255b4eb85e90cbaacbf10) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Models/RPG Creation Kit Environment/Big House/Big house First Floor Door 1.fbx using Guid(9e5044d38c2255b4eb85e90cbaacbf10) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a03c777bb5c49b59dd9b07134b82d5f2') in 0.034592 seconds +======================================================================== +Received Import Request. + Time since last request: 3.889447 seconds. + path: Assets/RPG Creation Kit/Models/Third Party/75990_Church1Upload/EXPORT/Materials/ChurchDoor1.mat + artifactKey: Guid(74c7f1dbcfcba98478002e98262a3627) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Models/Third Party/75990_Church1Upload/EXPORT/Materials/ChurchDoor1.mat using Guid(74c7f1dbcfcba98478002e98262a3627) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2369ac2edf06e568d7999fee3718faee') in 0.039013 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000029 seconds. + path: Assets/Materials/MapMarkers/Door.mat + artifactKey: Guid(3b482fcd0b2cb39408808eb1f6a74696) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Materials/MapMarkers/Door.mat using Guid(3b482fcd0b2cb39408808eb1f6a74696) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '447ae387e0ddf829aae734d714542f0f') in 0.016068 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000035 seconds. + path: Assets/Daz3D/Architecture/Doors/SmallDoorFrame/SmallDoor_Stones_12m_Wide/SmallDoorFrame_Prefab/Daz3D_SmallDoorFrame.prefab + artifactKey: Guid(921dc964297a65947a26f08ef904e564) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Doors/SmallDoorFrame/SmallDoor_Stones_12m_Wide/SmallDoorFrame_Prefab/Daz3D_SmallDoorFrame.prefab using Guid(921dc964297a65947a26f08ef904e564) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c4f14b4cee2b0e64413b715da2b45cf3') in 0.027373 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000029 seconds. + path: Assets/RPG Creation Kit/Models/Additional Models/Props/Building_Props/Door_Wood/Handle_Textures/Door_Handle.mat + artifactKey: Guid(b652f87a8f93d6545917a94f9419d784) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Models/Additional Models/Props/Building_Props/Door_Wood/Handle_Textures/Door_Handle.mat using Guid(b652f87a8f93d6545917a94f9419d784) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6f277c00d95c06a1adcd57edd787bd5e') in 0.063344 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000038 seconds. + path: Assets/RPG Creation Kit/Models/Additional Models/Props/Building_Props/Door_Wood/Door_Wood.fbx + artifactKey: Guid(a48308a19e43334408de66c3aae0962e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Models/Additional Models/Props/Building_Props/Door_Wood/Door_Wood.fbx using Guid(a48308a19e43334408de66c3aae0962e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f407c9fbcd095b36d74f1c5ffa1d3fab') in 0.056700 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000043 seconds. + path: Assets/RPG Creation Kit/Models/Additional Models/Props/Building_Props/Door_Wood/Handle_Textures/Door_Handle_Normal.png + artifactKey: Guid(74cf88c5fbf420b46bc4ee331ab7c358) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Models/Additional Models/Props/Building_Props/Door_Wood/Handle_Textures/Door_Handle_Normal.png using Guid(74cf88c5fbf420b46bc4ee331ab7c358) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ebfad62e178d4faf517f188a144f65fb') in 0.022446 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000040 seconds. + path: Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/_DoorFrame_Prefab/Daz3D__DoorFrame.prefab + artifactKey: Guid(acec1cd5dd54e8d47aa26ac5b3a54494) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/_DoorFrame_Prefab/Daz3D__DoorFrame.prefab using Guid(acec1cd5dd54e8d47aa26ac5b3a54494) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7ab0e4500a14dd41d02c80810c1aab38') in 0.052715 seconds +======================================================================== +Received Import Request. + Time since last request: 46.700248 seconds. + path: Assets/Daz3D/Architecture/Doors/DoorRoom/_Door5/Door_3/Door_PNTR_Mat1_Normal-OGL.png + artifactKey: Guid(65b1900a9ca12b64db0cbc030c7052ad) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Doors/DoorRoom/_Door5/Door_3/Door_PNTR_Mat1_Normal-OGL.png using Guid(65b1900a9ca12b64db0cbc030c7052ad) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '14ccf63fe1c4443523d387c2f1be0f18') in 0.018947 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000031 seconds. + path: Assets/RPG Creation Kit/Models/Additional Models/Props/Building_Props/Door_Wood/Door_Wood.mat + artifactKey: Guid(d0f95ccc99c6d964c931beca00e77e1a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Models/Additional Models/Props/Building_Props/Door_Wood/Door_Wood.mat using Guid(d0f95ccc99c6d964c931beca00e77e1a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4907304b4fed97bc60198ab14973ba7e') in 0.056472 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000038 seconds. + path: Assets/RPG Creation Kit/Models/Additional Models/Props/Building_Props/Door_Wood/Door_Wood_AlbedoTransparency.png + artifactKey: Guid(7c0898255da4ce349afab1ed4265588a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Models/Additional Models/Props/Building_Props/Door_Wood/Door_Wood_AlbedoTransparency.png using Guid(7c0898255da4ce349afab1ed4265588a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'be4eb590717bffee6ad7adcbf2cce6f4') in 0.016716 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000033 seconds. + path: Assets/RPG Creation Kit/Models/Additional Models/Props/Building_Props/Door_Wood/Materials/Door_Wood_AlbedoTransparency.mat + artifactKey: Guid(e28d4c5056182d44b9122acc83ebedc0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Models/Additional Models/Props/Building_Props/Door_Wood/Materials/Door_Wood_AlbedoTransparency.mat using Guid(e28d4c5056182d44b9122acc83ebedc0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '62e4be76b1f81d8c93f7d02a3dfebcee') in 0.034235 seconds +======================================================================== +Received Import Request. + Time since last request: 27.940686 seconds. + path: Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2 + artifactKey: Guid(3b7b596fccd2e4341a3ec983061ae3d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2 using Guid(3b7b596fccd2e4341a3ec983061ae3d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f1a89b740d4f511859f82453443a3b75') in 0.006940 seconds +======================================================================== +Received Import Request. + Time since last request: 0.034805 seconds. + path: Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall.mat + artifactKey: Guid(af4f691e326ee524386578cd356f2fa8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall.mat using Guid(af4f691e326ee524386578cd356f2fa8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0ae6c22bea346e17e5187487c049eb78') in 0.044040 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000032 seconds. + path: Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones_Roughness.png + artifactKey: Guid(687dab5c1c2114c46a562c754df39c67) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones_Roughness.png using Guid(687dab5c1c2114c46a562c754df39c67) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '402a28002bb995cfbadeabb2d4db7a5d') in 0.024626 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000050 seconds. + path: Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones2_Normal-OGL.png + artifactKey: Guid(b3a6e40d7b2709c48809a44b9d726fe9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones2_Normal-OGL.png using Guid(b3a6e40d7b2709c48809a44b9d726fe9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cc3e983c95c68d913672c8cd92ed7b84') in 0.030722 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000045 seconds. + path: Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_DoorFrameWall_Normal-OGL.png + artifactKey: Guid(b1c5584455880e34c87a45969caa6362) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_DoorFrameWall_Normal-OGL.png using Guid(b1c5584455880e34c87a45969caa6362) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a7d67377dc11095502d3da7431e8df00') in 0.027965 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000032 seconds. + path: Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/Stones2.mat + artifactKey: Guid(223d2e4d1f822ad4f9cd2e71f5c13b64) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/Stones2.mat using Guid(223d2e4d1f822ad4f9cd2e71f5c13b64) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b706fed28883fdbdbd97f8c5c46428d1') in 0.044900 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000034 seconds. + path: Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones_Normal-OGL.png + artifactKey: Guid(b280ec957c609204db6b54959f086d93) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones_Normal-OGL.png using Guid(b280ec957c609204db6b54959f086d93) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c1d4e882d99de7ff261c088107c632f9') in 0.032960 seconds +======================================================================== +Received Import Request. + Time since last request: 2.041334 seconds. + path: Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/_DoorFrame_Prefab + artifactKey: Guid(87a7a0cd51b9e1b4193601f39def562e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/_DoorFrame_Prefab using Guid(87a7a0cd51b9e1b4193601f39def562e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b8f97ba2add0b1329b9914b35047190d') in 0.007743 seconds +======================================================================== +Received Import Request. + Time since last request: 11.117925 seconds. + path: Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/_DoorFrame.dtu + artifactKey: Guid(0b825cbf410d6d44da7340d69de42236) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/_DoorFrame.dtu using Guid(0b825cbf410d6d44da7340d69de42236) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '17046bd0f080e7a3c43ac9945fa69fd6') in 0.023536 seconds +======================================================================== +Received Import Request. + Time since last request: 8.255831 seconds. + path: Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Material + artifactKey: Guid(3b7b596fccd2e4341a3ec983061ae3d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Material using Guid(3b7b596fccd2e4341a3ec983061ae3d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '280f94234a19476eda5607063e670101') in 0.006434 seconds +======================================================================== +Received Import Request. + Time since last request: 3.451245 seconds. + path: Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials + artifactKey: Guid(3b7b596fccd2e4341a3ec983061ae3d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/Materials using Guid(3b7b596fccd2e4341a3ec983061ae3d5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4c0cc6356798b6e53b671305237f6ba4') in 0.006263 seconds +======================================================================== +Received Import Request. + Time since last request: 49.682322 seconds. + path: Assets/Daz3D/Architecture/Doors/DoorEntrance + artifactKey: Guid(c0a76bcad010a2c43b39119844f1ec97) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Doors/DoorEntrance using Guid(c0a76bcad010a2c43b39119844f1ec97) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6a9ac21f4131b84a6f054303991a0561') in 0.007094 seconds +======================================================================== +Received Import Request. + Time since last request: 0.046462 seconds. + path: Assets/Daz3D/Architecture/Doors/DoorEntrance/DoorEntrance_Prefab.prefab + artifactKey: Guid(2b43ec34e1a155b4d9112327de4b87b4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Doors/DoorEntrance/DoorEntrance_Prefab.prefab using Guid(2b43ec34e1a155b4d9112327de4b87b4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f4a4728f6d2a52fbabcb888660bb3c24') in 0.199378 seconds +======================================================================== +Received Import Request. + Time since last request: 4.730221 seconds. + path: Assets/Daz3D/Architecture/Doors/DoorRoom + artifactKey: Guid(6db07e4898059c945aabe45e0561dce9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Doors/DoorRoom using Guid(6db07e4898059c945aabe45e0561dce9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5cc056cc822b466ef6eececca9367fe7') in 0.006762 seconds +======================================================================== +Received Import Request. + Time since last request: 2.227589 seconds. + path: Assets/Daz3D/Architecture/Doors/DoorStore + artifactKey: Guid(0439509002f0d544a81556e4a7d59134) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Doors/DoorStore using Guid(0439509002f0d544a81556e4a7d59134) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f6024d11fcf70a797ecbd4b9ba713033') in 0.006746 seconds +======================================================================== +Received Import Request. + Time since last request: 0.047277 seconds. + path: Assets/Daz3D/Architecture/Doors/DoorStore/SmallDoorFrame.prefab + artifactKey: Guid(19ddcc07504ee844ab71aa7b0214a1ac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Doors/DoorStore/SmallDoorFrame.prefab using Guid(19ddcc07504ee844ab71aa7b0214a1ac) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1e6f76ef2c99efeada12fa094124568c') in 0.118271 seconds +======================================================================== +Received Import Request. + Time since last request: 33.550662 seconds. + path: Assets/Prefabs/RckPlayer Variant.prefab + artifactKey: Guid(e4295a978fc0c534bb2cc9cc7ed6d57b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/RckPlayer Variant.prefab using Guid(e4295a978fc0c534bb2cc9cc7ed6d57b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '777581b2ed607d3904afcf2f859cbbcf') in 1.502624 seconds +======================================================================== +Received Import Request. + Time since last request: 42.965727 seconds. + path: Assets/Daz3D/Music/Exterior + artifactKey: Guid(d54512d14d904e94c876969e49748c4f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Music/Exterior using Guid(d54512d14d904e94c876969e49748c4f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '39bafdcccc7b280a7ba69170dbf7a2f7') in 0.006858 seconds +======================================================================== +Received Import Request. + Time since last request: 0.051294 seconds. + path: Assets/Daz3D/Music/Exterior/Desert.ogg + artifactKey: Guid(2a47314a8364dc44d841b58ce1575155) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Music/Exterior/Desert.ogg using Guid(2a47314a8364dc44d841b58ce1575155) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd92b116899c2e25b5a6a86d781505f34') in 0.020744 seconds +======================================================================== +Received Import Request. + Time since last request: 1.661825 seconds. + path: Assets/Daz3D/Music/Special + artifactKey: Guid(a4104a875cd7ff14c9aff7d6eda886c4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Music/Special using Guid(a4104a875cd7ff14c9aff7d6eda886c4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ac4026a34c34759546d9c000eb58c96a') in 0.006644 seconds +======================================================================== +Received Import Request. + Time since last request: 0.379595 seconds. + path: Assets/Daz3D/Music/Special/Intro.ogg + artifactKey: Guid(faf90845ff6a94147bf3613ecd446575) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Music/Special/Intro.ogg using Guid(faf90845ff6a94147bf3613ecd446575) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7ee41d31ae7d25cf3da9e24937d4c495') in 0.011601 seconds +======================================================================== +Received Import Request. + Time since last request: 0.802274 seconds. + path: Assets/Daz3D/Music/Tavern + artifactKey: Guid(dfcbfefac22f92c468253982707f9b15) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Music/Tavern using Guid(dfcbfefac22f92c468253982707f9b15) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5219630545606fa2bb12d67e8a008592') in 0.007260 seconds +======================================================================== +Received Import Request. + Time since last request: 12.743423 seconds. + path: Assets/Daz3D/SoundEffects/MISC + artifactKey: Guid(0483ee467725f674ebe1055d80ae2d82) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/SoundEffects/MISC using Guid(0483ee467725f674ebe1055d80ae2d82) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '071cac90836d15eb40096d3efd905126') in 0.006440 seconds +======================================================================== +Received Import Request. + Time since last request: 0.051309 seconds. + path: Assets/Daz3D/SoundEffects/MISC/Alchemy.ogg + artifactKey: Guid(03dd6c6b6f009bc4fab62ccca8788c86) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/SoundEffects/MISC/Alchemy.ogg using Guid(03dd6c6b6f009bc4fab62ccca8788c86) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b2b43591976c43b368c26e2c6758f69e') in 0.016641 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000035 seconds. + path: Assets/Daz3D/SoundEffects/MISC/DropSmallMetal.ogg + artifactKey: Guid(e6487f3842241124c829cf0bbec09d29) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/SoundEffects/MISC/DropSmallMetal.ogg using Guid(e6487f3842241124c829cf0bbec09d29) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ec7018e3413c38ef1e25fca4037ddfd7') in 0.018339 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000053 seconds. + path: Assets/Daz3D/SoundEffects/MISC/PickingUpWoodItem.ogg + artifactKey: Guid(1e153e5e411c8474c8bf52506cb190ec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/SoundEffects/MISC/PickingUpWoodItem.ogg using Guid(1e153e5e411c8474c8bf52506cb190ec) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '80ca4c3cf4d275615bb26ee45144b7cb') in 0.017708 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000031 seconds. + path: Assets/Daz3D/SoundEffects/MISC/BookPickUp.ogg + artifactKey: Guid(b41620d1d89b5424499839edc7eaa7a0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/SoundEffects/MISC/BookPickUp.ogg using Guid(b41620d1d89b5424499839edc7eaa7a0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '58750f2a53f7fc69449a49d507fa7c08') in 0.016851 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000030 seconds. + path: Assets/Daz3D/SoundEffects/MISC/SmallMetalInInventory.ogg + artifactKey: Guid(198f36b3bab9b1240a862f964f6a25cd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/SoundEffects/MISC/SmallMetalInInventory.ogg using Guid(198f36b3bab9b1240a862f964f6a25cd) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b9965e46e277309081ece71b70627f16') in 0.017678 seconds +======================================================================== +Received Import Request. + Time since last request: 4.644909 seconds. + path: Assets/Daz3D/SoundEffects/Furniture + artifactKey: Guid(1a47a8eda98b9ba44b45e30c45e676fb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/SoundEffects/Furniture using Guid(1a47a8eda98b9ba44b45e30c45e676fb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dfc98a76636441021000a0c9d40be4ea') in 0.006823 seconds +======================================================================== +Received Import Request. + Time since last request: 0.672670 seconds. + path: Assets/Daz3D/SoundEffects/Furniture/CabinetClose.ogg + artifactKey: Guid(21f39119de2c27f4b89d3456d7920190) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/SoundEffects/Furniture/CabinetClose.ogg using Guid(21f39119de2c27f4b89d3456d7920190) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dcf5c8722ffca24b85c112bc2486267b') in 0.017425 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000035 seconds. + path: Assets/Daz3D/SoundEffects/Furniture/ChestLock.ogg + artifactKey: Guid(1fb69bbb4b5ba3f45a2315d609cd7695) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/SoundEffects/Furniture/ChestLock.ogg using Guid(1fb69bbb4b5ba3f45a2315d609cd7695) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '33ba1c63845dc6baf5581f75afe930e5') in 0.024655 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000033 seconds. + path: Assets/Daz3D/SoundEffects/Furniture/ChestOpen.ogg + artifactKey: Guid(8bef81a17f5e1d44cbc1683f47b02735) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/SoundEffects/Furniture/ChestOpen.ogg using Guid(8bef81a17f5e1d44cbc1683f47b02735) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '48b8490ef5f6f4fd687b531bc349056c') in 0.018729 seconds +======================================================================== +Received Import Request. + Time since last request: 5.185364 seconds. + path: Assets/Daz3D/SoundEffects/UpstairsDoor + artifactKey: Guid(8db8d107d9a544a47bf8cb7c8486024b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/SoundEffects/UpstairsDoor using Guid(8db8d107d9a544a47bf8cb7c8486024b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '18f71835ca295383dbac616f688444f9') in 0.006590 seconds +======================================================================== +Received Import Request. + Time since last request: 0.321291 seconds. + path: Assets/Daz3D/SoundEffects/UpstairsDoor/DoorClose.ogg + artifactKey: Guid(8a53e4edc7b9c1649b3d2b85e1b281df) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/SoundEffects/UpstairsDoor/DoorClose.ogg using Guid(8a53e4edc7b9c1649b3d2b85e1b281df) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '04b8920ab91b6864873b1aa8aec353aa') in 0.022266 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000031 seconds. + path: Assets/Daz3D/SoundEffects/UpstairsDoor/DoorUnlocking.ogg + artifactKey: Guid(0ccc409b1966fdc448753d5185ba27d6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/SoundEffects/UpstairsDoor/DoorUnlocking.ogg using Guid(0ccc409b1966fdc448753d5185ba27d6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3e32703577c532fca0c06abbd562146c') in 0.012947 seconds diff --git a/Logs/AssetImportWorker3-prev.log b/Logs/AssetImportWorker3-prev.log new file mode 100644 index 0000000000..a55b927a72 --- /dev/null +++ b/Logs/AssetImportWorker3-prev.log @@ -0,0 +1,3169 @@ +Using pre-set license +Built from '2021.3/staging' branch; Version is '2021.3.15f1 (e8e88683f834) revision 15263878'; Using compiler version '192829333'; Build Type 'Release' +OS: 'Windows 10 (10.0.19045) 64bit Professional' Language: 'en' Physical Memory: 261823 MB +BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1 + +COMMAND LINE ARGUMENTS: +C:\Program Files\Unity\Hub\Editor\2021.3.15f1\Editor\Unity.exe +-adb2 +-batchMode +-noUpm +-name +AssetImportWorker3 +-projectPath +C:/Work/Firstborn +-logFile +Logs/AssetImportWorker3.log +-srvPort +61352 +Successfully changed project path to: C:/Work/Firstborn +C:/Work/Firstborn +[UnityMemory] Configuration Parameters - Can be set up in boot.config + "memorysetup-bucket-allocator-granularity=16" + "memorysetup-bucket-allocator-bucket-count=8" + "memorysetup-bucket-allocator-block-size=33554432" + "memorysetup-bucket-allocator-block-count=8" + "memorysetup-main-allocator-block-size=16777216" + "memorysetup-thread-allocator-block-size=16777216" + "memorysetup-gfx-main-allocator-block-size=16777216" + "memorysetup-gfx-thread-allocator-block-size=16777216" + "memorysetup-cache-allocator-block-size=4194304" + "memorysetup-typetree-allocator-block-size=2097152" + "memorysetup-profiler-bucket-allocator-granularity=16" + "memorysetup-profiler-bucket-allocator-bucket-count=8" + "memorysetup-profiler-bucket-allocator-block-size=33554432" + "memorysetup-profiler-bucket-allocator-block-count=8" + "memorysetup-profiler-allocator-block-size=16777216" + "memorysetup-profiler-editor-allocator-block-size=1048576" + "memorysetup-temp-allocator-size-main=16777216" + "memorysetup-job-temp-allocator-block-size=2097152" + "memorysetup-job-temp-allocator-block-size-background=1048576" + "memorysetup-job-temp-allocator-reduction-small-platforms=262144" + "memorysetup-temp-allocator-size-background-worker=32768" + "memorysetup-temp-allocator-size-job-worker=262144" + "memorysetup-temp-allocator-size-preload-manager=33554432" + "memorysetup-temp-allocator-size-nav-mesh-worker=65536" + "memorysetup-temp-allocator-size-audio-worker=65536" + "memorysetup-temp-allocator-size-cloud-worker=32768" + "memorysetup-temp-allocator-size-gi-baking-worker=262144" + "memorysetup-temp-allocator-size-gfx=262144" +Player connection [22804] Host "[IP] 192.168.1.140 [Port] 0 [Flags] 2 [Guid] 617992537 [EditorId] 617992537 [Version] 1048832 [Id] WindowsEditor(7,THE-BEAST) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... + +Player connection [22804] Host "[IP] 192.168.1.140 [Port] 0 [Flags] 2 [Guid] 617992537 [EditorId] 617992537 [Version] 1048832 [Id] WindowsEditor(7,THE-BEAST) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... + +Refreshing native plugins compatible for Editor in 431.58 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Initialize engine version: 2021.3.15f1 (e8e88683f834) +[Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/Resources/UnitySubsystems +[Subsystems] Discovering subsystems at path C:/Work/Firstborn/Assets +GfxDevice: creating device client; threaded=0; jobified=0 +Direct3D: + Version: Direct3D 11.0 [level 11.1] + Renderer: NVIDIA GeForce RTX 3060 (ID=0x2504) + Vendor: NVIDIA + VRAM: 12129 MB + Driver: 31.0.15.2756 +Initialize mono +Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/Managed' +Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' +Mono config path = 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/MonoBleedingEdge/etc' +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56756 +Begin MonoManager ReloadAssembly +Registering precompiled unity dll's ... +Register platform support module: C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll +Registered in 0.009042 seconds. +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 409.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 1.161 seconds +Domain Reload Profiling: + ReloadAssembly (1161ms) + BeginReloadAssembly (89ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (0ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (1ms) + EndReloadAssembly (925ms) + LoadAssemblies (86ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (139ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (34ms) + SetupLoadedEditorAssemblies (681ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (409ms) + BeforeProcessingInitializeOnLoad (1ms) + ProcessInitializeOnLoadAttributes (194ms) + ProcessInitializeOnLoadMethodAttributes (67ms) + AfterProcessingInitializeOnLoad (0ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (0ms) +Platform modules already initialized, skipping +Registering precompiled user dll's ... +Registered in 0.012270 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 437.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Mono: successfully reloaded assembly +- Completed reload, in 3.739 seconds +Domain Reload Profiling: + ReloadAssembly (3740ms) + BeginReloadAssembly (145ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + EndReloadAssembly (3434ms) + LoadAssemblies (128ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (482ms) + ReleaseScriptCaches (2ms) + RebuildScriptCaches (134ms) + SetupLoadedEditorAssemblies (2620ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (438ms) + BeforeProcessingInitializeOnLoad (181ms) + ProcessInitializeOnLoadAttributes (977ms) + ProcessInitializeOnLoadMethodAttributes (1008ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Platform modules already initialized, skipping +======================================================================== +Worker process is ready to serve import requests +Launched and connected shader compiler UnityShaderCompiler.exe after 0.07 seconds +Refreshing native plugins compatible for Editor in 7.84 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7673 Unused Serialized files (Serialized files now loaded: 0) +Unloading 3615 unused Assets / (8.8 MB). Loaded Objects now: 7798. +Memory consumption went from 433.2 MB to 424.4 MB. +Total: 20.287300 ms (FindLiveObjects: 1.470500 ms CreateObjectMapping: 2.612100 ms MarkObjects: 8.760600 ms DeleteObjects: 7.442100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 322185.978217 seconds. + path: Assets/RPG Creation Kit/Scripts/Alchemy/Item In Inventory/UI/Prefabs/AmmoItem_InPlayerInventoryUI.prefab + artifactKey: Guid(358a3da4cf413ad4ba22372018916c89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/Alchemy/Item In Inventory/UI/Prefabs/AmmoItem_InPlayerInventoryUI.prefab using Guid(358a3da4cf413ad4ba22372018916c89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b49e11c2c75a0432c34b8493d71f9f17') in 0.168132 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000036 seconds. + path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00B.prefab + artifactKey: Guid(05aebcc5b6afe314c8efe7d98eaa3abf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00B.prefab using Guid(05aebcc5b6afe314c8efe7d98eaa3abf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) +UnityEditor.GameObjectInspector:GetPreviewData () +UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) +UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) +UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) + +[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] + + -> (artifact id: '954bde67274e3c3e41bf18dc7beb8b52') in 1.190740 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000046 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/SK_Karckmahre.FBX + artifactKey: Guid(bbc4ce9e9c0060240a25fcd80d1dbc1e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/SK_Karckmahre.FBX using Guid(bbc4ce9e9c0060240a25fcd80d1dbc1e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0c2fd72f3e0fc407d5b351cabfc4d1a3') in 4.361844 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000048 seconds. + path: Assets/RPG Creation Kit/Scripts/LoadingScreen/LoadingScreensImages/Karckmahre.jpg + artifactKey: Guid(d6bb7a78dded32f439a1e9c9dc37e9c0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/LoadingScreen/LoadingScreensImages/Karckmahre.jpg using Guid(d6bb7a78dded32f439a1e9c9dc37e9c0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'de844c27cd18f40ded8f2166f0e5b0d7') in 0.242431 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000048 seconds. + path: Assets/Textures/UI/Map Markers/Karck Icon.png + artifactKey: Guid(f9f8c3c961e2e8845805c6267f09e40b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Textures/UI/Map Markers/Karck Icon.png using Guid(f9f8c3c961e2e8845805c6267f09e40b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '833d5129584c1b1e59e9d5ec6d92533e') in 0.049850 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000061 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Prefabs/Karckmahre_Tint2.prefab + artifactKey: Guid(eee386ca26fb10d4bb9868d71c98bc87) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Prefabs/Karckmahre_Tint2.prefab using Guid(eee386ca26fb10d4bb9868d71c98bc87) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) +UnityEditor.GameObjectInspector:GetPreviewData () +UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) +UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) +UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) + +[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] + + -> (artifact id: 'c699001b130c7b24ca8100be24b3f802') in 0.664785 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000045 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@ClawsAttackLeft_RM.FBX + artifactKey: Guid(1cf6d2b87a8eb1847a0e97a718c0817b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@ClawsAttackLeft_RM.FBX using Guid(1cf6d2b87a8eb1847a0e97a718c0817b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '94fd96a730568d2833dc5283784c62a6') in 0.016873 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000055 seconds. + path: Assets/Prefabs/RckPlayer Variant.prefab + artifactKey: Guid(e4295a978fc0c534bb2cc9cc7ed6d57b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/RckPlayer Variant.prefab using Guid(e4295a978fc0c534bb2cc9cc7ed6d57b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bd5785a34412895da1424ece25494e8b') in 2.230310 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000044 seconds. + path: Assets/RPG Creation Kit/Scripts/Alchemy/Item In Inventory/UI/Prefabs/ArmorItem_InPlayerInventoryUI.prefab + artifactKey: Guid(06bb17005568a4f4e8d3aa080e1b66c8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/Alchemy/Item In Inventory/UI/Prefabs/ArmorItem_InPlayerInventoryUI.prefab using Guid(06bb17005568a4f4e8d3aa080e1b66c8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'eaf31e2086080ab33cc14e39f5ba8a78') in 0.033574 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000054 seconds. + path: Assets/Daz3D/Races/Outfits/Canyon Guards/KarckHelm.obj + artifactKey: Guid(265beda054d65c3498cf447d8bc112b2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Outfits/Canyon Guards/KarckHelm.obj using Guid(265beda054d65c3498cf447d8bc112b2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f280dfa9bcb20d70f508d21a3cb90051') in 0.092045 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000041 seconds. + path: Assets/RPG Creation Kit/Scripts/Alchemy/Item In Inventory/UI/Prefabs/ConsumableItem_InPlayerInventoryUI.prefab + artifactKey: Guid(4aac6266574e98b43975836ac924b896) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/Alchemy/Item In Inventory/UI/Prefabs/ConsumableItem_InPlayerInventoryUI.prefab using Guid(4aac6266574e98b43975836ac924b896) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0de1a1fe3e9e9a92131e3e886a648189') in 0.036642 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000037 seconds. + path: Assets/RPG Creation Kit/Scripts/AI/Editor/RckAI_InspectorImage.png + artifactKey: Guid(19dd1a0b790339e40b3f3728476cb5f9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/AI/Editor/RckAI_InspectorImage.png using Guid(19dd1a0b790339e40b3f3728476cb5f9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c43ca56dde74bbc69eb1b0ddb0c3bde9') in 0.023993 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000043 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@IdleBreathe.FBX + artifactKey: Guid(4eead90f1b11286469de01ef3434090d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@IdleBreathe.FBX using Guid(4eead90f1b11286469de01ef3434090d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '17a4a15e5a88a7f687863bee50666708') in 0.018354 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000058 seconds. + path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00G.prefab + artifactKey: Guid(d2664322158ab6240b1da319696c9774) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00G.prefab using Guid(d2664322158ab6240b1da319696c9774) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd8abecfd55141412e6e25c83fdaca197') in 0.242521 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000038 seconds. + path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00E.prefab + artifactKey: Guid(a780ec0f63d4ba941b1426a554f5139a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00E.prefab using Guid(a780ec0f63d4ba941b1426a554f5139a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) +UnityEditor.GameObjectInspector:GetPreviewData () +UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) +UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) +UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) + +[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] + + -> (artifact id: 'e1734b0ae8431a8a0d57026fc9aceb67') in 0.788735 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000050 seconds. + path: Assets/RPG Creation Kit/Scripts/Player/RckPlayer.prefab + artifactKey: Guid(7d773329c5729034d88226ce86f10455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/Player/RckPlayer.prefab using Guid(7d773329c5729034d88226ce86f10455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dc4ff0e67564ec3e5d409265ea60ce63') in 0.949222 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000060 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Claws2HitComboAttack.FBX + artifactKey: Guid(660f345e5c4f0804a8409496b4c5627a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Claws2HitComboAttack.FBX using Guid(660f345e5c4f0804a8409496b4c5627a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '47dc06c7cdc9bb4f132ee49bcbbd89ee') in 0.017518 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000133 seconds. + path: Assets/RPG Creation Kit/Scripts/Inventory System/Item In Inventory/UI/Prefabs/BookItem_InPlayerInventoryUI.prefab + artifactKey: Guid(3c2c16621da37fe489504d454904f699) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/Inventory System/Item In Inventory/UI/Prefabs/BookItem_InPlayerInventoryUI.prefab using Guid(3c2c16621da37fe489504d454904f699) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5e1b6bc65a3d4d070bd2d957ffa1363a') in 0.032737 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000031 seconds. + path: Assets/RPG Creation Kit/Scripts/Alchemy/Item In Inventory/UI/Prefabs/KeyItem_InPlayerInventoryUI.prefab + artifactKey: Guid(ca9af449d50a04644abbb93df335c7f0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/Alchemy/Item In Inventory/UI/Prefabs/KeyItem_InPlayerInventoryUI.prefab using Guid(ca9af449d50a04644abbb93df335c7f0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '18248555ef79222cc2c9f07163428163') in 0.031256 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000037 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@ClawsAttackRight.FBX + artifactKey: Guid(9a2c8cfe554f5cc4fbf14ba7ab7ea54b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@ClawsAttackRight.FBX using Guid(9a2c8cfe554f5cc4fbf14ba7ab7ea54b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '796e155d8a4b51c3feb32769234aa600') in 0.016828 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000039 seconds. + path: Assets/RPG Creation Kit/Scripts/Alchemy/Item In Inventory/UI/Prefabs/BookItem_InPlayerInventoryUI.prefab + artifactKey: Guid(6fc0cdee0e1f3d342b506e184e2290d9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/Alchemy/Item In Inventory/UI/Prefabs/BookItem_InPlayerInventoryUI.prefab using Guid(6fc0cdee0e1f3d342b506e184e2290d9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3178dcddb33ef124aaea35433ea24b22') in 0.033987 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000037 seconds. + path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Materials/M_Karckmahre_Tint1.mat + artifactKey: Guid(f19f594a04547a3418345f7d7e081c12) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Materials/M_Karckmahre_Tint1.mat using Guid(f19f594a04547a3418345f7d7e081c12) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8dd0c327c4e2d87756d63b0d34d8e23a') in 0.092910 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000038 seconds. + path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00C.prefab + artifactKey: Guid(7eae60da6f8de9f458a2a21c11c66d8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00C.prefab using Guid(7eae60da6f8de9f458a2a21c11c66d8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) +UnityEditor.GameObjectInspector:GetPreviewData () +UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) +UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) +UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) + +[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] + + -> (artifact id: 'c44dc1d67ce29616257941dce4a2b638') in 0.801941 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000044 seconds. + path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00F.prefab + artifactKey: Guid(8832f99e055a1bb48aac498bd55d8981) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00F.prefab using Guid(8832f99e055a1bb48aac498bd55d8981) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) +UnityEditor.GameObjectInspector:GetPreviewData () +UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) +UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) +UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) + +[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] + + -> (artifact id: '2e655edb4528d9bb52f1cd6d7819ba72') in 0.834365 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000052 seconds. + path: Assets/Daz3D/Consumables/[Consumable] Karckmahr Juice.asset + artifactKey: Guid(e54955d221b99644a9cff38c07e3b254) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Consumables/[Consumable] Karckmahr Juice.asset using Guid(e54955d221b99644a9cff38c07e3b254) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '65f9a069f36b9795a0b28d0916a8b430') in 0.024135 seconds +======================================================================== +Received Import Request. + Time since last request: 2261.540816 seconds. + path: Assets/Prefabs/RckPlayer Variant.prefab + artifactKey: Guid(e4295a978fc0c534bb2cc9cc7ed6d57b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Prefabs/RckPlayer Variant.prefab using Guid(e4295a978fc0c534bb2cc9cc7ed6d57b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd91811625cd99f5a1d9322d05695466f') in 2.205194 seconds +======================================================================== +Received Import Request. + Time since last request: 139.035696 seconds. + path: Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Curch Village/MotherNebivia001_DefaultDialogue.asset + artifactKey: Guid(ce9d248fdf8d12648bbf7db1011bb65b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Curch Village/MotherNebivia001_DefaultDialogue.asset using Guid(ce9d248fdf8d12648bbf7db1011bb65b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8911ab17828cb90e996e50bde22047eb') in 0.034738 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000044 seconds. + path: Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/Hes My Son/DIALOGUE_FlorenceGainsDefault001.asset + artifactKey: Guid(689bd307468562a428e4f7db148492b7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/Hes My Son/DIALOGUE_FlorenceGainsDefault001.asset using Guid(689bd307468562a428e4f7db148492b7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '28968bb1bf4e3a66fb6e264a20909301') in 0.070653 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000043 seconds. + path: Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/FarmOutsideCity/Yeneas_FirstMetDialogue.asset + artifactKey: Guid(57f02b4bd6e6d4249bd212ee3893b1c2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/FarmOutsideCity/Yeneas_FirstMetDialogue.asset using Guid(57f02b4bd6e6d4249bd212ee3893b1c2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '17617ba6a7c6b410aa5515be7bf5dda6') in 0.020125 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000046 seconds. + path: Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Curch Village/SisterRodina_DefaultDialogue.asset + artifactKey: Guid(2c6324ca97a9e144b890cb06a9b961e0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Curch Village/SisterRodina_DefaultDialogue.asset using Guid(2c6324ca97a9e144b890cb06a9b961e0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '22903e207456630921eca27fc424dccb') in 0.035019 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000033 seconds. + path: Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/MQ02_The Red Shade/[DIALOGUE] MackRSDialogue001.asset + artifactKey: Guid(92447663aab60894580cc40beee99f61) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/MQ02_The Red Shade/[DIALOGUE] MackRSDialogue001.asset using Guid(92447663aab60894580cc40beee99f61) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8a30beba8e6fd0e2fa42c2fa5d7d90ef') in 0.322518 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.012800 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.239 seconds +Domain Reload Profiling: + ReloadAssembly (2240ms) + BeginReloadAssembly (195ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (78ms) + EndReloadAssembly (1913ms) + LoadAssemblies (113ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (364ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (68ms) + SetupLoadedEditorAssemblies (1136ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (120ms) + ProcessInitializeOnLoadAttributes (668ms) + ProcessInitializeOnLoadMethodAttributes (320ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (25ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 11.88 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 104 unused Assets / (4.9 MB). Loaded Objects now: 7927. +Memory consumption went from 457.8 MB to 452.9 MB. +Total: 7.510700 ms (FindLiveObjects: 0.747000 ms CreateObjectMapping: 0.727300 ms MarkObjects: 4.399100 ms DeleteObjects: 1.636400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 112.916970 seconds. + path: Assets/Daz3D/Animations/Female/FBX/Animations@Inventory.fbx + artifactKey: Guid(68971b63b083a3745ae45fc1e394dd47) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Animations/Female/FBX/Animations@Inventory.fbx using Guid(68971b63b083a3745ae45fc1e394dd47) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '614c8c2c4983f7cca4930b8d1cdac2d6') in 0.096205 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000046 seconds. + path: Assets/RPG Creation Kit/Sounds/Other Sound Effects/RPG Sounds Pack 1/addininventory.wav + artifactKey: Guid(8a3f2454307d96244b692f146c3d360a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Sounds/Other Sound Effects/RPG Sounds Pack 1/addininventory.wav using Guid(8a3f2454307d96244b692f146c3d360a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b7b52424aae8a0350a7affddbd72766a') in 0.066539 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000030 seconds. + path: Assets/Daz3D/SoundEffects/MISC/AddToInventory.ogg + artifactKey: Guid(b6bcd3919f4832b41b3c1b8c3e82e636) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/SoundEffects/MISC/AddToInventory.ogg using Guid(b6bcd3919f4832b41b3c1b8c3e82e636) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '21e7cfa14199c6ebbc2575db9a920a34') in 0.020534 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.013858 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.30 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.984 seconds +Domain Reload Profiling: + ReloadAssembly (1985ms) + BeginReloadAssembly (185ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (71ms) + EndReloadAssembly (1674ms) + LoadAssemblies (109ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (363ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (66ms) + SetupLoadedEditorAssemblies (1036ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (122ms) + ProcessInitializeOnLoadAttributes (648ms) + ProcessInitializeOnLoadMethodAttributes (237ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (21ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 10.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 7944. +Memory consumption went from 457.7 MB to 452.7 MB. +Total: 7.112700 ms (FindLiveObjects: 0.864400 ms CreateObjectMapping: 0.657700 ms MarkObjects: 4.111400 ms DeleteObjects: 1.477200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 886.400495 seconds. + path: Assets/RPG Creation Kit/Demos/__RckDemo__/Quests/Southern Village/Every Dead Man's Nightmare/- [QUEST] Every Dead Man's Nightmare.asset + artifactKey: Guid(23a1f8fcb94ab7b45b0c3e3a411da358) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Quests/Southern Village/Every Dead Man's Nightmare/- [QUEST] Every Dead Man's Nightmare.asset using Guid(23a1f8fcb94ab7b45b0c3e3a411da358) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'df9981880a321503164e8b171790b592') in 0.041486 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.013010 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.55 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.029 seconds +Domain Reload Profiling: + ReloadAssembly (2029ms) + BeginReloadAssembly (183ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (67ms) + EndReloadAssembly (1717ms) + LoadAssemblies (128ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (377ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (69ms) + SetupLoadedEditorAssemblies (1039ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (124ms) + ProcessInitializeOnLoadAttributes (647ms) + ProcessInitializeOnLoadMethodAttributes (240ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 12.23 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 7959. +Memory consumption went from 457.7 MB to 452.7 MB. +Total: 8.840400 ms (FindLiveObjects: 0.787500 ms CreateObjectMapping: 0.871400 ms MarkObjects: 5.355900 ms DeleteObjects: 1.822700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010464 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.95 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.988 seconds +Domain Reload Profiling: + ReloadAssembly (2989ms) + BeginReloadAssembly (313ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (77ms) + EndReloadAssembly (2505ms) + LoadAssemblies (242ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (780ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (79ms) + SetupLoadedEditorAssemblies (1266ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (129ms) + ProcessInitializeOnLoadAttributes (748ms) + ProcessInitializeOnLoadMethodAttributes (355ms) + AfterProcessingInitializeOnLoad (13ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 12.63 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 7974. +Memory consumption went from 457.7 MB to 452.8 MB. +Total: 10.981100 ms (FindLiveObjects: 0.812800 ms CreateObjectMapping: 1.160200 ms MarkObjects: 6.850500 ms DeleteObjects: 2.156000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.014046 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 7.20 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.228 seconds +Domain Reload Profiling: + ReloadAssembly (2229ms) + BeginReloadAssembly (177ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (70ms) + EndReloadAssembly (1937ms) + LoadAssemblies (117ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (386ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (77ms) + SetupLoadedEditorAssemblies (1230ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (7ms) + BeforeProcessingInitializeOnLoad (138ms) + ProcessInitializeOnLoadAttributes (775ms) + ProcessInitializeOnLoadMethodAttributes (283ms) + AfterProcessingInitializeOnLoad (12ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 14.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 7989. +Memory consumption went from 457.7 MB to 452.8 MB. +Total: 14.536000 ms (FindLiveObjects: 1.299700 ms CreateObjectMapping: 1.216000 ms MarkObjects: 8.475200 ms DeleteObjects: 3.543800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 25028.767493 seconds. + path: Assets/Textures/UI/Map Markers/Blue.png + artifactKey: Guid(73d9d75085c245a41817e8da2b2a7734) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Textures/UI/Map Markers/Blue.png using Guid(73d9d75085c245a41817e8da2b2a7734) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ea00b1757777b93c20b3718bea48b5f4') in 0.112691 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000048 seconds. + path: Assets/Textures/UI/Map Markers/NPC.png + artifactKey: Guid(66ecd96881db6d94ca602a89c55b23c1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Textures/UI/Map Markers/NPC.png using Guid(66ecd96881db6d94ca602a89c55b23c1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6c324abd5a1fa3fb937b82bef11352a4') in 0.030262 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000046 seconds. + path: Assets/Textures/UI/Map Markers/Temple.png + artifactKey: Guid(a50b8fc33f005964596e8862128954c4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Textures/UI/Map Markers/Temple.png using Guid(a50b8fc33f005964596e8862128954c4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '95316c2ae279b44f7089af29697b5f8f') in 0.078462 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000036 seconds. + path: Assets/Textures/UI/Map Markers/Medic.png + artifactKey: Guid(16c269a963aa75843b78b429a211d579) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Textures/UI/Map Markers/Medic.png using Guid(16c269a963aa75843b78b429a211d579) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1a56e8938f8ace0dd52671d386d2b08a') in 0.041504 seconds +======================================================================== +Received Import Request. + Time since last request: 701.361882 seconds. + path: Assets/New Terrain.asset + artifactKey: Guid(e53cccbc2aede6c439da3dc36bd21e68) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/New Terrain.asset using Guid(e53cccbc2aede6c439da3dc36bd21e68) Importer(815301076,1909f56bfc062723c751e8b465ee728b) The tree CaveRockCATA_A couldn't be instanced because the prefab contains no valid mesh renderer. +The tree CaveRockCATA_B couldn't be instanced because the prefab contains no valid mesh renderer. +The tree CaveRockCATA_D couldn't be instanced because the prefab contains no valid mesh renderer. + -> (artifact id: '79835cfca9d840b67a142bd1416d08d7') in 0.163939 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000042 seconds. + path: Assets/StreamingAssets + artifactKey: Guid(ea1f45de908cfc345a9f697aebd9e75c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/StreamingAssets using Guid(ea1f45de908cfc345a9f697aebd9e75c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '81c83ac67ffe4acbec778964b4edbc89') in 0.007302 seconds +======================================================================== +Received Import Request. + Time since last request: 0.347903 seconds. + path: Assets/Terrain 0 2.asset + artifactKey: Guid(9b1aa4a88bb898048ae8f2ca2ed9da85) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Terrain 0 2.asset using Guid(9b1aa4a88bb898048ae8f2ca2ed9da85) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1395d3fd8893887c57a7210862a17ab5') in 0.049240 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000030 seconds. + path: Assets/Terrain 0 3.asset + artifactKey: Guid(25826379c047f95408a50489117a7347) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Terrain 0 3.asset using Guid(25826379c047f95408a50489117a7347) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5670c9ac3bc4cf69efbbb70f9c091c9e') in 0.044971 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000036 seconds. + path: Assets/Terrain 1 3.asset + artifactKey: Guid(b6c40ed783d86d544a9837a91c26e634) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Terrain 1 3.asset using Guid(b6c40ed783d86d544a9837a91c26e634) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '67fec5f44d2d97b84192a6f81e3b0af1') in 0.288899 seconds +======================================================================== +Received Import Request. + Time since last request: 19.326278 seconds. + path: Assets/Textures/UI/compass1.png + artifactKey: Guid(7d487a0880f4571438943b23d7083d68) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Textures/UI/compass1.png using Guid(7d487a0880f4571438943b23d7083d68) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8f960aaa862184e1dfd5bc79a5eca719') in 0.015574 seconds +======================================================================== +Received Import Request. + Time since last request: 54.912664 seconds. + path: Assets/Textures/UI/CompassBackground.png + artifactKey: Guid(97e76b9fe6385944da85946031e74b0b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Textures/UI/CompassBackground.png using Guid(97e76b9fe6385944da85946031e74b0b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bfe85d3cd860f4478d4c35c93ad8f804') in 0.017173 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010258 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.57 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.873 seconds +Domain Reload Profiling: + ReloadAssembly (2874ms) + BeginReloadAssembly (313ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (79ms) + EndReloadAssembly (2390ms) + LoadAssemblies (243ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (767ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (78ms) + SetupLoadedEditorAssemblies (1230ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (134ms) + ProcessInitializeOnLoadAttributes (755ms) + ProcessInitializeOnLoadMethodAttributes (311ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 11.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8013. +Memory consumption went from 457.8 MB to 452.9 MB. +Total: 7.852500 ms (FindLiveObjects: 0.791900 ms CreateObjectMapping: 0.732800 ms MarkObjects: 4.655600 ms DeleteObjects: 1.670700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010463 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.25 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.911 seconds +Domain Reload Profiling: + ReloadAssembly (1912ms) + BeginReloadAssembly (175ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (67ms) + EndReloadAssembly (1627ms) + LoadAssemblies (113ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (358ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (62ms) + SetupLoadedEditorAssemblies (996ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (117ms) + ProcessInitializeOnLoadAttributes (629ms) + ProcessInitializeOnLoadMethodAttributes (223ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.19 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8028. +Memory consumption went from 457.8 MB to 452.9 MB. +Total: 11.376400 ms (FindLiveObjects: 0.749900 ms CreateObjectMapping: 0.831600 ms MarkObjects: 8.137200 ms DeleteObjects: 1.656000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010101 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.25 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.058 seconds +Domain Reload Profiling: + ReloadAssembly (2059ms) + BeginReloadAssembly (180ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (67ms) + EndReloadAssembly (1765ms) + LoadAssemblies (118ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (357ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (75ms) + SetupLoadedEditorAssemblies (1101ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (123ms) + ProcessInitializeOnLoadAttributes (688ms) + ProcessInitializeOnLoadMethodAttributes (263ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 10.29 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8043. +Memory consumption went from 457.8 MB to 452.9 MB. +Total: 8.776400 ms (FindLiveObjects: 0.810400 ms CreateObjectMapping: 0.804700 ms MarkObjects: 5.421500 ms DeleteObjects: 1.738300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.013555 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 6.96 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.156 seconds +Domain Reload Profiling: + ReloadAssembly (2156ms) + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (60ms) + EndReloadAssembly (1864ms) + LoadAssemblies (113ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (373ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (69ms) + SetupLoadedEditorAssemblies (1185ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (7ms) + BeforeProcessingInitializeOnLoad (137ms) + ProcessInitializeOnLoadAttributes (749ms) + ProcessInitializeOnLoadMethodAttributes (267ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 11.93 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8058. +Memory consumption went from 457.9 MB to 452.9 MB. +Total: 7.391500 ms (FindLiveObjects: 0.763000 ms CreateObjectMapping: 0.682600 ms MarkObjects: 4.303300 ms DeleteObjects: 1.641500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010691 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.39 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.944 seconds +Domain Reload Profiling: + ReloadAssembly (1945ms) + BeginReloadAssembly (183ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (67ms) + EndReloadAssembly (1647ms) + LoadAssemblies (120ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (347ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (71ms) + SetupLoadedEditorAssemblies (1019ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (117ms) + ProcessInitializeOnLoadAttributes (649ms) + ProcessInitializeOnLoadMethodAttributes (225ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 9.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8073. +Memory consumption went from 457.9 MB to 453.0 MB. +Total: 7.928700 ms (FindLiveObjects: 0.815700 ms CreateObjectMapping: 0.821200 ms MarkObjects: 4.648400 ms DeleteObjects: 1.642200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.013539 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.32 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.974 seconds +Domain Reload Profiling: + ReloadAssembly (1974ms) + BeginReloadAssembly (185ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (73ms) + EndReloadAssembly (1673ms) + LoadAssemblies (111ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (374ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (71ms) + SetupLoadedEditorAssemblies (1013ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (115ms) + ProcessInitializeOnLoadAttributes (635ms) + ProcessInitializeOnLoadMethodAttributes (234ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 11.94 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8088. +Memory consumption went from 457.9 MB to 453.0 MB. +Total: 7.527300 ms (FindLiveObjects: 0.806400 ms CreateObjectMapping: 0.737800 ms MarkObjects: 4.374700 ms DeleteObjects: 1.607100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.011012 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 7.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.155 seconds +Domain Reload Profiling: + ReloadAssembly (2156ms) + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (57ms) + EndReloadAssembly (1873ms) + LoadAssemblies (114ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (406ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (82ms) + SetupLoadedEditorAssemblies (1161ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (7ms) + BeforeProcessingInitializeOnLoad (134ms) + ProcessInitializeOnLoadAttributes (726ms) + ProcessInitializeOnLoadMethodAttributes (269ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (21ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 12.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8103. +Memory consumption went from 457.9 MB to 453.0 MB. +Total: 10.759600 ms (FindLiveObjects: 0.823600 ms CreateObjectMapping: 1.163500 ms MarkObjects: 6.620400 ms DeleteObjects: 2.150800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010218 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.29 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.031 seconds +Domain Reload Profiling: + ReloadAssembly (2031ms) + BeginReloadAssembly (197ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (75ms) + EndReloadAssembly (1704ms) + LoadAssemblies (132ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (379ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (65ms) + SetupLoadedEditorAssemblies (1038ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (17ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (124ms) + ProcessInitializeOnLoadAttributes (662ms) + ProcessInitializeOnLoadMethodAttributes (222ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 12.54 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8118. +Memory consumption went from 458.0 MB to 453.0 MB. +Total: 8.099900 ms (FindLiveObjects: 0.826500 ms CreateObjectMapping: 0.908700 ms MarkObjects: 4.653600 ms DeleteObjects: 1.709400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.011838 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.68 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.014 seconds +Domain Reload Profiling: + ReloadAssembly (2015ms) + BeginReloadAssembly (168ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (59ms) + EndReloadAssembly (1732ms) + LoadAssemblies (111ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (370ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (75ms) + SetupLoadedEditorAssemblies (1057ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (140ms) + ProcessInitializeOnLoadAttributes (650ms) + ProcessInitializeOnLoadMethodAttributes (238ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 9.21 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8133. +Memory consumption went from 458.0 MB to 453.0 MB. +Total: 12.689400 ms (FindLiveObjects: 1.091400 ms CreateObjectMapping: 1.107000 ms MarkObjects: 8.149700 ms DeleteObjects: 2.339500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010212 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.895 seconds +Domain Reload Profiling: + ReloadAssembly (1896ms) + BeginReloadAssembly (161ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + EndReloadAssembly (1625ms) + LoadAssemblies (106ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (351ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (66ms) + SetupLoadedEditorAssemblies (1010ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (118ms) + ProcessInitializeOnLoadAttributes (634ms) + ProcessInitializeOnLoadMethodAttributes (228ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.30 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8148. +Memory consumption went from 458.0 MB to 453.1 MB. +Total: 6.989200 ms (FindLiveObjects: 0.789800 ms CreateObjectMapping: 0.715100 ms MarkObjects: 3.887100 ms DeleteObjects: 1.595900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.011179 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.115 seconds +Domain Reload Profiling: + ReloadAssembly (2116ms) + BeginReloadAssembly (169ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (66ms) + EndReloadAssembly (1828ms) + LoadAssemblies (107ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (386ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (71ms) + SetupLoadedEditorAssemblies (1134ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (131ms) + ProcessInitializeOnLoadAttributes (719ms) + ProcessInitializeOnLoadMethodAttributes (251ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 12.60 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8163. +Memory consumption went from 458.0 MB to 453.1 MB. +Total: 9.453200 ms (FindLiveObjects: 0.930900 ms CreateObjectMapping: 1.027900 ms MarkObjects: 5.545800 ms DeleteObjects: 1.946900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010933 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.28 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.921 seconds +Domain Reload Profiling: + ReloadAssembly (1922ms) + BeginReloadAssembly (162ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + EndReloadAssembly (1643ms) + LoadAssemblies (104ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (339ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (62ms) + SetupLoadedEditorAssemblies (1038ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (123ms) + ProcessInitializeOnLoadAttributes (654ms) + ProcessInitializeOnLoadMethodAttributes (235ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 10.24 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8178. +Memory consumption went from 458.0 MB to 453.1 MB. +Total: 11.610400 ms (FindLiveObjects: 0.819800 ms CreateObjectMapping: 0.895700 ms MarkObjects: 7.838900 ms DeleteObjects: 2.054300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010000 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 5.16 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.035 seconds +Domain Reload Profiling: + ReloadAssembly (2035ms) + BeginReloadAssembly (165ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + EndReloadAssembly (1759ms) + LoadAssemblies (117ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (368ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (80ms) + SetupLoadedEditorAssemblies (1075ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (126ms) + ProcessInitializeOnLoadAttributes (695ms) + ProcessInitializeOnLoadMethodAttributes (226ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 10.88 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8193. +Memory consumption went from 458.1 MB to 453.1 MB. +Total: 11.057900 ms (FindLiveObjects: 1.026800 ms CreateObjectMapping: 1.361800 ms MarkObjects: 6.865400 ms DeleteObjects: 1.802700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010127 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 5.54 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.287 seconds +Domain Reload Profiling: + ReloadAssembly (2288ms) + BeginReloadAssembly (175ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (64ms) + EndReloadAssembly (1996ms) + LoadAssemblies (119ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (364ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (77ms) + SetupLoadedEditorAssemblies (1310ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (6ms) + BeforeProcessingInitializeOnLoad (139ms) + ProcessInitializeOnLoadAttributes (809ms) + ProcessInitializeOnLoadMethodAttributes (328ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (25ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 9.73 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8208. +Memory consumption went from 458.1 MB to 453.2 MB. +Total: 9.448200 ms (FindLiveObjects: 1.020100 ms CreateObjectMapping: 0.974300 ms MarkObjects: 5.665900 ms DeleteObjects: 1.786100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.011017 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.28 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.867 seconds +Domain Reload Profiling: + ReloadAssembly (1868ms) + BeginReloadAssembly (156ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + EndReloadAssembly (1597ms) + LoadAssemblies (98ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (344ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (63ms) + SetupLoadedEditorAssemblies (992ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (120ms) + ProcessInitializeOnLoadAttributes (626ms) + ProcessInitializeOnLoadMethodAttributes (219ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (17ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 9.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8223. +Memory consumption went from 458.1 MB to 453.2 MB. +Total: 7.725600 ms (FindLiveObjects: 0.849100 ms CreateObjectMapping: 0.784500 ms MarkObjects: 4.459300 ms DeleteObjects: 1.630900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010280 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.024 seconds +Domain Reload Profiling: + ReloadAssembly (2025ms) + BeginReloadAssembly (162ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (57ms) + EndReloadAssembly (1752ms) + LoadAssemblies (103ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (366ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (73ms) + SetupLoadedEditorAssemblies (1094ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (132ms) + ProcessInitializeOnLoadAttributes (699ms) + ProcessInitializeOnLoadMethodAttributes (234ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 13.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8238. +Memory consumption went from 458.1 MB to 453.2 MB. +Total: 12.186000 ms (FindLiveObjects: 0.921000 ms CreateObjectMapping: 0.951400 ms MarkObjects: 8.146700 ms DeleteObjects: 2.165400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010329 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.40 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.914 seconds +Domain Reload Profiling: + ReloadAssembly (1915ms) + BeginReloadAssembly (169ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (62ms) + EndReloadAssembly (1632ms) + LoadAssemblies (105ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (345ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (66ms) + SetupLoadedEditorAssemblies (1009ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (123ms) + ProcessInitializeOnLoadAttributes (624ms) + ProcessInitializeOnLoadMethodAttributes (233ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8253. +Memory consumption went from 458.2 MB to 453.2 MB. +Total: 7.311000 ms (FindLiveObjects: 0.784100 ms CreateObjectMapping: 0.640300 ms MarkObjects: 4.284800 ms DeleteObjects: 1.599900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.013162 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.80 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.102 seconds +Domain Reload Profiling: + ReloadAssembly (2103ms) + BeginReloadAssembly (161ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (58ms) + EndReloadAssembly (1815ms) + LoadAssemblies (104ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (371ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (75ms) + SetupLoadedEditorAssemblies (1136ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (141ms) + ProcessInitializeOnLoadAttributes (706ms) + ProcessInitializeOnLoadMethodAttributes (259ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 11.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8268. +Memory consumption went from 458.2 MB to 453.3 MB. +Total: 8.896200 ms (FindLiveObjects: 0.810400 ms CreateObjectMapping: 0.736200 ms MarkObjects: 4.908800 ms DeleteObjects: 2.439100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 16430.333598 seconds. + path: Assets/RPG Creation Kit/Scripts/Cells System/Demo/Worldspaces/Interiors/[WORLDSPACE] Interiors Worldspace.asset + artifactKey: Guid(86b7d29b634754d4da7dd5794f671036) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/Cells System/Demo/Worldspaces/Interiors/[WORLDSPACE] Interiors Worldspace.asset using Guid(86b7d29b634754d4da7dd5794f671036) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '08d5c0fc6d8a172c7d7f495fed887dfd') in 0.070490 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000043 seconds. + path: Assets/Daz3D/Architecture/Med Class/FirePlace/FirePlace_Stones/ARCStones2_M-FireplaceInterior_Normal-OGL.png + artifactKey: Guid(adf0b0a85c3bdaf4d837e7e05c8bc867) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Med Class/FirePlace/FirePlace_Stones/ARCStones2_M-FireplaceInterior_Normal-OGL.png using Guid(adf0b0a85c3bdaf4d837e7e05c8bc867) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '79cbc857482b5b1ffdc0d8a88ef8dee1') in 0.052093 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000043 seconds. + path: Assets/Toby Fredson/Modular Dungeon Catacombs - Mobile/Profile Settings_HDRP/CATAMSecene_Level_Interior.asset + artifactKey: Guid(681bdf5a84724564e95500f220e7442f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Toby Fredson/Modular Dungeon Catacombs - Mobile/Profile Settings_HDRP/CATAMSecene_Level_Interior.asset using Guid(681bdf5a84724564e95500f220e7442f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9cdc1c27aa81678bf795c61a6d53863f') in 0.017878 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000034 seconds. + path: Assets/RPG Creation Kit/Animations/First Person/One Handed/fbx/Base-Male-Human-FP-Arms-ROneHanded-Swing-Interrupted.fbx + artifactKey: Guid(77a82e1adb7c18f40ae7286b0eb363d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Animations/First Person/One Handed/fbx/Base-Male-Human-FP-Arms-ROneHanded-Swing-Interrupted.fbx using Guid(77a82e1adb7c18f40ae7286b0eb363d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a04342cf79fe6becd404582d15aaa163') in 0.387076 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000044 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Interact/OpenDoorRight.fbx + artifactKey: Guid(1613e4de8eca85d4aaf3573ed24fd223) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Interact/OpenDoorRight.fbx using Guid(1613e4de8eca85d4aaf3573ed24fd223) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '780c803281349cd0b98b04c2fc3be8b6') in 0.024370 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000102 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Audio/Scene/InteractDoorClose.wav + artifactKey: Guid(1345d5cef99213c44abcb9dc37c9f2a0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Audio/Scene/InteractDoorClose.wav using Guid(1345d5cef99213c44abcb9dc37c9f2a0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b748f9245b690de8f64d6a2ea50ae323') in 0.022906 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000035 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Audio/Scene/InteractDoorOpenClose.wav + artifactKey: Guid(29f8351b2918d6843b778939d26a87a3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Audio/Scene/InteractDoorOpenClose.wav using Guid(29f8351b2918d6843b778939d26a87a3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ca26188225552c4922a514cf1e2a4636') in 0.021027 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000035 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Audio/Scene/InteractChest.wav + artifactKey: Guid(9811115b81659e24f973203d5a1dca0f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Audio/Scene/InteractChest.wav using Guid(9811115b81659e24f973203d5a1dca0f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fd0ad220b3a94615bc303182b4bad2f5') in 0.019798 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000041 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Interact/OpenChest.fbx + artifactKey: Guid(371b71358f533c0458683c4774a5fceb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Interact/OpenChest.fbx using Guid(371b71358f533c0458683c4774a5fceb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6aa411421df899b79ab6d73648271dd0') in 0.026580 seconds +======================================================================== +Received Import Request. + Time since last request: 37.791582 seconds. + path: Assets/RPG Creation Kit/Scripts/Inventory System/Character Tab/Icons/PlayerIconWhite.png + artifactKey: Guid(183f02f4fcaa7494c980d573b215aeb3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/Inventory System/Character Tab/Icons/PlayerIconWhite.png using Guid(183f02f4fcaa7494c980d573b215aeb3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '150201669b2dbe301ffdb13884826420') in 0.043518 seconds +======================================================================== +Received Import Request. + Time since last request: 0.268880 seconds. + path: Assets/RPG Creation Kit/Scripts/BehaviourTrees/Builtin Behaviours/Purpose Behaviours/[BTree] [P] RyanSpeaksToPlayerAfterAmbush.asset + artifactKey: Guid(a6aa2cc616065614eb636038dd272382) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/BehaviourTrees/Builtin Behaviours/Purpose Behaviours/[BTree] [P] RyanSpeaksToPlayerAfterAmbush.asset using Guid(a6aa2cc616065614eb636038dd272382) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e74d760b970212dd27d16b723c1d5e62') in 0.020283 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000031 seconds. + path: Assets/RPG Creation Kit/Demos/__RckDemo__/Factions/[FACTION] _Player.asset + artifactKey: Guid(44e8e3b731a2a1043b211ab223b2439a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Factions/[FACTION] _Player.asset using Guid(44e8e3b731a2a1043b211ab223b2439a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bab8ed213d913def3489e8d378102b34') in 0.016915 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000030 seconds. + path: Assets/RPG Creation Kit/Scripts/BehaviourTrees/Builtin Behaviours/Purpose Behaviours/[BTree] [P] Speak To Player (Walk).asset + artifactKey: Guid(475c7cb9a399f92449461ed496106db5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/BehaviourTrees/Builtin Behaviours/Purpose Behaviours/[BTree] [P] Speak To Player (Walk).asset using Guid(475c7cb9a399f92449461ed496106db5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '89230017f89eb499ddd387d303729e8d') in 0.017911 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000031 seconds. + path: Assets/RPG Creation Kit/Demos/__RckDemo__/Specific Behaviours/[S_BTree] TheThiefOfTheDeadFollowPlayerBehaviour.asset + artifactKey: Guid(7ee06098b39e0c243a45fc81ace1498a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Specific Behaviours/[S_BTree] TheThiefOfTheDeadFollowPlayerBehaviour.asset using Guid(7ee06098b39e0c243a45fc81ace1498a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '46ab23effb8e9440ce7256d7784a6b8c') in 0.029941 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000036 seconds. + path: Assets/RPG Creation Kit/Scripts/BehaviourTrees/Builtin Behaviours/Purpose Behaviours/[BTree] [P] Speak To Player.asset + artifactKey: Guid(f30648f70b6c6284b9039cde2d1a998b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/BehaviourTrees/Builtin Behaviours/Purpose Behaviours/[BTree] [P] Speak To Player.asset using Guid(f30648f70b6c6284b9039cde2d1a998b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c73a9316d59d818928f6bdfc98db4ec0') in 0.010450 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000059 seconds. + path: Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/Red Shade Questline/One of them/[DIALOGUE] MackWaitsForPlayerToKillCount.asset + artifactKey: Guid(0ea94be36b4fce94281d88dfa6c648f4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/Red Shade Questline/One of them/[DIALOGUE] MackWaitsForPlayerToKillCount.asset using Guid(0ea94be36b4fce94281d88dfa6c648f4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '652f733d695403687a2be3210da099f1') in 0.318685 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000056 seconds. + path: Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/Red Shade Questline/One of them/[DIALOGUE] MackWaitsForPlayerToWearArmor.asset + artifactKey: Guid(ca71705b45e84fa42a211a333e8d2a90) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/Red Shade Questline/One of them/[DIALOGUE] MackWaitsForPlayerToWearArmor.asset using Guid(ca71705b45e84fa42a211a333e8d2a90) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '51ecf2ce08c7b418d54a85e4cf61e95c') in 0.092026 seconds +======================================================================== +Received Import Request. + Time since last request: 1471.589304 seconds. + path: Assets/RPG Creation Kit/Prefab Library/AI/[AI] ThiefOfTheDead001.prefab + artifactKey: Guid(df09a59236c350a47b961b24c2cd4a3c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Prefab Library/AI/[AI] ThiefOfTheDead001.prefab using Guid(df09a59236c350a47b961b24c2cd4a3c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c90b4d46c0abf0d1bce7bc188a06bee7') in 132.974141 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000045 seconds. + path: Assets/RPG Creation Kit/Scripts/Player/ThirdPersonPlayer.cs + artifactKey: Guid(b3e1748a16512cd4c8ca172d4acc5380) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/Player/ThirdPersonPlayer.cs using Guid(b3e1748a16512cd4c8ca172d4acc5380) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2370a13990c30c26517f3dcbe2bf629e') in 0.014138 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000052 seconds. + path: Assets/RPG Creation Kit/Demos/__RckDemo__/Specific Behaviours/[S_BTree] TheThiefOfTheDeadDefaultBehaviour.asset + artifactKey: Guid(0a0fdea0d0fe99a45b815e4067a43489) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Specific Behaviours/[S_BTree] TheThiefOfTheDeadDefaultBehaviour.asset using Guid(0a0fdea0d0fe99a45b815e4067a43489) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '47f0bb68f59eb65ae4e5185e105d5ff1') in 0.025766 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000053 seconds. + path: Assets/Kevin Iglesias/Basic Motions/Animations/Misc/BasicMotions@SitHigh01.fbx + artifactKey: Guid(997f5c8b30f156d48b5c84a1c2198929) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Kevin Iglesias/Basic Motions/Animations/Misc/BasicMotions@SitHigh01.fbx using Guid(997f5c8b30f156d48b5c84a1c2198929) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c988a5c1848346914d48ef41ee9264cc') in 0.031705 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000036 seconds. + path: Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/Every Man's Nightmare/[DIALOGUE] TheThiefOfTheDeadPackingUpDialogue.asset + artifactKey: Guid(ed329b2b827889947a58190ca4fec8e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/Every Man's Nightmare/[DIALOGUE] TheThiefOfTheDeadPackingUpDialogue.asset using Guid(ed329b2b827889947a58190ca4fec8e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cd182c2d895a3ef4365cab281f00092e') in 0.010702 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000044 seconds. + path: Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/Every Man's Nightmare/[DIALOGUE] TheThiefOfTheDeadKeepDiggingDialogue.asset + artifactKey: Guid(3987eefd90391f04992244617642c368) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/Every Man's Nightmare/[DIALOGUE] TheThiefOfTheDeadKeepDiggingDialogue.asset using Guid(3987eefd90391f04992244617642c368) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2ce55ef78f07592dd0e3af2e07d631ad') in 0.010215 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000032 seconds. + path: Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/Every Man's Nightmare/[DIALOGUE] TheThiefOfTheDeadDefaultDialogue.asset + artifactKey: Guid(5c93e1c1599aeae44a64d1425cf69b61) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/Every Man's Nightmare/[DIALOGUE] TheThiefOfTheDeadDefaultDialogue.asset using Guid(5c93e1c1599aeae44a64d1425cf69b61) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b3dfb7de210c19e1d5a6e0ec76bf3c72') in 0.021573 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000042 seconds. + path: Assets/Daz3D/Races/Ozias/Male/Body.prefab + artifactKey: Guid(ddf6a9dc3b4549f4b911f7cf7b63f026) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Ozias/Male/Body.prefab using Guid(ddf6a9dc3b4549f4b911f7cf7b63f026) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2f2229f5231270ba74f5ae1d9948bf28') in 7.831864 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000047 seconds. + path: Assets/Daz3D/Races/Ozias/Female/Body.prefab + artifactKey: Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Ozias/Female/Body.prefab using Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '62bed41052830d6c52612ce5cc4563f8') in 7.685791 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000055 seconds. + path: Assets/Daz3D/Races/Fi/Male/Body.prefab + artifactKey: Guid(7978de8ca735b5448bb28071841ee21b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Fi/Male/Body.prefab using Guid(7978de8ca735b5448bb28071841ee21b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f95ffa025b9213ca13a2b559bf2be9eb') in 2.138465 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010488 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 5.61 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.247 seconds +Domain Reload Profiling: + ReloadAssembly (2248ms) + BeginReloadAssembly (177ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (67ms) + EndReloadAssembly (1961ms) + LoadAssemblies (123ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (387ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (82ms) + SetupLoadedEditorAssemblies (1231ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (6ms) + BeforeProcessingInitializeOnLoad (135ms) + ProcessInitializeOnLoadAttributes (794ms) + ProcessInitializeOnLoadMethodAttributes (270ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (27ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.59 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8331. +Memory consumption went from 463.4 MB to 458.5 MB. +Total: 8.982500 ms (FindLiveObjects: 0.805000 ms CreateObjectMapping: 0.672900 ms MarkObjects: 5.558900 ms DeleteObjects: 1.944300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010876 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.89 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.116 seconds +Domain Reload Profiling: + ReloadAssembly (2117ms) + BeginReloadAssembly (179ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (70ms) + EndReloadAssembly (1827ms) + LoadAssemblies (113ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (359ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (69ms) + SetupLoadedEditorAssemblies (1159ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (136ms) + ProcessInitializeOnLoadAttributes (718ms) + ProcessInitializeOnLoadMethodAttributes (275ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 9.07 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8346. +Memory consumption went from 463.4 MB to 458.4 MB. +Total: 12.023200 ms (FindLiveObjects: 0.834700 ms CreateObjectMapping: 0.869900 ms MarkObjects: 8.160600 ms DeleteObjects: 2.156700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.009881 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.58 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.699 seconds +Domain Reload Profiling: + ReloadAssembly (2700ms) + BeginReloadAssembly (186ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (65ms) + EndReloadAssembly (2391ms) + LoadAssemblies (125ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (397ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (95ms) + SetupLoadedEditorAssemblies (1637ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (119ms) + ProcessInitializeOnLoadAttributes (1144ms) + ProcessInitializeOnLoadMethodAttributes (342ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.15 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8361. +Memory consumption went from 463.4 MB to 458.4 MB. +Total: 7.025000 ms (FindLiveObjects: 0.850100 ms CreateObjectMapping: 0.647300 ms MarkObjects: 3.966300 ms DeleteObjects: 1.560200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 1272.092216 seconds. + path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Clypeosaurus00A.prefab + artifactKey: Guid(f4711e2032445c1498bb4a5f2f5110f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Clypeosaurus00A.prefab using Guid(f4711e2032445c1498bb4a5f2f5110f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7de24126c8e0f31500d0bc46d9379577') in 1.001899 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000039 seconds. + path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00A.prefab + artifactKey: Guid(9386aa4cd9ccbdd4ca3d6c35e43c2ab7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00A.prefab using Guid(9386aa4cd9ccbdd4ca3d6c35e43c2ab7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) +UnityEditor.GameObjectInspector:GetPreviewData () +UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) +UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) +UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) + +[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] + + -> (artifact id: 'a725671dc9cb7fe2c2bb679f62ab7173') in 0.803874 seconds +======================================================================== +Received Import Request. + Time since last request: 1.358545 seconds. + path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00C.prefab + artifactKey: Guid(7eae60da6f8de9f458a2a21c11c66d8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00C.prefab using Guid(7eae60da6f8de9f458a2a21c11c66d8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) +UnityEditor.GameObjectInspector:GetPreviewData () +UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) +UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) +UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) + +[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] + + -> (artifact id: '827449cac30102507d7dc1783b5766e2') in 0.655257 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000037 seconds. + path: Assets/RPG Creation Kit/Scripts/AI/Creature AI/[CreatureAI] Prefab.prefab + artifactKey: Guid(dfbe794ddf1fd0a4195cfc0d1a0d9d38) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/AI/Creature AI/[CreatureAI] Prefab.prefab using Guid(dfbe794ddf1fd0a4195cfc0d1a0d9d38) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5ef8089265a8b3f2019026662146981d') in 0.232803 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000045 seconds. + path: Assets/RPG Creation Kit/Demos/__RckDemo__/Factions/[FACTION] Creatures.asset + artifactKey: Guid(28653baa89d9cc34ba22b1fa5b07bb0e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Factions/[FACTION] Creatures.asset using Guid(28653baa89d9cc34ba22b1fa5b07bb0e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '34f327c9d5857ca810e94f5cef99f942') in 0.007956 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000031 seconds. + path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00G.prefab + artifactKey: Guid(d2664322158ab6240b1da319696c9774) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00G.prefab using Guid(d2664322158ab6240b1da319696c9774) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a97e69856a922e4ecf0aba12b7d39f08') in 0.203697 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000037 seconds. + path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00H.prefab + artifactKey: Guid(964c75c164ae75b45ba226c31fbc32ff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00H.prefab using Guid(964c75c164ae75b45ba226c31fbc32ff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) +UnityEditor.GameObjectInspector:GetPreviewData () +UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) +UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) +UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) + +[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] + + -> (artifact id: 'bfabf29ddf1c90f3e50ad302dee3d054') in 0.663042 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000047 seconds. + path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00F.prefab + artifactKey: Guid(8832f99e055a1bb48aac498bd55d8981) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00F.prefab using Guid(8832f99e055a1bb48aac498bd55d8981) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) +UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) +UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) +UnityEditor.GameObjectInspector:GetPreviewData () +UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) +UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) +UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) + +[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] + + -> (artifact id: '0b7e0731aa2a8c623ea771408e302fa3') in 0.645852 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000043 seconds. + path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] SkeletonOutlaw002.prefab + artifactKey: Guid(02ea86d350ca6b34fa8ddd3b2767c83a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] SkeletonOutlaw002.prefab using Guid(02ea86d350ca6b34fa8ddd3b2767c83a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6ace63c13cdaec40b4177d25e652d661') in 0.172724 seconds +======================================================================== +Received Import Request. + Time since last request: 0.597820 seconds. + path: Assets/RPG Creation Kit/GeneralIcons/Icons/CreatureAIEditorIcon.png + artifactKey: Guid(d75dd11c7e7dd8045ac1240a65da4ce5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/GeneralIcons/Icons/CreatureAIEditorIcon.png using Guid(d75dd11c7e7dd8045ac1240a65da4ce5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7ce6a5bf61893d47b8bbd760c4848886') in 0.076932 seconds +======================================================================== +Received Prepare +Refreshing native plugins compatible for Editor in 16.48 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 90 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8440. +Memory consumption went from 287.4 MB to 282.4 MB. +Total: 8.361200 ms (FindLiveObjects: 0.834000 ms CreateObjectMapping: 0.649100 ms MarkObjects: 5.082000 ms DeleteObjects: 1.795300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 32475.168961 seconds. + path: Assets/Daz3D/Races/Human/Male/Body 2.prefab + artifactKey: Guid(cc1dd0d576a24c841a4fbddcccbecb50) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Human/Male/Body 2.prefab using Guid(cc1dd0d576a24c841a4fbddcccbecb50) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '73178234cde1599d3114b08f34459047') in 5.643884 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010268 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 6.65 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.189 seconds +Domain Reload Profiling: + ReloadAssembly (2190ms) + BeginReloadAssembly (180ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (9ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (66ms) + EndReloadAssembly (1888ms) + LoadAssemblies (121ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (384ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (76ms) + SetupLoadedEditorAssemblies (1186ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (7ms) + BeforeProcessingInitializeOnLoad (136ms) + ProcessInitializeOnLoadAttributes (744ms) + ProcessInitializeOnLoadMethodAttributes (275ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (29ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 11.26 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8419. +Memory consumption went from 463.6 MB to 458.7 MB. +Total: 10.801600 ms (FindLiveObjects: 1.063300 ms CreateObjectMapping: 0.968000 ms MarkObjects: 6.602100 ms DeleteObjects: 2.166700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.012802 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.27 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.201 seconds +Domain Reload Profiling: + ReloadAssembly (2202ms) + BeginReloadAssembly (173ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (58ms) + EndReloadAssembly (1908ms) + LoadAssemblies (108ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (400ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (69ms) + SetupLoadedEditorAssemblies (1199ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (122ms) + ProcessInitializeOnLoadAttributes (770ms) + ProcessInitializeOnLoadMethodAttributes (280ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (25ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 12.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8434. +Memory consumption went from 463.6 MB to 458.6 MB. +Total: 10.988100 ms (FindLiveObjects: 0.958100 ms CreateObjectMapping: 0.954800 ms MarkObjects: 7.284100 ms DeleteObjects: 1.789800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010390 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 7.01 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.122 seconds +Domain Reload Profiling: + ReloadAssembly (2123ms) + BeginReloadAssembly (174ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (61ms) + EndReloadAssembly (1823ms) + LoadAssemblies (111ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (358ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (69ms) + SetupLoadedEditorAssemblies (1154ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (7ms) + BeforeProcessingInitializeOnLoad (134ms) + ProcessInitializeOnLoadAttributes (729ms) + ProcessInitializeOnLoadMethodAttributes (258ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 13.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8449. +Memory consumption went from 463.6 MB to 458.6 MB. +Total: 10.336600 ms (FindLiveObjects: 0.847000 ms CreateObjectMapping: 0.835400 ms MarkObjects: 7.013500 ms DeleteObjects: 1.639300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.012344 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.28 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.923 seconds +Domain Reload Profiling: + ReloadAssembly (1924ms) + BeginReloadAssembly (158ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (56ms) + EndReloadAssembly (1658ms) + LoadAssemblies (97ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (348ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (72ms) + SetupLoadedEditorAssemblies (1031ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (116ms) + ProcessInitializeOnLoadAttributes (658ms) + ProcessInitializeOnLoadMethodAttributes (232ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8464. +Memory consumption went from 463.6 MB to 458.7 MB. +Total: 7.566700 ms (FindLiveObjects: 0.957500 ms CreateObjectMapping: 0.797300 ms MarkObjects: 4.111400 ms DeleteObjects: 1.699100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010532 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 6.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.139 seconds +Domain Reload Profiling: + ReloadAssembly (2140ms) + BeginReloadAssembly (181ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (69ms) + EndReloadAssembly (1824ms) + LoadAssemblies (112ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (371ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (81ms) + SetupLoadedEditorAssemblies (1137ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (6ms) + BeforeProcessingInitializeOnLoad (127ms) + ProcessInitializeOnLoadAttributes (721ms) + ProcessInitializeOnLoadMethodAttributes (258ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (21ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 12.25 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8479. +Memory consumption went from 463.6 MB to 458.7 MB. +Total: 10.491000 ms (FindLiveObjects: 1.102000 ms CreateObjectMapping: 1.163400 ms MarkObjects: 5.761000 ms DeleteObjects: 2.463200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 4756.062844 seconds. + path: Assets/Daz3D/Races/Human/Female/Body.prefab + artifactKey: Guid(38674239631e0ce4da6f9f86b2da0688) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Human/Female/Body.prefab using Guid(38674239631e0ce4da6f9f86b2da0688) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '664c33f3808c90249423949c1ae7d8a3') in 6.891096 seconds +======================================================================== +Received Import Request. + Time since last request: 11.778252 seconds. + path: Assets/Daz3D/Races/Dark Elf/Male/Materials + artifactKey: Guid(add06c554c673f1408aeb97eb7c40617) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Dark Elf/Male/Materials using Guid(add06c554c673f1408aeb97eb7c40617) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b551a772a91ec0b96e2fd3842934fa45') in 0.008819 seconds +======================================================================== +Received Import Request. + Time since last request: 15.216263 seconds. + path: Assets/Daz3D/Races/Dark Elf/Female/Materials + artifactKey: Guid(2e60e521a9d4fe148bfb192755cb6b93) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Dark Elf/Female/Materials using Guid(2e60e521a9d4fe148bfb192755cb6b93) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '90cea7e45d95b5479594c384bb90168a') in 0.002507 seconds +======================================================================== +Received Import Request. + Time since last request: 15.222772 seconds. + path: Assets/Daz3D/Races/Fi/Male/Body.prefab + artifactKey: Guid(7978de8ca735b5448bb28071841ee21b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Fi/Male/Body.prefab using Guid(7978de8ca735b5448bb28071841ee21b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f9a85df93251c91f565f3be718de4661') in 1.986957 seconds +======================================================================== +Received Import Request. + Time since last request: 6.235114 seconds. + path: Assets/Daz3D/Races/Fi/Male/Body.prefab + artifactKey: Guid(7978de8ca735b5448bb28071841ee21b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Fi/Male/Body.prefab using Guid(7978de8ca735b5448bb28071841ee21b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '29a6d78597c930e77e87605480f0c7a2') in 1.715084 seconds +======================================================================== +Received Import Request. + Time since last request: 12.518290 seconds. + path: Assets/Daz3D/Races/Goblin/Male/Body.prefab + artifactKey: Guid(f0eac46153d9277498019ffbd605a120) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Goblin/Male/Body.prefab using Guid(f0eac46153d9277498019ffbd605a120) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4e84adf3268e5af1d4d495fbd5a85f01') in 5.675667 seconds +======================================================================== +Received Import Request. + Time since last request: 5.348464 seconds. + path: Assets/Daz3D/Races/Ichtapau/Male/Body.prefab + artifactKey: Guid(6dd50b9e6adb8004cb331dbfa95960e5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Ichtapau/Male/Body.prefab using Guid(6dd50b9e6adb8004cb331dbfa95960e5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a6cf46d540a1bc3eeb300dac29118645') in 5.631490 seconds +======================================================================== +Received Import Request. + Time since last request: 3.424534 seconds. + path: Assets/Daz3D/Races/Ichtapau/Female/Body.prefab + artifactKey: Guid(a00e68cf082e3a44cadcc78cf36182ff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Ichtapau/Female/Body.prefab using Guid(a00e68cf082e3a44cadcc78cf36182ff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '84b33f42344f16ce1ab2df2831ac9dd8') in 6.274096 seconds +======================================================================== +Received Import Request. + Time since last request: 10.872002 seconds. + path: Assets/Daz3D/Races/Jaz/Male/Body.prefab + artifactKey: Guid(875abd4c9d8bff842af962faf7443c85) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Jaz/Male/Body.prefab using Guid(875abd4c9d8bff842af962faf7443c85) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd5b7517a43995757af1c5cfaf9680612') in 5.982085 seconds +======================================================================== +Received Import Request. + Time since last request: 2.374256 seconds. + path: Assets/Daz3D/Races/Ogre/Male/Body.prefab + artifactKey: Guid(999d1ed96455feb41a71980c56d6dd53) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Ogre/Male/Body.prefab using Guid(999d1ed96455feb41a71980c56d6dd53) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '61364757eb9acfd4f02dca380f0606b0') in 1.306485 seconds +======================================================================== +Received Import Request. + Time since last request: 8.056455 seconds. + path: Assets/Daz3D/Races/Ogre/Female/Body.prefab + artifactKey: Guid(c939ad4a4134a3948a664275f8c9ff8a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Ogre/Female/Body.prefab using Guid(c939ad4a4134a3948a664275f8c9ff8a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '596654f0a92547fa872e1848c6ec008d') in 6.353672 seconds +======================================================================== +Received Import Request. + Time since last request: 12.793144 seconds. + path: Assets/Daz3D/Races/Oni/Female/Body.prefab + artifactKey: Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Oni/Female/Body.prefab using Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '72fbd695518fa151509a6728ffc2c431') in 1.799580 seconds +======================================================================== +Received Import Request. + Time since last request: 99.074321 seconds. + path: Assets/Daz3D/Races/Oumua/Male/Body.prefab + artifactKey: Guid(95c68d036a8785e4cbec4cc02f8daded) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Oumua/Male/Body.prefab using Guid(95c68d036a8785e4cbec4cc02f8daded) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4d3392c452461fe7b4105d833f5a0d81') in 1.750828 seconds +======================================================================== +Received Import Request. + Time since last request: 8.617671 seconds. + path: Assets/Daz3D/Races/Ozias/Male/Body.prefab + artifactKey: Guid(ddf6a9dc3b4549f4b911f7cf7b63f026) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Ozias/Male/Body.prefab using Guid(ddf6a9dc3b4549f4b911f7cf7b63f026) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '57bc3877e82b7e6ced4c57f392f4fede') in 6.178683 seconds +======================================================================== +Received Import Request. + Time since last request: 0.204887 seconds. + path: Assets/Daz3D/Races/Ozias/Male/Body.prefab + artifactKey: Guid(ddf6a9dc3b4549f4b911f7cf7b63f026) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Ozias/Male/Body.prefab using Guid(ddf6a9dc3b4549f4b911f7cf7b63f026) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ea178ad502e99964137ca3413ea111ee') in 5.973461 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000045 seconds. + path: Assets/Daz3D/Races/Ozias/[RACE] Ozias.asset + artifactKey: Guid(2a727b4644ea58c4c9e88a3b82aa7291) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Ozias/[RACE] Ozias.asset using Guid(2a727b4644ea58c4c9e88a3b82aa7291) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7b558fa20a16e46eb6eda185528da4b0') in 116.639598 seconds +======================================================================== +Received Import Request. + Time since last request: 2246.967944 seconds. + path: Assets/Daz3D/Races/Underworld/[RACE] Underworld.asset + artifactKey: Guid(036c456059ce8ed4a8b65935dae32000) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Underworld/[RACE] Underworld.asset using Guid(036c456059ce8ed4a8b65935dae32000) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '621b79a9a3452e7b063733938b90639b') in 1.022364 seconds +======================================================================== +Received Import Request. + Time since last request: 60.129987 seconds. + path: Assets/Daz3D/Races/Abyss/Male/Materials + artifactKey: Guid(bfdb5eb042aacad4ea46d278bc252661) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Abyss/Male/Materials using Guid(bfdb5eb042aacad4ea46d278bc252661) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '672a485938a82b82175ef57af0530e84') in 0.002520 seconds +======================================================================== +Received Import Request. + Time since last request: 50.092349 seconds. + path: Assets/Daz3D/Races/Abyss/Female/Materials + artifactKey: Guid(4daa3b7b65bfa294e8e91a38e92ae48f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Abyss/Female/Materials using Guid(4daa3b7b65bfa294e8e91a38e92ae48f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0605024215423ce9898698de380660bc') in 0.003311 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010684 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.16 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.628 seconds +Domain Reload Profiling: + ReloadAssembly (2629ms) + BeginReloadAssembly (312ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (13ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (81ms) + EndReloadAssembly (2174ms) + LoadAssemblies (224ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (688ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (69ms) + SetupLoadedEditorAssemblies (1148ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (133ms) + ProcessInitializeOnLoadAttributes (671ms) + ProcessInitializeOnLoadMethodAttributes (317ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (26ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 14.52 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8535. +Memory consumption went from 464.3 MB to 459.3 MB. +Total: 12.487200 ms (FindLiveObjects: 0.883800 ms CreateObjectMapping: 0.792300 ms MarkObjects: 8.263300 ms DeleteObjects: 2.546200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> diff --git a/Logs/AssetImportWorker3.log b/Logs/AssetImportWorker3.log index a55b927a72..2cf3136aad 100644 --- a/Logs/AssetImportWorker3.log +++ b/Logs/AssetImportWorker3.log @@ -15,7 +15,7 @@ C:/Work/Firstborn -logFile Logs/AssetImportWorker3.log -srvPort -61352 +56215 Successfully changed project path to: C:/Work/Firstborn C:/Work/Firstborn [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -47,11 +47,11 @@ C:/Work/Firstborn "memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gfx=262144" -Player connection [22804] Host "[IP] 192.168.1.140 [Port] 0 [Flags] 2 [Guid] 617992537 [EditorId] 617992537 [Version] 1048832 [Id] WindowsEditor(7,THE-BEAST) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... +Player connection [22820] Host "[IP] 192.168.1.140 [Port] 0 [Flags] 2 [Guid] 20385226 [EditorId] 20385226 [Version] 1048832 [Id] WindowsEditor(7,THE-BEAST) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... -Player connection [22804] Host "[IP] 192.168.1.140 [Port] 0 [Flags] 2 [Guid] 617992537 [EditorId] 617992537 [Version] 1048832 [Id] WindowsEditor(7,THE-BEAST) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... +Player connection [22820] Host "[IP] 192.168.1.140 [Port] 0 [Flags] 2 [Guid] 20385226 [EditorId] 20385226 [Version] 1048832 [Id] WindowsEditor(7,THE-BEAST) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... -Refreshing native plugins compatible for Editor in 431.58 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 354.31 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2021.3.15f1 (e8e88683f834) [Subsystems] Discovering subsystems at path C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/Resources/UnitySubsystems @@ -67,89 +67,229 @@ Initialize mono Mono path[0] = 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/Managed' Mono path[1] = 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono config path = 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56756 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56780 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.009042 seconds. +Registered in 0.008880 seconds. Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 409.13 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 311.80 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 1.161 seconds +- Completed reload, in 0.930 seconds Domain Reload Profiling: - ReloadAssembly (1161ms) - BeginReloadAssembly (89ms) + ReloadAssembly (930ms) + BeginReloadAssembly (74ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (1ms) - EndReloadAssembly (925ms) - LoadAssemblies (86ms) + EndReloadAssembly (735ms) + LoadAssemblies (72ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (139ms) + SetupTypeCache (127ms) ReleaseScriptCaches (0ms) - RebuildScriptCaches (34ms) - SetupLoadedEditorAssemblies (681ms) + RebuildScriptCaches (29ms) + SetupLoadedEditorAssemblies (518ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (9ms) + InitializePlatformSupportModulesInManaged (8ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (409ms) + RefreshPlugins (312ms) BeforeProcessingInitializeOnLoad (1ms) - ProcessInitializeOnLoadAttributes (194ms) - ProcessInitializeOnLoadMethodAttributes (67ms) + ProcessInitializeOnLoadAttributes (149ms) + ProcessInitializeOnLoadMethodAttributes (47ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (0ms) Platform modules already initialized, skipping Registering precompiled user dll's ... -Registered in 0.012270 seconds. +Registered in 0.010444 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 437.41 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 330.88 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Mono: successfully reloaded assembly -- Completed reload, in 3.739 seconds +- Completed reload, in 4.943 seconds Domain Reload Profiling: - ReloadAssembly (3740ms) - BeginReloadAssembly (145ms) + ReloadAssembly (4944ms) + BeginReloadAssembly (120ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (33ms) - EndReloadAssembly (3434ms) - LoadAssemblies (128ms) + CreateAndSetChildDomain (24ms) + EndReloadAssembly (4690ms) + LoadAssemblies (109ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (482ms) + SetupTypeCache (439ms) ReleaseScriptCaches (2ms) - RebuildScriptCaches (134ms) - SetupLoadedEditorAssemblies (2620ms) + RebuildScriptCaches (107ms) + SetupLoadedEditorAssemblies (3978ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (5ms) SetLoadedEditorAssemblies (0ms) - RefreshPlugins (438ms) - BeforeProcessingInitializeOnLoad (181ms) - ProcessInitializeOnLoadAttributes (977ms) - ProcessInitializeOnLoadMethodAttributes (1008ms) - AfterProcessingInitializeOnLoad (12ms) + RefreshPlugins (331ms) + BeforeProcessingInitializeOnLoad (164ms) + ProcessInitializeOnLoadAttributes (1198ms) + ProcessInitializeOnLoadMethodAttributes (2270ms) + AfterProcessingInitializeOnLoad (10ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) + AwakeInstancesAfterBackupRestoration (7ms) Platform modules already initialized, skipping ======================================================================== Worker process is ready to serve import requests -Launched and connected shader compiler UnityShaderCompiler.exe after 0.07 seconds -Refreshing native plugins compatible for Editor in 7.84 ms, found 3 plugins. +Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds +Refreshing native plugins compatible for Editor in 4.19 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 7673 Unused Serialized files (Serialized files now loaded: 0) -Unloading 3615 unused Assets / (8.8 MB). Loaded Objects now: 7798. -Memory consumption went from 433.2 MB to 424.4 MB. -Total: 20.287300 ms (FindLiveObjects: 1.470500 ms CreateObjectMapping: 2.612100 ms MarkObjects: 8.760600 ms DeleteObjects: 7.442100 ms) +Unloading 3615 unused Assets / (9.9 MB). Loaded Objects now: 7799. +Memory consumption went from 433.4 MB to 423.5 MB. +Total: 12.182300 ms (FindLiveObjects: 1.209100 ms CreateObjectMapping: 1.368600 ms MarkObjects: 4.100400 ms DeleteObjects: 5.502900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010494 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.941 seconds +Domain Reload Profiling: + ReloadAssembly (1942ms) + BeginReloadAssembly (176ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (64ms) + EndReloadAssembly (1658ms) + LoadAssemblies (118ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (371ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (74ms) + SetupLoadedEditorAssemblies (1022ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (12ms) + SetLoadedEditorAssemblies (0ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (120ms) + ProcessInitializeOnLoadAttributes (650ms) + ProcessInitializeOnLoadMethodAttributes (224ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 11.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7078 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 7814. +Memory consumption went from 432.7 MB to 427.8 MB. +Total: 10.629500 ms (FindLiveObjects: 0.816700 ms CreateObjectMapping: 0.992900 ms MarkObjects: 7.357100 ms DeleteObjects: 1.461000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.011323 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.26 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.861 seconds +Domain Reload Profiling: + ReloadAssembly (1861ms) + BeginReloadAssembly (165ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (64ms) + EndReloadAssembly (1581ms) + LoadAssemblies (104ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (353ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (61ms) + SetupLoadedEditorAssemblies (990ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (116ms) + ProcessInitializeOnLoadAttributes (616ms) + ProcessInitializeOnLoadMethodAttributes (230ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (14ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 9.95 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7078 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 7829. +Memory consumption went from 432.7 MB to 427.8 MB. +Total: 10.692800 ms (FindLiveObjects: 0.740600 ms CreateObjectMapping: 1.076500 ms MarkObjects: 7.300900 ms DeleteObjects: 1.572500 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -163,264 +303,450 @@ AssetImportParameters requested are different than current active one (requested custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - Time since last request: 322185.978217 seconds. - path: Assets/RPG Creation Kit/Scripts/Alchemy/Item In Inventory/UI/Prefabs/AmmoItem_InPlayerInventoryUI.prefab - artifactKey: Guid(358a3da4cf413ad4ba22372018916c89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Scripts/Alchemy/Item In Inventory/UI/Prefabs/AmmoItem_InPlayerInventoryUI.prefab using Guid(358a3da4cf413ad4ba22372018916c89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b49e11c2c75a0432c34b8493d71f9f17') in 0.168132 seconds + Time since last request: 95503.590983 seconds. + path: Assets/Plugins/IngameDebugConsole/Sprites/IconSnapToBottom.psd + artifactKey: Guid(066c0b04be98cd348abb79add91d42bf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Plugins/IngameDebugConsole/Sprites/IconSnapToBottom.psd using Guid(066c0b04be98cd348abb79add91d42bf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '59cdd27db810349c8cc20eb07a1bf98f') in 0.137840 seconds ======================================================================== Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00B.prefab - artifactKey: Guid(05aebcc5b6afe314c8efe7d98eaa3abf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00B.prefab using Guid(05aebcc5b6afe314c8efe7d98eaa3abf) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) -UnityEditor.GameObjectInspector:GetPreviewData () -UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) -UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) -UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) - -[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] - - -> (artifact id: '954bde67274e3c3e41bf18dc7beb8b52') in 1.190740 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000046 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/SK_Karckmahre.FBX - artifactKey: Guid(bbc4ce9e9c0060240a25fcd80d1dbc1e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/SK_Karckmahre.FBX using Guid(bbc4ce9e9c0060240a25fcd80d1dbc1e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0c2fd72f3e0fc407d5b351cabfc4d1a3') in 4.361844 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000048 seconds. - path: Assets/RPG Creation Kit/Scripts/LoadingScreen/LoadingScreensImages/Karckmahre.jpg - artifactKey: Guid(d6bb7a78dded32f439a1e9c9dc37e9c0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Scripts/LoadingScreen/LoadingScreensImages/Karckmahre.jpg using Guid(d6bb7a78dded32f439a1e9c9dc37e9c0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'de844c27cd18f40ded8f2166f0e5b0d7') in 0.242431 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000048 seconds. - path: Assets/Textures/UI/Map Markers/Karck Icon.png - artifactKey: Guid(f9f8c3c961e2e8845805c6267f09e40b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Textures/UI/Map Markers/Karck Icon.png using Guid(f9f8c3c961e2e8845805c6267f09e40b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '833d5129584c1b1e59e9d5ec6d92533e') in 0.049850 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000061 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Prefabs/Karckmahre_Tint2.prefab - artifactKey: Guid(eee386ca26fb10d4bb9868d71c98bc87) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Prefabs/Karckmahre_Tint2.prefab using Guid(eee386ca26fb10d4bb9868d71c98bc87) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) -UnityEditor.GameObjectInspector:GetPreviewData () -UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) -UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) -UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) - -[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] - - -> (artifact id: 'c699001b130c7b24ca8100be24b3f802') in 0.664785 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000045 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@ClawsAttackLeft_RM.FBX - artifactKey: Guid(1cf6d2b87a8eb1847a0e97a718c0817b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@ClawsAttackLeft_RM.FBX using Guid(1cf6d2b87a8eb1847a0e97a718c0817b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '94fd96a730568d2833dc5283784c62a6') in 0.016873 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000055 seconds. - path: Assets/Prefabs/RckPlayer Variant.prefab - artifactKey: Guid(e4295a978fc0c534bb2cc9cc7ed6d57b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/RckPlayer Variant.prefab using Guid(e4295a978fc0c534bb2cc9cc7ed6d57b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bd5785a34412895da1424ece25494e8b') in 2.230310 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000044 seconds. - path: Assets/RPG Creation Kit/Scripts/Alchemy/Item In Inventory/UI/Prefabs/ArmorItem_InPlayerInventoryUI.prefab - artifactKey: Guid(06bb17005568a4f4e8d3aa080e1b66c8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Scripts/Alchemy/Item In Inventory/UI/Prefabs/ArmorItem_InPlayerInventoryUI.prefab using Guid(06bb17005568a4f4e8d3aa080e1b66c8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'eaf31e2086080ab33cc14e39f5ba8a78') in 0.033574 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000054 seconds. - path: Assets/Daz3D/Races/Outfits/Canyon Guards/KarckHelm.obj - artifactKey: Guid(265beda054d65c3498cf447d8bc112b2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Outfits/Canyon Guards/KarckHelm.obj using Guid(265beda054d65c3498cf447d8bc112b2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f280dfa9bcb20d70f508d21a3cb90051') in 0.092045 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000041 seconds. - path: Assets/RPG Creation Kit/Scripts/Alchemy/Item In Inventory/UI/Prefabs/ConsumableItem_InPlayerInventoryUI.prefab - artifactKey: Guid(4aac6266574e98b43975836ac924b896) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Scripts/Alchemy/Item In Inventory/UI/Prefabs/ConsumableItem_InPlayerInventoryUI.prefab using Guid(4aac6266574e98b43975836ac924b896) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0de1a1fe3e9e9a92131e3e886a648189') in 0.036642 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000037 seconds. - path: Assets/RPG Creation Kit/Scripts/AI/Editor/RckAI_InspectorImage.png - artifactKey: Guid(19dd1a0b790339e40b3f3728476cb5f9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Scripts/AI/Editor/RckAI_InspectorImage.png using Guid(19dd1a0b790339e40b3f3728476cb5f9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c43ca56dde74bbc69eb1b0ddb0c3bde9') in 0.023993 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000043 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@IdleBreathe.FBX - artifactKey: Guid(4eead90f1b11286469de01ef3434090d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@IdleBreathe.FBX using Guid(4eead90f1b11286469de01ef3434090d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '17a4a15e5a88a7f687863bee50666708') in 0.018354 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000058 seconds. - path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00G.prefab - artifactKey: Guid(d2664322158ab6240b1da319696c9774) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00G.prefab using Guid(d2664322158ab6240b1da319696c9774) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd8abecfd55141412e6e25c83fdaca197') in 0.242521 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000038 seconds. - path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00E.prefab - artifactKey: Guid(a780ec0f63d4ba941b1426a554f5139a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00E.prefab using Guid(a780ec0f63d4ba941b1426a554f5139a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) -UnityEditor.GameObjectInspector:GetPreviewData () -UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) -UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) -UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) - -[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] - - -> (artifact id: 'e1734b0ae8431a8a0d57026fc9aceb67') in 0.788735 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000050 seconds. - path: Assets/RPG Creation Kit/Scripts/Player/RckPlayer.prefab - artifactKey: Guid(7d773329c5729034d88226ce86f10455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Scripts/Player/RckPlayer.prefab using Guid(7d773329c5729034d88226ce86f10455) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'dc4ff0e67564ec3e5d409265ea60ce63') in 0.949222 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000060 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Claws2HitComboAttack.FBX - artifactKey: Guid(660f345e5c4f0804a8409496b4c5627a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@Claws2HitComboAttack.FBX using Guid(660f345e5c4f0804a8409496b4c5627a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '47dc06c7cdc9bb4f132ee49bcbbd89ee') in 0.017518 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000133 seconds. - path: Assets/RPG Creation Kit/Scripts/Inventory System/Item In Inventory/UI/Prefabs/BookItem_InPlayerInventoryUI.prefab - artifactKey: Guid(3c2c16621da37fe489504d454904f699) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Scripts/Inventory System/Item In Inventory/UI/Prefabs/BookItem_InPlayerInventoryUI.prefab using Guid(3c2c16621da37fe489504d454904f699) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5e1b6bc65a3d4d070bd2d957ffa1363a') in 0.032737 seconds + Time since last request: 35.987497 seconds. + path: Assets/RPG Creation Kit/GeneralIcons/Icons/ArmorItem.WindowIcon.png + artifactKey: Guid(053baa478f6c4dc439736d5334e49e7b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/GeneralIcons/Icons/ArmorItem.WindowIcon.png using Guid(053baa478f6c4dc439736d5334e49e7b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '63f1032222fc6dc440bedd3876359175') in 0.072219 seconds ======================================================================== Received Import Request. Time since last request: 0.000031 seconds. - path: Assets/RPG Creation Kit/Scripts/Alchemy/Item In Inventory/UI/Prefabs/KeyItem_InPlayerInventoryUI.prefab - artifactKey: Guid(ca9af449d50a04644abbb93df335c7f0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Scripts/Alchemy/Item In Inventory/UI/Prefabs/KeyItem_InPlayerInventoryUI.prefab using Guid(ca9af449d50a04644abbb93df335c7f0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '18248555ef79222cc2c9f07163428163') in 0.031256 seconds + path: Assets/RPG Creation Kit/GeneralIcons/Icons/RefreshIcon.png + artifactKey: Guid(2b47d9706cc4327409b087b33fd311db) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/GeneralIcons/Icons/RefreshIcon.png using Guid(2b47d9706cc4327409b087b33fd311db) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a6dca42ac7a91452ab37d9e3ce171b66') in 0.016966 seconds ======================================================================== Received Import Request. - Time since last request: 0.000037 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@ClawsAttackRight.FBX - artifactKey: Guid(9a2c8cfe554f5cc4fbf14ba7ab7ea54b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/FBX Files/Materials/Karckmahre@ClawsAttackRight.FBX using Guid(9a2c8cfe554f5cc4fbf14ba7ab7ea54b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '796e155d8a4b51c3feb32769234aa600') in 0.016828 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000039 seconds. - path: Assets/RPG Creation Kit/Scripts/Alchemy/Item In Inventory/UI/Prefabs/BookItem_InPlayerInventoryUI.prefab - artifactKey: Guid(6fc0cdee0e1f3d342b506e184e2290d9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Scripts/Alchemy/Item In Inventory/UI/Prefabs/BookItem_InPlayerInventoryUI.prefab using Guid(6fc0cdee0e1f3d342b506e184e2290d9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3178dcddb33ef124aaea35433ea24b22') in 0.033987 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000037 seconds. - path: Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Materials/M_Karckmahre_Tint1.mat - artifactKey: Guid(f19f594a04547a3418345f7d7e081c12) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Monsters Full Pack Vol 1/Monsters Pack Vol 3/Karckmahre/Materials/M_Karckmahre_Tint1.mat using Guid(f19f594a04547a3418345f7d7e081c12) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8dd0c327c4e2d87756d63b0d34d8e23a') in 0.092910 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000038 seconds. - path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00C.prefab - artifactKey: Guid(7eae60da6f8de9f458a2a21c11c66d8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00C.prefab using Guid(7eae60da6f8de9f458a2a21c11c66d8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) -UnityEditor.GameObjectInspector:GetPreviewData () -UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) -UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) -UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) - -[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] - - -> (artifact id: 'c44dc1d67ce29616257941dce4a2b638') in 0.801941 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000044 seconds. - path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00F.prefab - artifactKey: Guid(8832f99e055a1bb48aac498bd55d8981) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00F.prefab using Guid(8832f99e055a1bb48aac498bd55d8981) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) -UnityEditor.GameObjectInspector:GetPreviewData () -UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) -UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) -UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) - -[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] - - -> (artifact id: '2e655edb4528d9bb52f1cd6d7819ba72') in 0.834365 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000052 seconds. - path: Assets/Daz3D/Consumables/[Consumable] Karckmahr Juice.asset - artifactKey: Guid(e54955d221b99644a9cff38c07e3b254) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Consumables/[Consumable] Karckmahr Juice.asset using Guid(e54955d221b99644a9cff38c07e3b254) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '65f9a069f36b9795a0b28d0916a8b430') in 0.024135 seconds -======================================================================== -Received Import Request. - Time since last request: 2261.540816 seconds. - path: Assets/Prefabs/RckPlayer Variant.prefab - artifactKey: Guid(e4295a978fc0c534bb2cc9cc7ed6d57b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Prefabs/RckPlayer Variant.prefab using Guid(e4295a978fc0c534bb2cc9cc7ed6d57b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd91811625cd99f5a1d9322d05695466f') in 2.205194 seconds -======================================================================== -Received Import Request. - Time since last request: 139.035696 seconds. - path: Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Curch Village/MotherNebivia001_DefaultDialogue.asset - artifactKey: Guid(ce9d248fdf8d12648bbf7db1011bb65b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Curch Village/MotherNebivia001_DefaultDialogue.asset using Guid(ce9d248fdf8d12648bbf7db1011bb65b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8911ab17828cb90e996e50bde22047eb') in 0.034738 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000044 seconds. - path: Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/Hes My Son/DIALOGUE_FlorenceGainsDefault001.asset - artifactKey: Guid(689bd307468562a428e4f7db148492b7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/Hes My Son/DIALOGUE_FlorenceGainsDefault001.asset using Guid(689bd307468562a428e4f7db148492b7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '28968bb1bf4e3a66fb6e264a20909301') in 0.070653 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000043 seconds. - path: Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/FarmOutsideCity/Yeneas_FirstMetDialogue.asset - artifactKey: Guid(57f02b4bd6e6d4249bd212ee3893b1c2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/FarmOutsideCity/Yeneas_FirstMetDialogue.asset using Guid(57f02b4bd6e6d4249bd212ee3893b1c2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '17617ba6a7c6b410aa5515be7bf5dda6') in 0.020125 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000046 seconds. - path: Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Curch Village/SisterRodina_DefaultDialogue.asset - artifactKey: Guid(2c6324ca97a9e144b890cb06a9b961e0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Curch Village/SisterRodina_DefaultDialogue.asset using Guid(2c6324ca97a9e144b890cb06a9b961e0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '22903e207456630921eca27fc424dccb') in 0.035019 seconds + Time since last request: 0.000030 seconds. + path: Assets/RPG Creation Kit/GeneralIcons/Icons/NoItemIcon.png + artifactKey: Guid(8860f001d772e1d47b9feb2949cbec2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/GeneralIcons/Icons/NoItemIcon.png using Guid(8860f001d772e1d47b9feb2949cbec2c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a98763651954e4f00be06d841ad0df54') in 0.024044 seconds ======================================================================== Received Import Request. Time since last request: 0.000033 seconds. - path: Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/MQ02_The Red Shade/[DIALOGUE] MackRSDialogue001.asset - artifactKey: Guid(92447663aab60894580cc40beee99f61) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/MQ02_The Red Shade/[DIALOGUE] MackRSDialogue001.asset using Guid(92447663aab60894580cc40beee99f61) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8a30beba8e6fd0e2fa42c2fa5d7d90ef') in 0.322518 seconds + path: Assets/RPG Creation Kit/GeneralIcons/Icons/ConsumableItem.WindowIcon.png + artifactKey: Guid(625e793718b9af44ca9245641d46d0c5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/GeneralIcons/Icons/ConsumableItem.WindowIcon.png using Guid(625e793718b9af44ca9245641d46d0c5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cca86d0dc2601b04bcf3204297ee8c4d') in 0.062712 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000040 seconds. + path: Assets/RPG Creation Kit/GeneralIcons/Icons/BookItem.WindowIcon.png + artifactKey: Guid(91dc223121405384489e0fb2f063a902) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/GeneralIcons/Icons/BookItem.WindowIcon.png using Guid(91dc223121405384489e0fb2f063a902) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e006d5a1c6133edf9c24ed5a2c84c1ea') in 0.028867 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000029 seconds. + path: Assets/RPG Creation Kit/GeneralIcons/Icons/Sound.WindowIcon.png + artifactKey: Guid(a2b62f8569798e546becbfd8c48b465e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/GeneralIcons/Icons/Sound.WindowIcon.png using Guid(a2b62f8569798e546becbfd8c48b465e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '71225b13d0488e5161cf6f347a5c3cce') in 0.024140 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000029 seconds. + path: Assets/RPG Creation Kit/GeneralIcons/Icons/RaceEditorIcon.png + artifactKey: Guid(6aa1202f955c95b4ab7aa4c79b96da1c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/GeneralIcons/Icons/RaceEditorIcon.png using Guid(6aa1202f955c95b4ab7aa4c79b96da1c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '626e5fb11005f4f9ca353157fcb0f69e') in 0.061072 seconds ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.012800 seconds. +Registered in 0.010211 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.24 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.894 seconds +Domain Reload Profiling: + ReloadAssembly (1894ms) + BeginReloadAssembly (177ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (72ms) + EndReloadAssembly (1606ms) + LoadAssemblies (110ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (340ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (68ms) + SetupLoadedEditorAssemblies (1010ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (115ms) + ProcessInitializeOnLoadAttributes (643ms) + ProcessInitializeOnLoadMethodAttributes (224ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (15ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7078 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 7859. +Memory consumption went from 436.3 MB to 431.4 MB. +Total: 7.835100 ms (FindLiveObjects: 0.743200 ms CreateObjectMapping: 0.854800 ms MarkObjects: 4.845000 ms DeleteObjects: 1.390600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 12769.923685 seconds. + path: Assets/RPG Creation Kit/UI Sprites/xelu_free_keyboardcontroller_prompts_pack/Others/Xbox 360/360_Start.png + artifactKey: Guid(b9a9c9a3efbbe934e89c60b4a6476b8c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/UI Sprites/xelu_free_keyboardcontroller_prompts_pack/Others/Xbox 360/360_Start.png using Guid(b9a9c9a3efbbe934e89c60b4a6476b8c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8cfae7b5edc1ea22fe9b8ad80dc4ec55') in 0.067855 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000043 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/AimCrouchJumpFwd.fbx + artifactKey: Guid(09d98d72d76a0194fa96d6fecb00a740) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/AimCrouchJumpFwd.fbx using Guid(09d98d72d76a0194fa96d6fecb00a740) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1d8d800f79d99fb4da3870352e2ea4ad') in 0.038709 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000032 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/AimCrouchJumpStrafeRight.fbx + artifactKey: Guid(0eb9407cf34194944b6f0597ef16ec35) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/AimCrouchJumpStrafeRight.fbx using Guid(0eb9407cf34194944b6f0597ef16ec35) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a6d7d73925be222a255bc48be353ab21') in 0.023233 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000051 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/AimCrouchJumpStrafeLeft.fbx + artifactKey: Guid(b6cd20f80f49d6f44ad7baffcbb4bf8f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/AimCrouchJumpStrafeLeft.fbx using Guid(b6cd20f80f49d6f44ad7baffcbb4bf8f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '87a7596823d54c71ec101cbe21886672') in 0.022125 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000050 seconds. + path: Assets/EverydayMotionPack/Motion/05_Act/@female_act_meditate_start.FBX + artifactKey: Guid(3b95b18b81792e74a95bb6344a917411) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/EverydayMotionPack/Motion/05_Act/@female_act_meditate_start.FBX using Guid(3b95b18b81792e74a95bb6344a917411) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f302d6991b0f1497916b249d9d790731') in 0.020671 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000030 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/AimCrouchJump.fbx + artifactKey: Guid(db22eeecb33efc649b903016172bd37e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/AimCrouchJump.fbx using Guid(db22eeecb33efc649b903016172bd37e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2c21c453046765bf58842cf9af6d2d7b') in 0.021771 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000032 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/AimJump.fbx + artifactKey: Guid(9c0843f1c71bf8748a641d0191a296ca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/AimJump.fbx using Guid(9c0843f1c71bf8748a641d0191a296ca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ba7179ce36d05d2f15f316f4f26c1b4a') in 0.021984 seconds +======================================================================== +Received Import Request. + Time since last request: 5.270012 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/AimJumpWalkStrafeLeft.fbx + artifactKey: Guid(9c798aa55fd2b8a429c9fdb5c9f3be0c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/AimJumpWalkStrafeLeft.fbx using Guid(9c798aa55fd2b8a429c9fdb5c9f3be0c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7e3fdb9bde76332b5d576f815f1b6d41') in 0.026010 seconds +======================================================================== +Received Import Request. + Time since last request: 0.214780 seconds. + path: Assets/RPG Creation Kit/Scripts/Combat System/Player/Models - Animations/First Person 2Handed Animations.fbx + artifactKey: Guid(bbecdcb0d331c0248b2b351486d9728c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/Combat System/Player/Models - Animations/First Person 2Handed Animations.fbx using Guid(bbecdcb0d331c0248b2b351486d9728c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f57b55bed150609c23e97111ee68b963') in 0.390579 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000036 seconds. + path: Assets/Kevin Iglesias/Basic Motions/Animations/Movement/Crouch/BasicMotions@Crouch01 - Idle.fbx + artifactKey: Guid(980ad5c750091994a8fad93894c51658) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Kevin Iglesias/Basic Motions/Animations/Movement/Crouch/BasicMotions@Crouch01 - Idle.fbx using Guid(980ad5c750091994a8fad93894c51658) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f3a639642818f1b924fd97dd5731ba6c') in 0.021867 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000058 seconds. + path: Assets/RPG Creation Kit/Animations/First Person/Bow/Base-Male-Human-FP-Arms-Bow-BlockStart.fbx + artifactKey: Guid(7bdefbd9fee58a84fb3e111632ecfced) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Animations/First Person/Bow/Base-Male-Human-FP-Arms-Bow-BlockStart.fbx using Guid(7bdefbd9fee58a84fb3e111632ecfced) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '85b5caf5ba6e9cc872c686d584b8b16e') in 0.167352 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000032 seconds. + path: Assets/RPG Creation Kit/Animations/3rd Person/NPC_Actions/Farming/Base Male Human Final IK - StartFarming.fbx + artifactKey: Guid(69c4677b1b22bfe48b6baaa841b22027) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Animations/3rd Person/NPC_Actions/Farming/Base Male Human Final IK - StartFarming.fbx using Guid(69c4677b1b22bfe48b6baaa841b22027) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b572ab4037eccad09256f1a9a519ced7') in 0.017683 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000037 seconds. + path: Assets/Kevin Iglesias/Basic Motions/Animations/Misc/BasicMotions@Opening01.fbx + artifactKey: Guid(aea82a931267d04419c0058b097fcf77) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Kevin Iglesias/Basic Motions/Animations/Misc/BasicMotions@Opening01.fbx using Guid(aea82a931267d04419c0058b097fcf77) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6a27c1dfbc7be97a96b338c30ac1a82c') in 0.019283 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000043 seconds. + path: Assets/Kevin Iglesias/Basic Motions/Animations/Movement/Swim/BasicMotions@SwimDrown01.fbx + artifactKey: Guid(0621473f99a2b0d4f803a85d72893e70) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Kevin Iglesias/Basic Motions/Animations/Movement/Swim/BasicMotions@SwimDrown01.fbx using Guid(0621473f99a2b0d4f803a85d72893e70) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd4215a3ef4d2c01ed797171dbefc2951') in 0.020719 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000033 seconds. + path: Assets/Kevin Iglesias/Basic Motions/Animations/Misc/BasicMotions@Loot01.fbx + artifactKey: Guid(e73859bd34b5e1a4f83fee15d7630d06) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Kevin Iglesias/Basic Motions/Animations/Misc/BasicMotions@Loot01.fbx using Guid(e73859bd34b5e1a4f83fee15d7630d06) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cd9bb815f780e988abe0bbc038b2022e') in 0.020409 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000039 seconds. + path: Assets/Kevin Iglesias/Basic Motions/Animations/Misc/BasicMotions@SitLow01.fbx + artifactKey: Guid(c809d444a76731846aaaaa816b3d3730) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Kevin Iglesias/Basic Motions/Animations/Misc/BasicMotions@SitLow01.fbx using Guid(c809d444a76731846aaaaa816b3d3730) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5e1eadc021213ac74164a60348079937') in 0.023045 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000031 seconds. + path: Assets/Kevin Iglesias/Basic Motions/Animations/Misc/BasicMotions@SitMed01.fbx + artifactKey: Guid(ab23d6d6e4e991641b2dc376f55343b5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Kevin Iglesias/Basic Motions/Animations/Misc/BasicMotions@SitMed01.fbx using Guid(ab23d6d6e4e991641b2dc376f55343b5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e1d0d1912fdc9c61abc98dcdac849534') in 0.022747 seconds +======================================================================== +Received Import Request. + Time since last request: 0.215301 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/BowAimCrouchJumpBwd.fbx + artifactKey: Guid(6a2bacfa0aa344848b585a996c774a9c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/BowAimCrouchJumpBwd.fbx using Guid(6a2bacfa0aa344848b585a996c774a9c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd0025e7caf3ad75663ed52bfee2ba649') in 0.028805 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000040 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/BowAimCrouchJumpFwd.fbx + artifactKey: Guid(1be43c9aa9182b8468f04158f7c70835) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/BowAimCrouchJumpFwd.fbx using Guid(1be43c9aa9182b8468f04158f7c70835) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '73552edd399a0385f1cde38f536a5ce3') in 0.027716 seconds +======================================================================== +Received Import Request. + Time since last request: 1.434479 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/BowAimCrouchJumpStrafeLeft.fbx + artifactKey: Guid(94ebf7f591e3b20478b6f113716c09ca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/BowAimCrouchJumpStrafeLeft.fbx using Guid(94ebf7f591e3b20478b6f113716c09ca) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3582e170e3ca71e8d390a421abe32516') in 0.020846 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000035 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/BowAimCrouchJumpStrafeRight.fbx + artifactKey: Guid(44fbe897ef81e9f4cb149d43dc6a8ac6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/BowAimCrouchJumpStrafeRight.fbx using Guid(44fbe897ef81e9f4cb149d43dc6a8ac6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'df4ed33f08cfd5ecc68e6b60075c44ad') in 0.021670 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000040 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/BowAimJump.fbx + artifactKey: Guid(6a204caebb845c54380ae370556498bb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/BowAimJump.fbx using Guid(6a204caebb845c54380ae370556498bb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b1bd75380f00b7de430beda3fe90f8b4') in 0.023283 seconds +======================================================================== +Received Import Request. + Time since last request: 0.577749 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/BowAimJumpStrafeRight.fbx + artifactKey: Guid(511854ca7e4504b4fab0dc96fcd34566) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/BowAimJumpStrafeRight.fbx using Guid(511854ca7e4504b4fab0dc96fcd34566) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '48e234c75f674d48168a0b9d323b5de3') in 0.027634 seconds +======================================================================== +Received Import Request. + Time since last request: 0.495931 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Crouch/CrouchBwdTurnLeft.fbx + artifactKey: Guid(140f0519eb34bf244a1aeb8a09aebd11) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Crouch/CrouchBwdTurnLeft.fbx using Guid(140f0519eb34bf244a1aeb8a09aebd11) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b47d812af0279e3ca3efbefa792bd514') in 0.022737 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000033 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Crouch/CrouchFwd.fbx + artifactKey: Guid(cff7f5307783f60409ad1c5caa29ba3f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Crouch/CrouchFwd.fbx using Guid(cff7f5307783f60409ad1c5caa29ba3f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '81d13523907d18f7ef138bafa469a253') in 0.024080 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000030 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Crouch/CrouchFwdTurnRight.fbx + artifactKey: Guid(a41fe372a33f62a42b03c740b085f228) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Crouch/CrouchFwdTurnRight.fbx using Guid(a41fe372a33f62a42b03c740b085f228) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5007b62377a5042a429ac8fd218d8215') in 0.023674 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000032 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Crouch/CrouchBwdTurnRight.fbx + artifactKey: Guid(1e3bda57c8620d54a87515f8421b68db) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Crouch/CrouchBwdTurnRight.fbx using Guid(1e3bda57c8620d54a87515f8421b68db) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '970a05b7b5b1fc1ab313d4b6b15a775c') in 0.022915 seconds +======================================================================== +Received Import Request. + Time since last request: 0.595916 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/CrouchJumpStrafeLeft.fbx + artifactKey: Guid(d4a9e2acb19041d4da1c6257d9409e15) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/CrouchJumpStrafeLeft.fbx using Guid(d4a9e2acb19041d4da1c6257d9409e15) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1d1b1e5489a6a59b5f86b83372f4dd05') in 0.021940 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000035 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Crouch/CrouchStrafeRight.fbx + artifactKey: Guid(7e1f0baa651de4741813f752ebe75646) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Crouch/CrouchStrafeRight.fbx using Guid(7e1f0baa651de4741813f752ebe75646) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd1507f2b61d805387b1a84a51ddc4cce') in 0.023239 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000051 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Crouch/CrouchStrafeLeft.fbx + artifactKey: Guid(895774fc58a897a458cc172535fd1e4c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Crouch/CrouchStrafeLeft.fbx using Guid(895774fc58a897a458cc172535fd1e4c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f46c6c9bf51d5dfc515acc32325cb9b2') in 0.023527 seconds +======================================================================== +Received Import Request. + Time since last request: 0.214955 seconds. + path: Assets/Daz3D/Races/Outfits/Trappers/Resources/DE_ChestArmor_43618/DarkElf_ChestArmor_Brown_Normal.jpg + artifactKey: Guid(7479aced30ca913419571f955db200a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Outfits/Trappers/Resources/DE_ChestArmor_43618/DarkElf_ChestArmor_Brown_Normal.jpg using Guid(7479aced30ca913419571f955db200a6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '569f4aae3616dc658fac0f4a55e6d773') in 0.037599 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000034 seconds. + path: Assets/Daz3D/Races/Outfits/Trappers/Resources/DE_ChestArmor_43618/DarkElf_ChestArmor_Brown_Roughness.jpg + artifactKey: Guid(e1a4e181685835348a3ee4b04993ecef) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Outfits/Trappers/Resources/DE_ChestArmor_43618/DarkElf_ChestArmor_Brown_Roughness.jpg using Guid(e1a4e181685835348a3ee4b04993ecef) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2b89e1a2f163362282dd11947ffb49c2') in 0.032326 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000034 seconds. + path: Assets/Daz3D/Races/Outfits/Trappers/Parts/DE_ChestArmor_43618.Shape.prefab + artifactKey: Guid(764d79af9ed4b6841803dd567c4df91a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Outfits/Trappers/Parts/DE_ChestArmor_43618.Shape.prefab using Guid(764d79af9ed4b6841803dd567c4df91a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '49f5495f00202b09352bb6e9c8fa2eec') in 2.365183 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000039 seconds. + path: Assets/RPG Creation Kit/Animations/First Person/One Handed/fbx/FP_Arms_OneH_Shield_StartBlocking.fbx + artifactKey: Guid(af398ce4ab5107c478fe45f0f655235b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Animations/First Person/One Handed/fbx/FP_Arms_OneH_Shield_StartBlocking.fbx using Guid(af398ce4ab5107c478fe45f0f655235b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '682d96be84a6dd29c64889aa3ed50f4f') in 0.108003 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000044 seconds. + path: Assets/Daz3D/Races/Outfits/Trappers/Resources/DE_ChestArmor_43618/DarkElf_ChestArmor_Brown_Opacity.jpg + artifactKey: Guid(cf4fc2ab02c81ce4981aea37a95fbba4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Races/Outfits/Trappers/Resources/DE_ChestArmor_43618/DarkElf_ChestArmor_Brown_Opacity.jpg using Guid(cf4fc2ab02c81ce4981aea37a95fbba4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5cf57d355c8019c791261270e61affbb') in 0.016841 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000035 seconds. + path: Assets/Toby Fredson/Modular Dungeon Catacombs - Mobile/Models/Models_Scene/DirtPathCATAM.fbx + artifactKey: Guid(19c22941a55c0cf40a0834ef9701101c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Toby Fredson/Modular Dungeon Catacombs - Mobile/Models/Models_Scene/DirtPathCATAM.fbx using Guid(19c22941a55c0cf40a0834ef9701101c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8931312c0b63746c07aa16b4a92cf579') in 0.024019 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000031 seconds. + path: Assets/Toby Fredson/Modular Dungeon Catacombs - Mobile/Prefabs/Prefabs_Merged/Merged Models Unity/HallwayNarrowLowWideTCATAM_A_Start 1.prefab + artifactKey: Guid(6faea81a6f0bd22468dd825518ea56c6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Toby Fredson/Modular Dungeon Catacombs - Mobile/Prefabs/Prefabs_Merged/Merged Models Unity/HallwayNarrowLowWideTCATAM_A_Start 1.prefab using Guid(6faea81a6f0bd22468dd825518ea56c6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4ed45e4daccd35a3a417774c9a9083de') in 0.471108 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000045 seconds. + path: Assets/RPG Creation Kit/Demos/__RckDemo__/Result Scripts/Tavern/[BTree] [P] [S] FirstMetHenryAlbertBehaviour.asset + artifactKey: Guid(26e70e7351cf21a40880f8b7548291af) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Result Scripts/Tavern/[BTree] [P] [S] FirstMetHenryAlbertBehaviour.asset using Guid(26e70e7351cf21a40880f8b7548291af) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2a3b62bdf5223d92986cd15a2829e05e') in 0.023319 seconds +======================================================================== +Received Import Request. + Time since last request: 60.588523 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/JumpRunFwd.fbx + artifactKey: Guid(d2e6889c10155d147ab410bf62db21f9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/JumpRunFwd.fbx using Guid(d2e6889c10155d147ab410bf62db21f9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5b446c45d33a7e21a3ba6e83f2b97e0b') in 0.043836 seconds +======================================================================== +Received Import Request. + Time since last request: 0.606716 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/JumpRunStrafeRight.fbx + artifactKey: Guid(358599214ea893f4cad37cfd4368205c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/JumpRunStrafeRight.fbx using Guid(358599214ea893f4cad37cfd4368205c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b76fd257a643ba67b1c84c3a7db2ee63') in 0.027223 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000036 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/Jump.fbx + artifactKey: Guid(2c0d9c2be6ff9084891e4feb16107740) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/Jump.fbx using Guid(2c0d9c2be6ff9084891e4feb16107740) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '031ef99cee00a72fac1f6a782560b587') in 0.022677 seconds +======================================================================== +Received Import Request. + Time since last request: 1.000604 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/JumpWalkStrafeRight.fbx + artifactKey: Guid(d8fab43b28cedd041869250f8731b9e8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Jump/JumpWalkStrafeRight.fbx using Guid(d8fab43b28cedd041869250f8731b9e8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b4eda2c8d38c5c06349e1aeeeb3c701f') in 0.027042 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000039 seconds. + path: Assets/RPG Creation Kit/Animations/3rd Person/NPC_Actions/Leaning/Base Male Human Final IK - LeanOnWallWithBackFromFront.fbx + artifactKey: Guid(8251ec1406c0f164baebda3696f7f826) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Animations/3rd Person/NPC_Actions/Leaning/Base Male Human Final IK - LeanOnWallWithBackFromFront.fbx using Guid(8251ec1406c0f164baebda3696f7f826) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '281287b3f14907f7d9a91da5a5790e94') in 0.166188 seconds +======================================================================== +Received Import Request. + Time since last request: 0.026838 seconds. + path: Assets/RPG Creation Kit/UI Sprites/xelu_free_keyboardcontroller_prompts_pack/Others/PS Move/PSMove_Start.png + artifactKey: Guid(a74869f0ab311234da9221c0833a879a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/UI Sprites/xelu_free_keyboardcontroller_prompts_pack/Others/PS Move/PSMove_Start.png using Guid(a74869f0ab311234da9221c0833a879a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7190239557ff0faff22f48f9ebb5877c') in 0.018069 seconds +======================================================================== +Received Import Request. + Time since last request: 4.452672 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Start/StartRunBwdTurnLeft.fbx + artifactKey: Guid(39606c644e9e32346881445bc3ebf385) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Start/StartRunBwdTurnLeft.fbx using Guid(39606c644e9e32346881445bc3ebf385) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ed2e1547628ca8f4dfbd7b7f57f6c449') in 0.020970 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000041 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Start/StartRunBwdTurnRight.fbx + artifactKey: Guid(269fc9d3a35dabd4aab5267079d6b3fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Start/StartRunBwdTurnRight.fbx using Guid(269fc9d3a35dabd4aab5267079d6b3fa) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7bc83ad569f2994f9ca9f9f462adf78d') in 0.020672 seconds +======================================================================== +Received Import Request. + Time since last request: 1.134453 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Start/StartRunFwdTurnRight.fbx + artifactKey: Guid(fa2737656e4b12c4a9a4e0ed42dce697) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Start/StartRunFwdTurnRight.fbx using Guid(fa2737656e4b12c4a9a4e0ed42dce697) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1a557fddb29985a995bffc2e14fe8f82') in 0.020843 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000036 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Start/StartRunStrafeRight.fbx + artifactKey: Guid(65050b4f03c124345bf90b0b186c8729) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Start/StartRunStrafeRight.fbx using Guid(65050b4f03c124345bf90b0b186c8729) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7e2d542241ffdecdd895882e8244f007') in 0.021990 seconds +======================================================================== +Received Import Request. + Time since last request: 0.320010 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Start/StartWalkBwdTurnRight.fbx + artifactKey: Guid(56013050da150a741919bb4884ab398d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Start/StartWalkBwdTurnRight.fbx using Guid(56013050da150a741919bb4884ab398d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'daa4e81a21eea6b42ba6e74733fd8d24') in 0.022058 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000040 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Start/StartWalkFwdTurnRight.fbx + artifactKey: Guid(3f2731331e9a93540a7b2e1bc68cb441) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Start/StartWalkFwdTurnRight.fbx using Guid(3f2731331e9a93540a7b2e1bc68cb441) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4a1c22bd28b27429a48a3970ddb000c1') in 0.021123 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000034 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Start/StartWalkFwd.fbx + artifactKey: Guid(a7d778a8ef018d042bf391484e86c09a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Start/StartWalkFwd.fbx using Guid(a7d778a8ef018d042bf391484e86c09a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e2ef711b95b6ca28fd4426dde92bf5db') in 0.021436 seconds +======================================================================== +Received Import Request. + Time since last request: 1.816619 seconds. + path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Start/StartWalkStrafeRight.fbx + artifactKey: Guid(757e5c3a0b2c05a48a3d7f90d5421604) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Start/StartWalkStrafeRight.fbx using Guid(757e5c3a0b2c05a48a3d7f90d5421604) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7732e5f3d37c841667e47d94fab4f38c') in 0.021889 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000032 seconds. + path: Assets/RPG Creation Kit/UI Sprites/xelu_free_keyboardcontroller_prompts_pack/Others/Steam/Steam_Start.png + artifactKey: Guid(f82c1c6dc0389aa4ab0ed6ca6dbc5f31) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/UI Sprites/xelu_free_keyboardcontroller_prompts_pack/Others/Steam/Steam_Start.png using Guid(f82c1c6dc0389aa4ab0ed6ca6dbc5f31) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4c097d983b3b51f44a38e985d6031525') in 0.019859 seconds +======================================================================== +Received Import Request. + Time since last request: 0.350945 seconds. + path: Assets/Kevin Iglesias/Villager Animations Pack/Animations/Villager@Cooking02.fbx + artifactKey: Guid(3a236fd0d388c484f8442a9b7a89ab92) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Kevin Iglesias/Villager Animations Pack/Animations/Villager@Cooking02.fbx using Guid(3a236fd0d388c484f8442a9b7a89ab92) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f2fb4b1d40aa78363dd6a25cbdd8e0fe') in 0.020101 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010383 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll @@ -442,973 +768,40 @@ UnityEngine.Debug:LogError (object) UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () Mono: successfully reloaded assembly -- Completed reload, in 2.239 seconds +- Completed reload, in 2.072 seconds Domain Reload Profiling: - ReloadAssembly (2240ms) - BeginReloadAssembly (195ms) + ReloadAssembly (2073ms) + BeginReloadAssembly (182ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) + DisableScriptedObjects (10ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (78ms) - EndReloadAssembly (1913ms) - LoadAssemblies (113ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (364ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (68ms) - SetupLoadedEditorAssemblies (1136ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (13ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (4ms) - BeforeProcessingInitializeOnLoad (120ms) - ProcessInitializeOnLoadAttributes (668ms) - ProcessInitializeOnLoadMethodAttributes (320ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (25ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 11.88 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) -Unloading 104 unused Assets / (4.9 MB). Loaded Objects now: 7927. -Memory consumption went from 457.8 MB to 452.9 MB. -Total: 7.510700 ms (FindLiveObjects: 0.747000 ms CreateObjectMapping: 0.727300 ms MarkObjects: 4.399100 ms DeleteObjects: 1.636400 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 112.916970 seconds. - path: Assets/Daz3D/Animations/Female/FBX/Animations@Inventory.fbx - artifactKey: Guid(68971b63b083a3745ae45fc1e394dd47) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Animations/Female/FBX/Animations@Inventory.fbx using Guid(68971b63b083a3745ae45fc1e394dd47) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '614c8c2c4983f7cca4930b8d1cdac2d6') in 0.096205 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000046 seconds. - path: Assets/RPG Creation Kit/Sounds/Other Sound Effects/RPG Sounds Pack 1/addininventory.wav - artifactKey: Guid(8a3f2454307d96244b692f146c3d360a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Sounds/Other Sound Effects/RPG Sounds Pack 1/addininventory.wav using Guid(8a3f2454307d96244b692f146c3d360a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b7b52424aae8a0350a7affddbd72766a') in 0.066539 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000030 seconds. - path: Assets/Daz3D/SoundEffects/MISC/AddToInventory.ogg - artifactKey: Guid(b6bcd3919f4832b41b3c1b8c3e82e636) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/SoundEffects/MISC/AddToInventory.ogg using Guid(b6bcd3919f4832b41b3c1b8c3e82e636) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '21e7cfa14199c6ebbc2575db9a920a34') in 0.020534 seconds -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.013858 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.30 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 1.984 seconds -Domain Reload Profiling: - ReloadAssembly (1985ms) - BeginReloadAssembly (185ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (71ms) - EndReloadAssembly (1674ms) - LoadAssemblies (109ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (363ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (66ms) - SetupLoadedEditorAssemblies (1036ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (13ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (4ms) - BeforeProcessingInitializeOnLoad (122ms) - ProcessInitializeOnLoadAttributes (648ms) - ProcessInitializeOnLoadMethodAttributes (237ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (21ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 10.72 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 7944. -Memory consumption went from 457.7 MB to 452.7 MB. -Total: 7.112700 ms (FindLiveObjects: 0.864400 ms CreateObjectMapping: 0.657700 ms MarkObjects: 4.111400 ms DeleteObjects: 1.477200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 886.400495 seconds. - path: Assets/RPG Creation Kit/Demos/__RckDemo__/Quests/Southern Village/Every Dead Man's Nightmare/- [QUEST] Every Dead Man's Nightmare.asset - artifactKey: Guid(23a1f8fcb94ab7b45b0c3e3a411da358) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Quests/Southern Village/Every Dead Man's Nightmare/- [QUEST] Every Dead Man's Nightmare.asset using Guid(23a1f8fcb94ab7b45b0c3e3a411da358) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'df9981880a321503164e8b171790b592') in 0.041486 seconds -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.013010 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.55 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 2.029 seconds -Domain Reload Profiling: - ReloadAssembly (2029ms) - BeginReloadAssembly (183ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (67ms) - EndReloadAssembly (1717ms) - LoadAssemblies (128ms) + CreateAndSetChildDomain (66ms) + EndReloadAssembly (1781ms) + LoadAssemblies (115ms) RebuildTransferFunctionScriptingTraits (0ms) SetupTypeCache (377ms) ReleaseScriptCaches (3ms) - RebuildScriptCaches (69ms) - SetupLoadedEditorAssemblies (1039ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (13ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (5ms) - BeforeProcessingInitializeOnLoad (124ms) - ProcessInitializeOnLoadAttributes (647ms) - ProcessInitializeOnLoadMethodAttributes (240ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (22ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 12.23 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 7959. -Memory consumption went from 457.7 MB to 452.7 MB. -Total: 8.840400 ms (FindLiveObjects: 0.787500 ms CreateObjectMapping: 0.871400 ms MarkObjects: 5.355900 ms DeleteObjects: 1.822700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.010464 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.95 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 2.988 seconds -Domain Reload Profiling: - ReloadAssembly (2989ms) - BeginReloadAssembly (313ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (77ms) - EndReloadAssembly (2505ms) - LoadAssemblies (242ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (780ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (79ms) - SetupLoadedEditorAssemblies (1266ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (14ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (5ms) - BeforeProcessingInitializeOnLoad (129ms) - ProcessInitializeOnLoadAttributes (748ms) - ProcessInitializeOnLoadMethodAttributes (355ms) - AfterProcessingInitializeOnLoad (13ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (24ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 12.63 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 7974. -Memory consumption went from 457.7 MB to 452.8 MB. -Total: 10.981100 ms (FindLiveObjects: 0.812800 ms CreateObjectMapping: 1.160200 ms MarkObjects: 6.850500 ms DeleteObjects: 2.156000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.014046 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 7.20 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 2.228 seconds -Domain Reload Profiling: - ReloadAssembly (2229ms) - BeginReloadAssembly (177ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (70ms) - EndReloadAssembly (1937ms) - LoadAssemblies (117ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (386ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (77ms) - SetupLoadedEditorAssemblies (1230ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (15ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (7ms) - BeforeProcessingInitializeOnLoad (138ms) - ProcessInitializeOnLoadAttributes (775ms) - ProcessInitializeOnLoadMethodAttributes (283ms) - AfterProcessingInitializeOnLoad (12ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (22ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 14.71 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 7989. -Memory consumption went from 457.7 MB to 452.8 MB. -Total: 14.536000 ms (FindLiveObjects: 1.299700 ms CreateObjectMapping: 1.216000 ms MarkObjects: 8.475200 ms DeleteObjects: 3.543800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 25028.767493 seconds. - path: Assets/Textures/UI/Map Markers/Blue.png - artifactKey: Guid(73d9d75085c245a41817e8da2b2a7734) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Textures/UI/Map Markers/Blue.png using Guid(73d9d75085c245a41817e8da2b2a7734) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ea00b1757777b93c20b3718bea48b5f4') in 0.112691 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000048 seconds. - path: Assets/Textures/UI/Map Markers/NPC.png - artifactKey: Guid(66ecd96881db6d94ca602a89c55b23c1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Textures/UI/Map Markers/NPC.png using Guid(66ecd96881db6d94ca602a89c55b23c1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6c324abd5a1fa3fb937b82bef11352a4') in 0.030262 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000046 seconds. - path: Assets/Textures/UI/Map Markers/Temple.png - artifactKey: Guid(a50b8fc33f005964596e8862128954c4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Textures/UI/Map Markers/Temple.png using Guid(a50b8fc33f005964596e8862128954c4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '95316c2ae279b44f7089af29697b5f8f') in 0.078462 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/Textures/UI/Map Markers/Medic.png - artifactKey: Guid(16c269a963aa75843b78b429a211d579) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Textures/UI/Map Markers/Medic.png using Guid(16c269a963aa75843b78b429a211d579) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1a56e8938f8ace0dd52671d386d2b08a') in 0.041504 seconds -======================================================================== -Received Import Request. - Time since last request: 701.361882 seconds. - path: Assets/New Terrain.asset - artifactKey: Guid(e53cccbc2aede6c439da3dc36bd21e68) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/New Terrain.asset using Guid(e53cccbc2aede6c439da3dc36bd21e68) Importer(815301076,1909f56bfc062723c751e8b465ee728b) The tree CaveRockCATA_A couldn't be instanced because the prefab contains no valid mesh renderer. -The tree CaveRockCATA_B couldn't be instanced because the prefab contains no valid mesh renderer. -The tree CaveRockCATA_D couldn't be instanced because the prefab contains no valid mesh renderer. - -> (artifact id: '79835cfca9d840b67a142bd1416d08d7') in 0.163939 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000042 seconds. - path: Assets/StreamingAssets - artifactKey: Guid(ea1f45de908cfc345a9f697aebd9e75c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/StreamingAssets using Guid(ea1f45de908cfc345a9f697aebd9e75c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '81c83ac67ffe4acbec778964b4edbc89') in 0.007302 seconds -======================================================================== -Received Import Request. - Time since last request: 0.347903 seconds. - path: Assets/Terrain 0 2.asset - artifactKey: Guid(9b1aa4a88bb898048ae8f2ca2ed9da85) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Terrain 0 2.asset using Guid(9b1aa4a88bb898048ae8f2ca2ed9da85) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '1395d3fd8893887c57a7210862a17ab5') in 0.049240 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000030 seconds. - path: Assets/Terrain 0 3.asset - artifactKey: Guid(25826379c047f95408a50489117a7347) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Terrain 0 3.asset using Guid(25826379c047f95408a50489117a7347) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5670c9ac3bc4cf69efbbb70f9c091c9e') in 0.044971 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/Terrain 1 3.asset - artifactKey: Guid(b6c40ed783d86d544a9837a91c26e634) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Terrain 1 3.asset using Guid(b6c40ed783d86d544a9837a91c26e634) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '67fec5f44d2d97b84192a6f81e3b0af1') in 0.288899 seconds -======================================================================== -Received Import Request. - Time since last request: 19.326278 seconds. - path: Assets/Textures/UI/compass1.png - artifactKey: Guid(7d487a0880f4571438943b23d7083d68) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Textures/UI/compass1.png using Guid(7d487a0880f4571438943b23d7083d68) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8f960aaa862184e1dfd5bc79a5eca719') in 0.015574 seconds -======================================================================== -Received Import Request. - Time since last request: 54.912664 seconds. - path: Assets/Textures/UI/CompassBackground.png - artifactKey: Guid(97e76b9fe6385944da85946031e74b0b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Textures/UI/CompassBackground.png using Guid(97e76b9fe6385944da85946031e74b0b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bfe85d3cd860f4478d4c35c93ad8f804') in 0.017173 seconds -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.010258 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.57 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 2.873 seconds -Domain Reload Profiling: - ReloadAssembly (2874ms) - BeginReloadAssembly (313ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (8ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (79ms) - EndReloadAssembly (2390ms) - LoadAssemblies (243ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (767ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (78ms) - SetupLoadedEditorAssemblies (1230ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (15ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (5ms) - BeforeProcessingInitializeOnLoad (134ms) - ProcessInitializeOnLoadAttributes (755ms) - ProcessInitializeOnLoadMethodAttributes (311ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (19ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 11.41 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8013. -Memory consumption went from 457.8 MB to 452.9 MB. -Total: 7.852500 ms (FindLiveObjects: 0.791900 ms CreateObjectMapping: 0.732800 ms MarkObjects: 4.655600 ms DeleteObjects: 1.670700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.010463 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.25 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 1.911 seconds -Domain Reload Profiling: - ReloadAssembly (1912ms) - BeginReloadAssembly (175ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (67ms) - EndReloadAssembly (1627ms) - LoadAssemblies (113ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (358ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (62ms) - SetupLoadedEditorAssemblies (996ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (13ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (4ms) - BeforeProcessingInitializeOnLoad (117ms) - ProcessInitializeOnLoadAttributes (629ms) - ProcessInitializeOnLoadMethodAttributes (223ms) - AfterProcessingInitializeOnLoad (9ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (19ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 8.19 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8028. -Memory consumption went from 457.8 MB to 452.9 MB. -Total: 11.376400 ms (FindLiveObjects: 0.749900 ms CreateObjectMapping: 0.831600 ms MarkObjects: 8.137200 ms DeleteObjects: 1.656000 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.010101 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.25 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 2.058 seconds -Domain Reload Profiling: - ReloadAssembly (2059ms) - BeginReloadAssembly (180ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (67ms) - EndReloadAssembly (1765ms) - LoadAssemblies (118ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (357ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (75ms) - SetupLoadedEditorAssemblies (1101ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (13ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (4ms) - BeforeProcessingInitializeOnLoad (123ms) - ProcessInitializeOnLoadAttributes (688ms) - ProcessInitializeOnLoadMethodAttributes (263ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (24ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 10.29 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8043. -Memory consumption went from 457.8 MB to 452.9 MB. -Total: 8.776400 ms (FindLiveObjects: 0.810400 ms CreateObjectMapping: 0.804700 ms MarkObjects: 5.421500 ms DeleteObjects: 1.738300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.013555 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 6.96 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 2.156 seconds -Domain Reload Profiling: - ReloadAssembly (2156ms) - BeginReloadAssembly (170ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (60ms) - EndReloadAssembly (1864ms) - LoadAssemblies (113ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (373ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (69ms) - SetupLoadedEditorAssemblies (1185ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (15ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (7ms) - BeforeProcessingInitializeOnLoad (137ms) - ProcessInitializeOnLoadAttributes (749ms) - ProcessInitializeOnLoadMethodAttributes (267ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (23ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 11.93 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8058. -Memory consumption went from 457.9 MB to 452.9 MB. -Total: 7.391500 ms (FindLiveObjects: 0.763000 ms CreateObjectMapping: 0.682600 ms MarkObjects: 4.303300 ms DeleteObjects: 1.641500 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.010691 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.39 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 1.944 seconds -Domain Reload Profiling: - ReloadAssembly (1945ms) - BeginReloadAssembly (183ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (67ms) - EndReloadAssembly (1647ms) - LoadAssemblies (120ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (347ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (71ms) - SetupLoadedEditorAssemblies (1019ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (13ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (4ms) - BeforeProcessingInitializeOnLoad (117ms) - ProcessInitializeOnLoadAttributes (649ms) - ProcessInitializeOnLoadMethodAttributes (225ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (18ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 9.47 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8073. -Memory consumption went from 457.9 MB to 453.0 MB. -Total: 7.928700 ms (FindLiveObjects: 0.815700 ms CreateObjectMapping: 0.821200 ms MarkObjects: 4.648400 ms DeleteObjects: 1.642200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.013539 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.32 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 1.974 seconds -Domain Reload Profiling: - ReloadAssembly (1974ms) - BeginReloadAssembly (185ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (73ms) - EndReloadAssembly (1673ms) - LoadAssemblies (111ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (374ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (71ms) - SetupLoadedEditorAssemblies (1013ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (16ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (4ms) - BeforeProcessingInitializeOnLoad (115ms) - ProcessInitializeOnLoadAttributes (635ms) - ProcessInitializeOnLoadMethodAttributes (234ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (19ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 11.94 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8088. -Memory consumption went from 457.9 MB to 453.0 MB. -Total: 7.527300 ms (FindLiveObjects: 0.806400 ms CreateObjectMapping: 0.737800 ms MarkObjects: 4.374700 ms DeleteObjects: 1.607100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.011012 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 7.09 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 2.155 seconds -Domain Reload Profiling: - ReloadAssembly (2156ms) - BeginReloadAssembly (171ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (57ms) - EndReloadAssembly (1873ms) - LoadAssemblies (114ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (406ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (82ms) - SetupLoadedEditorAssemblies (1161ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (15ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (7ms) - BeforeProcessingInitializeOnLoad (134ms) - ProcessInitializeOnLoadAttributes (726ms) - ProcessInitializeOnLoadMethodAttributes (269ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (21ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 12.79 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8103. -Memory consumption went from 457.9 MB to 453.0 MB. -Total: 10.759600 ms (FindLiveObjects: 0.823600 ms CreateObjectMapping: 1.163500 ms MarkObjects: 6.620400 ms DeleteObjects: 2.150800 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.010218 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.29 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 2.031 seconds -Domain Reload Profiling: - ReloadAssembly (2031ms) - BeginReloadAssembly (197ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (75ms) - EndReloadAssembly (1704ms) - LoadAssemblies (132ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (379ms) - ReleaseScriptCaches (3ms) RebuildScriptCaches (65ms) - SetupLoadedEditorAssemblies (1038ms) + SetupLoadedEditorAssemblies (1112ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (17ms) + InitializePlatformSupportModulesInManaged (13ms) SetLoadedEditorAssemblies (1ms) RefreshPlugins (4ms) - BeforeProcessingInitializeOnLoad (124ms) - ProcessInitializeOnLoadAttributes (662ms) - ProcessInitializeOnLoadMethodAttributes (222ms) - AfterProcessingInitializeOnLoad (8ms) + BeforeProcessingInitializeOnLoad (117ms) + ProcessInitializeOnLoadAttributes (700ms) + ProcessInitializeOnLoadMethodAttributes (268ms) + AfterProcessingInitializeOnLoad (10ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (18ms) + AwakeInstancesAfterBackupRestoration (29ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 12.54 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 13.17 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8118. -Memory consumption went from 458.0 MB to 453.0 MB. -Total: 8.099900 ms (FindLiveObjects: 0.826500 ms CreateObjectMapping: 0.908700 ms MarkObjects: 4.653600 ms DeleteObjects: 1.709400 ms) +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 7968. +Memory consumption went from 457.4 MB to 452.5 MB. +Total: 11.296500 ms (FindLiveObjects: 1.399600 ms CreateObjectMapping: 1.387400 ms MarkObjects: 5.231300 ms DeleteObjects: 3.276400 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -1423,7 +816,7 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.011838 seconds. +Registered in 0.010133 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll @@ -1445,40 +838,40 @@ UnityEngine.Debug:LogError (object) UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () Mono: successfully reloaded assembly -- Completed reload, in 2.014 seconds +- Completed reload, in 2.035 seconds Domain Reload Profiling: - ReloadAssembly (2015ms) - BeginReloadAssembly (168ms) + ReloadAssembly (2036ms) + BeginReloadAssembly (169ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (59ms) - EndReloadAssembly (1732ms) - LoadAssemblies (111ms) + CreateAndSetChildDomain (60ms) + EndReloadAssembly (1754ms) + LoadAssemblies (120ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (370ms) - ReleaseScriptCaches (4ms) - RebuildScriptCaches (75ms) - SetupLoadedEditorAssemblies (1057ms) + SetupTypeCache (361ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (73ms) + SetupLoadedEditorAssemblies (1092ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (14ms) SetLoadedEditorAssemblies (1ms) RefreshPlugins (5ms) - BeforeProcessingInitializeOnLoad (140ms) - ProcessInitializeOnLoadAttributes (650ms) - ProcessInitializeOnLoadMethodAttributes (238ms) - AfterProcessingInitializeOnLoad (9ms) + BeforeProcessingInitializeOnLoad (123ms) + ProcessInitializeOnLoadAttributes (686ms) + ProcessInitializeOnLoadMethodAttributes (255ms) + AfterProcessingInitializeOnLoad (8ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (19ms) + AwakeInstancesAfterBackupRestoration (22ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 9.21 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 9.80 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8133. -Memory consumption went from 458.0 MB to 453.0 MB. -Total: 12.689400 ms (FindLiveObjects: 1.091400 ms CreateObjectMapping: 1.107000 ms MarkObjects: 8.149700 ms DeleteObjects: 2.339500 ms) +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 7983. +Memory consumption went from 457.4 MB to 452.5 MB. +Total: 8.749300 ms (FindLiveObjects: 0.930600 ms CreateObjectMapping: 0.999400 ms MarkObjects: 5.082700 ms DeleteObjects: 1.735100 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -1493,7 +886,567 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.010212 seconds. +Registered in 0.010374 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.884 seconds +Domain Reload Profiling: + ReloadAssembly (1884ms) + BeginReloadAssembly (164ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (60ms) + EndReloadAssembly (1605ms) + LoadAssemblies (113ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (338ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (62ms) + SetupLoadedEditorAssemblies (990ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (114ms) + ProcessInitializeOnLoadAttributes (615ms) + ProcessInitializeOnLoadMethodAttributes (233ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.85 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 7998. +Memory consumption went from 457.4 MB to 452.5 MB. +Total: 7.830400 ms (FindLiveObjects: 0.829200 ms CreateObjectMapping: 0.870600 ms MarkObjects: 4.452600 ms DeleteObjects: 1.676400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.012789 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 5.97 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.089 seconds +Domain Reload Profiling: + ReloadAssembly (2090ms) + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (61ms) + EndReloadAssembly (1795ms) + LoadAssemblies (119ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (387ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (71ms) + SetupLoadedEditorAssemblies (1102ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (6ms) + BeforeProcessingInitializeOnLoad (129ms) + ProcessInitializeOnLoadAttributes (685ms) + ProcessInitializeOnLoadMethodAttributes (260ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 9.97 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8013. +Memory consumption went from 457.4 MB to 452.5 MB. +Total: 7.707600 ms (FindLiveObjects: 0.761900 ms CreateObjectMapping: 0.708900 ms MarkObjects: 4.460300 ms DeleteObjects: 1.775000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010386 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.585 seconds +Domain Reload Profiling: + ReloadAssembly (2585ms) + BeginReloadAssembly (301ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (78ms) + EndReloadAssembly (2149ms) + LoadAssemblies (239ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (718ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (64ms) + SetupLoadedEditorAssemblies (1111ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (117ms) + ProcessInitializeOnLoadAttributes (661ms) + ProcessInitializeOnLoadMethodAttributes (304ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 9.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8028. +Memory consumption went from 457.5 MB to 452.5 MB. +Total: 8.592700 ms (FindLiveObjects: 0.787700 ms CreateObjectMapping: 0.815900 ms MarkObjects: 5.321600 ms DeleteObjects: 1.665900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010183 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.894 seconds +Domain Reload Profiling: + ReloadAssembly (1895ms) + BeginReloadAssembly (169ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (64ms) + EndReloadAssembly (1612ms) + LoadAssemblies (109ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (353ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (67ms) + SetupLoadedEditorAssemblies (985ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (12ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (118ms) + ProcessInitializeOnLoadAttributes (610ms) + ProcessInitializeOnLoadMethodAttributes (230ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (22ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.86 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8043. +Memory consumption went from 457.5 MB to 452.5 MB. +Total: 7.401300 ms (FindLiveObjects: 0.762000 ms CreateObjectMapping: 0.670300 ms MarkObjects: 4.367100 ms DeleteObjects: 1.600400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.011226 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.48 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.019 seconds +Domain Reload Profiling: + ReloadAssembly (2020ms) + BeginReloadAssembly (176ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (59ms) + EndReloadAssembly (1732ms) + LoadAssemblies (117ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (347ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (70ms) + SetupLoadedEditorAssemblies (1098ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (123ms) + ProcessInitializeOnLoadAttributes (694ms) + ProcessInitializeOnLoadMethodAttributes (254ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (26ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 9.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8058. +Memory consumption went from 457.5 MB to 452.6 MB. +Total: 9.131700 ms (FindLiveObjects: 0.769300 ms CreateObjectMapping: 0.713200 ms MarkObjects: 5.609200 ms DeleteObjects: 2.038500 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.012936 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.000 seconds +Domain Reload Profiling: + ReloadAssembly (2000ms) + BeginReloadAssembly (160ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (55ms) + EndReloadAssembly (1719ms) + LoadAssemblies (104ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (366ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (72ms) + SetupLoadedEditorAssemblies (1066ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (129ms) + ProcessInitializeOnLoadAttributes (663ms) + ProcessInitializeOnLoadMethodAttributes (244ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (20ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 10.83 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8073. +Memory consumption went from 457.3 MB to 452.4 MB. +Total: 10.318800 ms (FindLiveObjects: 0.886400 ms CreateObjectMapping: 1.128400 ms MarkObjects: 6.585200 ms DeleteObjects: 1.717300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.011733 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 5.06 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.080 seconds +Domain Reload Profiling: + ReloadAssembly (2081ms) + BeginReloadAssembly (175ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (65ms) + EndReloadAssembly (1778ms) + LoadAssemblies (116ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (362ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (78ms) + SetupLoadedEditorAssemblies (1112ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (121ms) + ProcessInitializeOnLoadAttributes (706ms) + ProcessInitializeOnLoadMethodAttributes (258ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (20ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 9.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8088. +Memory consumption went from 457.4 MB to 452.4 MB. +Total: 11.254700 ms (FindLiveObjects: 0.859100 ms CreateObjectMapping: 1.201000 ms MarkObjects: 7.260900 ms DeleteObjects: 1.932300 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.009796 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 5.06 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.894 seconds +Domain Reload Profiling: + ReloadAssembly (1895ms) + BeginReloadAssembly (160ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + EndReloadAssembly (1626ms) + LoadAssemblies (106ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (348ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (68ms) + SetupLoadedEditorAssemblies (1000ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (113ms) + ProcessInitializeOnLoadAttributes (629ms) + ProcessInitializeOnLoadMethodAttributes (232ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 9.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8103. +Memory consumption went from 457.4 MB to 452.5 MB. +Total: 7.820300 ms (FindLiveObjects: 0.841400 ms CreateObjectMapping: 0.885800 ms MarkObjects: 4.256000 ms DeleteObjects: 1.835400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010335 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll @@ -1515,40 +1468,390 @@ UnityEngine.Debug:LogError (object) UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () Mono: successfully reloaded assembly -- Completed reload, in 1.895 seconds +- Completed reload, in 1.890 seconds Domain Reload Profiling: - ReloadAssembly (1896ms) + ReloadAssembly (1891ms) BeginReloadAssembly (161ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (54ms) - EndReloadAssembly (1625ms) - LoadAssemblies (106ms) + CreateAndSetChildDomain (55ms) + EndReloadAssembly (1617ms) + LoadAssemblies (96ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (351ms) + SetupTypeCache (362ms) ReleaseScriptCaches (3ms) - RebuildScriptCaches (66ms) - SetupLoadedEditorAssemblies (1010ms) + RebuildScriptCaches (62ms) + SetupLoadedEditorAssemblies (994ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (112ms) + ProcessInitializeOnLoadAttributes (626ms) + ProcessInitializeOnLoadMethodAttributes (229ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.05 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8118. +Memory consumption went from 457.5 MB to 452.5 MB. +Total: 7.148500 ms (FindLiveObjects: 0.812900 ms CreateObjectMapping: 0.763400 ms MarkObjects: 3.961000 ms DeleteObjects: 1.610200 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010601 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.29 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.418 seconds +Domain Reload Profiling: + ReloadAssembly (2418ms) + BeginReloadAssembly (257ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (65ms) + EndReloadAssembly (2024ms) + LoadAssemblies (198ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (610ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (67ms) + SetupLoadedEditorAssemblies (1055ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (112ms) + ProcessInitializeOnLoadAttributes (628ms) + ProcessInitializeOnLoadMethodAttributes (287ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 9.80 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8133. +Memory consumption went from 457.5 MB to 452.5 MB. +Total: 8.042900 ms (FindLiveObjects: 0.847000 ms CreateObjectMapping: 0.888000 ms MarkObjects: 4.702600 ms DeleteObjects: 1.604400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.012348 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.29 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.931 seconds +Domain Reload Profiling: + ReloadAssembly (1932ms) + BeginReloadAssembly (152ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (51ms) + EndReloadAssembly (1667ms) + LoadAssemblies (96ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (368ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (75ms) + SetupLoadedEditorAssemblies (1009ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (12ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (119ms) + ProcessInitializeOnLoadAttributes (630ms) + ProcessInitializeOnLoadMethodAttributes (234ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (21ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 13.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8148. +Memory consumption went from 457.5 MB to 452.6 MB. +Total: 7.132900 ms (FindLiveObjects: 0.790300 ms CreateObjectMapping: 0.681100 ms MarkObjects: 4.030400 ms DeleteObjects: 1.630100 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010868 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.083 seconds +Domain Reload Profiling: + ReloadAssembly (2084ms) + BeginReloadAssembly (173ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (57ms) + EndReloadAssembly (1802ms) + LoadAssemblies (119ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (372ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (83ms) + SetupLoadedEditorAssemblies (1120ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (137ms) + ProcessInitializeOnLoadAttributes (705ms) + ProcessInitializeOnLoadMethodAttributes (247ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (27ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 10.95 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8163. +Memory consumption went from 457.5 MB to 452.6 MB. +Total: 8.566600 ms (FindLiveObjects: 0.844300 ms CreateObjectMapping: 0.798900 ms MarkObjects: 5.315900 ms DeleteObjects: 1.606400 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.013234 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 5.25 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.326 seconds +Domain Reload Profiling: + ReloadAssembly (2327ms) + BeginReloadAssembly (203ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (77ms) + EndReloadAssembly (1986ms) + LoadAssemblies (140ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (454ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (82ms) + SetupLoadedEditorAssemblies (1188ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (16ms) SetLoadedEditorAssemblies (1ms) - RefreshPlugins (4ms) - BeforeProcessingInitializeOnLoad (118ms) - ProcessInitializeOnLoadAttributes (634ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (141ms) + ProcessInitializeOnLoadAttributes (730ms) + ProcessInitializeOnLoadMethodAttributes (284ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 11.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8178. +Memory consumption went from 457.5 MB to 452.6 MB. +Total: 10.756100 ms (FindLiveObjects: 1.004900 ms CreateObjectMapping: 0.996100 ms MarkObjects: 6.826700 ms DeleteObjects: 1.926900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.011449 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 5.51 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.878 seconds +Domain Reload Profiling: + ReloadAssembly (1879ms) + BeginReloadAssembly (151ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (52ms) + EndReloadAssembly (1614ms) + LoadAssemblies (98ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (343ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (69ms) + SetupLoadedEditorAssemblies (993ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (6ms) + BeforeProcessingInitializeOnLoad (125ms) + ProcessInitializeOnLoadAttributes (613ms) ProcessInitializeOnLoadMethodAttributes (228ms) AfterProcessingInitializeOnLoad (8ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (18ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 8.30 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 8.04 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8148. -Memory consumption went from 458.0 MB to 453.1 MB. -Total: 6.989200 ms (FindLiveObjects: 0.789800 ms CreateObjectMapping: 0.715100 ms MarkObjects: 3.887100 ms DeleteObjects: 1.595900 ms) +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8193. +Memory consumption went from 457.6 MB to 452.6 MB. +Total: 6.922100 ms (FindLiveObjects: 0.749300 ms CreateObjectMapping: 0.627400 ms MarkObjects: 3.962700 ms DeleteObjects: 1.581400 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -1563,12 +1866,12 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.011179 seconds. +Registered in 0.013405 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.74 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 4.44 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 @@ -1585,250 +1888,40 @@ UnityEngine.Debug:LogError (object) UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () Mono: successfully reloaded assembly -- Completed reload, in 2.115 seconds +- Completed reload, in 2.020 seconds Domain Reload Profiling: - ReloadAssembly (2116ms) - BeginReloadAssembly (169ms) + ReloadAssembly (2021ms) + BeginReloadAssembly (176ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) + DisableScriptedObjects (8ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (66ms) - EndReloadAssembly (1828ms) - LoadAssemblies (107ms) + CreateAndSetChildDomain (60ms) + EndReloadAssembly (1738ms) + LoadAssemblies (110ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (386ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (71ms) - SetupLoadedEditorAssemblies (1134ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (16ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (5ms) - BeforeProcessingInitializeOnLoad (131ms) - ProcessInitializeOnLoadAttributes (719ms) - ProcessInitializeOnLoadMethodAttributes (251ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (22ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 12.60 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8163. -Memory consumption went from 458.0 MB to 453.1 MB. -Total: 9.453200 ms (FindLiveObjects: 0.930900 ms CreateObjectMapping: 1.027900 ms MarkObjects: 5.545800 ms DeleteObjects: 1.946900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.010933 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.28 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 1.921 seconds -Domain Reload Profiling: - ReloadAssembly (1922ms) - BeginReloadAssembly (162ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (56ms) - EndReloadAssembly (1643ms) - LoadAssemblies (104ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (339ms) + SetupTypeCache (354ms) ReleaseScriptCaches (3ms) RebuildScriptCaches (62ms) - SetupLoadedEditorAssemblies (1038ms) + SetupLoadedEditorAssemblies (1101ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (13ms) SetLoadedEditorAssemblies (1ms) - RefreshPlugins (4ms) - BeforeProcessingInitializeOnLoad (123ms) - ProcessInitializeOnLoadAttributes (654ms) - ProcessInitializeOnLoadMethodAttributes (235ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (19ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 10.24 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8178. -Memory consumption went from 458.0 MB to 453.1 MB. -Total: 11.610400 ms (FindLiveObjects: 0.819800 ms CreateObjectMapping: 0.895700 ms MarkObjects: 7.838900 ms DeleteObjects: 2.054300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.010000 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 5.16 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 2.035 seconds -Domain Reload Profiling: - ReloadAssembly (2035ms) - BeginReloadAssembly (165ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (53ms) - EndReloadAssembly (1759ms) - LoadAssemblies (117ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (368ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (80ms) - SetupLoadedEditorAssemblies (1075ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (14ms) - SetLoadedEditorAssemblies (1ms) RefreshPlugins (5ms) - BeforeProcessingInitializeOnLoad (126ms) - ProcessInitializeOnLoadAttributes (695ms) - ProcessInitializeOnLoadMethodAttributes (226ms) - AfterProcessingInitializeOnLoad (8ms) + BeforeProcessingInitializeOnLoad (129ms) + ProcessInitializeOnLoadAttributes (701ms) + ProcessInitializeOnLoadMethodAttributes (244ms) + AfterProcessingInitializeOnLoad (9ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (19ms) + AwakeInstancesAfterBackupRestoration (24ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 10.88 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 8.94 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8193. -Memory consumption went from 458.1 MB to 453.1 MB. -Total: 11.057900 ms (FindLiveObjects: 1.026800 ms CreateObjectMapping: 1.361800 ms MarkObjects: 6.865400 ms DeleteObjects: 1.802700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.010127 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 5.54 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 2.287 seconds -Domain Reload Profiling: - ReloadAssembly (2288ms) - BeginReloadAssembly (175ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (64ms) - EndReloadAssembly (1996ms) - LoadAssemblies (119ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (364ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (77ms) - SetupLoadedEditorAssemblies (1310ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (16ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (6ms) - BeforeProcessingInitializeOnLoad (139ms) - ProcessInitializeOnLoadAttributes (809ms) - ProcessInitializeOnLoadMethodAttributes (328ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (25ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 9.73 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8208. -Memory consumption went from 458.1 MB to 453.2 MB. -Total: 9.448200 ms (FindLiveObjects: 1.020100 ms CreateObjectMapping: 0.974300 ms MarkObjects: 5.665900 ms DeleteObjects: 1.786100 ms) +Memory consumption went from 457.6 MB to 452.7 MB. +Total: 7.357200 ms (FindLiveObjects: 0.806100 ms CreateObjectMapping: 0.835700 ms MarkObjects: 4.095900 ms DeleteObjects: 1.618200 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -1843,12 +1936,12 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.011017 seconds. +Registered in 0.010662 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.28 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 4.52 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 @@ -1865,110 +1958,40 @@ UnityEngine.Debug:LogError (object) UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () Mono: successfully reloaded assembly -- Completed reload, in 1.867 seconds +- Completed reload, in 2.098 seconds Domain Reload Profiling: - ReloadAssembly (1868ms) - BeginReloadAssembly (156ms) + ReloadAssembly (2098ms) + BeginReloadAssembly (177ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (53ms) - EndReloadAssembly (1597ms) - LoadAssemblies (98ms) + CreateAndSetChildDomain (71ms) + EndReloadAssembly (1804ms) + LoadAssemblies (114ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (344ms) + SetupTypeCache (383ms) ReleaseScriptCaches (3ms) - RebuildScriptCaches (63ms) - SetupLoadedEditorAssemblies (992ms) + RebuildScriptCaches (69ms) + SetupLoadedEditorAssemblies (1120ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (13ms) SetLoadedEditorAssemblies (1ms) - RefreshPlugins (4ms) - BeforeProcessingInitializeOnLoad (120ms) - ProcessInitializeOnLoadAttributes (626ms) - ProcessInitializeOnLoadMethodAttributes (219ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (17ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 9.08 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8223. -Memory consumption went from 458.1 MB to 453.2 MB. -Total: 7.725600 ms (FindLiveObjects: 0.849100 ms CreateObjectMapping: 0.784500 ms MarkObjects: 4.459300 ms DeleteObjects: 1.630900 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.010280 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.74 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 2.024 seconds -Domain Reload Profiling: - ReloadAssembly (2025ms) - BeginReloadAssembly (162ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (57ms) - EndReloadAssembly (1752ms) - LoadAssemblies (103ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (366ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (73ms) - SetupLoadedEditorAssemblies (1094ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (14ms) - SetLoadedEditorAssemblies (1ms) RefreshPlugins (5ms) BeforeProcessingInitializeOnLoad (132ms) ProcessInitializeOnLoadAttributes (699ms) - ProcessInitializeOnLoadMethodAttributes (234ms) - AfterProcessingInitializeOnLoad (10ms) + ProcessInitializeOnLoadMethodAttributes (261ms) + AfterProcessingInitializeOnLoad (8ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (18ms) + AwakeInstancesAfterBackupRestoration (20ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 13.07 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 9.94 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8238. -Memory consumption went from 458.1 MB to 453.2 MB. -Total: 12.186000 ms (FindLiveObjects: 0.921000 ms CreateObjectMapping: 0.951400 ms MarkObjects: 8.146700 ms DeleteObjects: 2.165400 ms) +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8223. +Memory consumption went from 457.6 MB to 452.7 MB. +Total: 10.314300 ms (FindLiveObjects: 1.026500 ms CreateObjectMapping: 0.999000 ms MarkObjects: 6.528800 ms DeleteObjects: 1.758300 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -1983,12 +2006,12 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.010329 seconds. +Registered in 0.009942 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.40 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 4.34 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 @@ -2005,40 +2028,40 @@ UnityEngine.Debug:LogError (object) UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () Mono: successfully reloaded assembly -- Completed reload, in 1.914 seconds +- Completed reload, in 2.408 seconds Domain Reload Profiling: - ReloadAssembly (1915ms) - BeginReloadAssembly (169ms) + ReloadAssembly (2409ms) + BeginReloadAssembly (244ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (62ms) - EndReloadAssembly (1632ms) - LoadAssemblies (105ms) + CreateAndSetChildDomain (55ms) + EndReloadAssembly (2055ms) + LoadAssemblies (191ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (345ms) + SetupTypeCache (646ms) ReleaseScriptCaches (3ms) - RebuildScriptCaches (66ms) - SetupLoadedEditorAssemblies (1009ms) + RebuildScriptCaches (62ms) + SetupLoadedEditorAssemblies (1081ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (14ms) + InitializePlatformSupportModulesInManaged (13ms) SetLoadedEditorAssemblies (1ms) RefreshPlugins (4ms) - BeforeProcessingInitializeOnLoad (123ms) - ProcessInitializeOnLoadAttributes (624ms) - ProcessInitializeOnLoadMethodAttributes (233ms) - AfterProcessingInitializeOnLoad (9ms) + BeforeProcessingInitializeOnLoad (116ms) + ProcessInitializeOnLoadAttributes (634ms) + ProcessInitializeOnLoadMethodAttributes (302ms) + AfterProcessingInitializeOnLoad (11ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (19ms) + AwakeInstancesAfterBackupRestoration (24ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 8.17 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 9.12 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8253. -Memory consumption went from 458.2 MB to 453.2 MB. -Total: 7.311000 ms (FindLiveObjects: 0.784100 ms CreateObjectMapping: 0.640300 ms MarkObjects: 4.284800 ms DeleteObjects: 1.599900 ms) +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8238. +Memory consumption went from 457.7 MB to 452.7 MB. +Total: 8.343100 ms (FindLiveObjects: 1.007900 ms CreateObjectMapping: 0.888800 ms MarkObjects: 4.531000 ms DeleteObjects: 1.913700 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -2053,12 +2076,12 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.013162 seconds. +Registered in 0.011445 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.80 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 6.10 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 @@ -2078,339 +2101,37 @@ Mono: successfully reloaded assembly - Completed reload, in 2.102 seconds Domain Reload Profiling: ReloadAssembly (2103ms) - BeginReloadAssembly (161ms) + BeginReloadAssembly (169ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (58ms) + CreateAndSetChildDomain (57ms) EndReloadAssembly (1815ms) - LoadAssemblies (104ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (371ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (75ms) - SetupLoadedEditorAssemblies (1136ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (15ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (5ms) - BeforeProcessingInitializeOnLoad (141ms) - ProcessInitializeOnLoadAttributes (706ms) - ProcessInitializeOnLoadMethodAttributes (259ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (23ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 11.77 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8268. -Memory consumption went from 458.2 MB to 453.3 MB. -Total: 8.896200 ms (FindLiveObjects: 0.810400 ms CreateObjectMapping: 0.736200 ms MarkObjects: 4.908800 ms DeleteObjects: 2.439100 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 16430.333598 seconds. - path: Assets/RPG Creation Kit/Scripts/Cells System/Demo/Worldspaces/Interiors/[WORLDSPACE] Interiors Worldspace.asset - artifactKey: Guid(86b7d29b634754d4da7dd5794f671036) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Scripts/Cells System/Demo/Worldspaces/Interiors/[WORLDSPACE] Interiors Worldspace.asset using Guid(86b7d29b634754d4da7dd5794f671036) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '08d5c0fc6d8a172c7d7f495fed887dfd') in 0.070490 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000043 seconds. - path: Assets/Daz3D/Architecture/Med Class/FirePlace/FirePlace_Stones/ARCStones2_M-FireplaceInterior_Normal-OGL.png - artifactKey: Guid(adf0b0a85c3bdaf4d837e7e05c8bc867) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Architecture/Med Class/FirePlace/FirePlace_Stones/ARCStones2_M-FireplaceInterior_Normal-OGL.png using Guid(adf0b0a85c3bdaf4d837e7e05c8bc867) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '79cbc857482b5b1ffdc0d8a88ef8dee1') in 0.052093 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000043 seconds. - path: Assets/Toby Fredson/Modular Dungeon Catacombs - Mobile/Profile Settings_HDRP/CATAMSecene_Level_Interior.asset - artifactKey: Guid(681bdf5a84724564e95500f220e7442f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Toby Fredson/Modular Dungeon Catacombs - Mobile/Profile Settings_HDRP/CATAMSecene_Level_Interior.asset using Guid(681bdf5a84724564e95500f220e7442f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9cdc1c27aa81678bf795c61a6d53863f') in 0.017878 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000034 seconds. - path: Assets/RPG Creation Kit/Animations/First Person/One Handed/fbx/Base-Male-Human-FP-Arms-ROneHanded-Swing-Interrupted.fbx - artifactKey: Guid(77a82e1adb7c18f40ae7286b0eb363d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Animations/First Person/One Handed/fbx/Base-Male-Human-FP-Arms-ROneHanded-Swing-Interrupted.fbx using Guid(77a82e1adb7c18f40ae7286b0eb363d1) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a04342cf79fe6becd404582d15aaa163') in 0.387076 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000044 seconds. - path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Interact/OpenDoorRight.fbx - artifactKey: Guid(1613e4de8eca85d4aaf3573ed24fd223) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Interact/OpenDoorRight.fbx using Guid(1613e4de8eca85d4aaf3573ed24fd223) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '780c803281349cd0b98b04c2fc3be8b6') in 0.024370 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000102 seconds. - path: Assets/Opsive/UltimateCharacterController/Demo/Audio/Scene/InteractDoorClose.wav - artifactKey: Guid(1345d5cef99213c44abcb9dc37c9f2a0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Opsive/UltimateCharacterController/Demo/Audio/Scene/InteractDoorClose.wav using Guid(1345d5cef99213c44abcb9dc37c9f2a0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b748f9245b690de8f64d6a2ea50ae323') in 0.022906 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000035 seconds. - path: Assets/Opsive/UltimateCharacterController/Demo/Audio/Scene/InteractDoorOpenClose.wav - artifactKey: Guid(29f8351b2918d6843b778939d26a87a3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Opsive/UltimateCharacterController/Demo/Audio/Scene/InteractDoorOpenClose.wav using Guid(29f8351b2918d6843b778939d26a87a3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ca26188225552c4922a514cf1e2a4636') in 0.021027 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000035 seconds. - path: Assets/Opsive/UltimateCharacterController/Demo/Audio/Scene/InteractChest.wav - artifactKey: Guid(9811115b81659e24f973203d5a1dca0f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Opsive/UltimateCharacterController/Demo/Audio/Scene/InteractChest.wav using Guid(9811115b81659e24f973203d5a1dca0f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fd0ad220b3a94615bc303182b4bad2f5') in 0.019798 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000041 seconds. - path: Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Interact/OpenChest.fbx - artifactKey: Guid(371b71358f533c0458683c4774a5fceb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Opsive/UltimateCharacterController/Demo/Animations/Abilities/Interact/OpenChest.fbx using Guid(371b71358f533c0458683c4774a5fceb) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6aa411421df899b79ab6d73648271dd0') in 0.026580 seconds -======================================================================== -Received Import Request. - Time since last request: 37.791582 seconds. - path: Assets/RPG Creation Kit/Scripts/Inventory System/Character Tab/Icons/PlayerIconWhite.png - artifactKey: Guid(183f02f4fcaa7494c980d573b215aeb3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Scripts/Inventory System/Character Tab/Icons/PlayerIconWhite.png using Guid(183f02f4fcaa7494c980d573b215aeb3) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '150201669b2dbe301ffdb13884826420') in 0.043518 seconds -======================================================================== -Received Import Request. - Time since last request: 0.268880 seconds. - path: Assets/RPG Creation Kit/Scripts/BehaviourTrees/Builtin Behaviours/Purpose Behaviours/[BTree] [P] RyanSpeaksToPlayerAfterAmbush.asset - artifactKey: Guid(a6aa2cc616065614eb636038dd272382) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Scripts/BehaviourTrees/Builtin Behaviours/Purpose Behaviours/[BTree] [P] RyanSpeaksToPlayerAfterAmbush.asset using Guid(a6aa2cc616065614eb636038dd272382) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e74d760b970212dd27d16b723c1d5e62') in 0.020283 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000031 seconds. - path: Assets/RPG Creation Kit/Demos/__RckDemo__/Factions/[FACTION] _Player.asset - artifactKey: Guid(44e8e3b731a2a1043b211ab223b2439a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Factions/[FACTION] _Player.asset using Guid(44e8e3b731a2a1043b211ab223b2439a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bab8ed213d913def3489e8d378102b34') in 0.016915 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000030 seconds. - path: Assets/RPG Creation Kit/Scripts/BehaviourTrees/Builtin Behaviours/Purpose Behaviours/[BTree] [P] Speak To Player (Walk).asset - artifactKey: Guid(475c7cb9a399f92449461ed496106db5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Scripts/BehaviourTrees/Builtin Behaviours/Purpose Behaviours/[BTree] [P] Speak To Player (Walk).asset using Guid(475c7cb9a399f92449461ed496106db5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '89230017f89eb499ddd387d303729e8d') in 0.017911 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000031 seconds. - path: Assets/RPG Creation Kit/Demos/__RckDemo__/Specific Behaviours/[S_BTree] TheThiefOfTheDeadFollowPlayerBehaviour.asset - artifactKey: Guid(7ee06098b39e0c243a45fc81ace1498a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Specific Behaviours/[S_BTree] TheThiefOfTheDeadFollowPlayerBehaviour.asset using Guid(7ee06098b39e0c243a45fc81ace1498a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '46ab23effb8e9440ce7256d7784a6b8c') in 0.029941 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/RPG Creation Kit/Scripts/BehaviourTrees/Builtin Behaviours/Purpose Behaviours/[BTree] [P] Speak To Player.asset - artifactKey: Guid(f30648f70b6c6284b9039cde2d1a998b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Scripts/BehaviourTrees/Builtin Behaviours/Purpose Behaviours/[BTree] [P] Speak To Player.asset using Guid(f30648f70b6c6284b9039cde2d1a998b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c73a9316d59d818928f6bdfc98db4ec0') in 0.010450 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000059 seconds. - path: Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/Red Shade Questline/One of them/[DIALOGUE] MackWaitsForPlayerToKillCount.asset - artifactKey: Guid(0ea94be36b4fce94281d88dfa6c648f4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/Red Shade Questline/One of them/[DIALOGUE] MackWaitsForPlayerToKillCount.asset using Guid(0ea94be36b4fce94281d88dfa6c648f4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '652f733d695403687a2be3210da099f1') in 0.318685 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000056 seconds. - path: Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/Red Shade Questline/One of them/[DIALOGUE] MackWaitsForPlayerToWearArmor.asset - artifactKey: Guid(ca71705b45e84fa42a211a333e8d2a90) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/Red Shade Questline/One of them/[DIALOGUE] MackWaitsForPlayerToWearArmor.asset using Guid(ca71705b45e84fa42a211a333e8d2a90) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '51ecf2ce08c7b418d54a85e4cf61e95c') in 0.092026 seconds -======================================================================== -Received Import Request. - Time since last request: 1471.589304 seconds. - path: Assets/RPG Creation Kit/Prefab Library/AI/[AI] ThiefOfTheDead001.prefab - artifactKey: Guid(df09a59236c350a47b961b24c2cd4a3c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Prefab Library/AI/[AI] ThiefOfTheDead001.prefab using Guid(df09a59236c350a47b961b24c2cd4a3c) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c90b4d46c0abf0d1bce7bc188a06bee7') in 132.974141 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000045 seconds. - path: Assets/RPG Creation Kit/Scripts/Player/ThirdPersonPlayer.cs - artifactKey: Guid(b3e1748a16512cd4c8ca172d4acc5380) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Scripts/Player/ThirdPersonPlayer.cs using Guid(b3e1748a16512cd4c8ca172d4acc5380) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2370a13990c30c26517f3dcbe2bf629e') in 0.014138 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000052 seconds. - path: Assets/RPG Creation Kit/Demos/__RckDemo__/Specific Behaviours/[S_BTree] TheThiefOfTheDeadDefaultBehaviour.asset - artifactKey: Guid(0a0fdea0d0fe99a45b815e4067a43489) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Specific Behaviours/[S_BTree] TheThiefOfTheDeadDefaultBehaviour.asset using Guid(0a0fdea0d0fe99a45b815e4067a43489) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '47f0bb68f59eb65ae4e5185e105d5ff1') in 0.025766 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000053 seconds. - path: Assets/Kevin Iglesias/Basic Motions/Animations/Misc/BasicMotions@SitHigh01.fbx - artifactKey: Guid(997f5c8b30f156d48b5c84a1c2198929) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Kevin Iglesias/Basic Motions/Animations/Misc/BasicMotions@SitHigh01.fbx using Guid(997f5c8b30f156d48b5c84a1c2198929) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c988a5c1848346914d48ef41ee9264cc') in 0.031705 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000036 seconds. - path: Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/Every Man's Nightmare/[DIALOGUE] TheThiefOfTheDeadPackingUpDialogue.asset - artifactKey: Guid(ed329b2b827889947a58190ca4fec8e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/Every Man's Nightmare/[DIALOGUE] TheThiefOfTheDeadPackingUpDialogue.asset using Guid(ed329b2b827889947a58190ca4fec8e4) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'cd182c2d895a3ef4365cab281f00092e') in 0.010702 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000044 seconds. - path: Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/Every Man's Nightmare/[DIALOGUE] TheThiefOfTheDeadKeepDiggingDialogue.asset - artifactKey: Guid(3987eefd90391f04992244617642c368) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/Every Man's Nightmare/[DIALOGUE] TheThiefOfTheDeadKeepDiggingDialogue.asset using Guid(3987eefd90391f04992244617642c368) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2ce55ef78f07592dd0e3af2e07d631ad') in 0.010215 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000032 seconds. - path: Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/Every Man's Nightmare/[DIALOGUE] TheThiefOfTheDeadDefaultDialogue.asset - artifactKey: Guid(5c93e1c1599aeae44a64d1425cf69b61) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Dialogues/Quest Related/Every Man's Nightmare/[DIALOGUE] TheThiefOfTheDeadDefaultDialogue.asset using Guid(5c93e1c1599aeae44a64d1425cf69b61) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b3dfb7de210c19e1d5a6e0ec76bf3c72') in 0.021573 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000042 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Body.prefab - artifactKey: Guid(ddf6a9dc3b4549f4b911f7cf7b63f026) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Body.prefab using Guid(ddf6a9dc3b4549f4b911f7cf7b63f026) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2f2229f5231270ba74f5ae1d9948bf28') in 7.831864 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000047 seconds. - path: Assets/Daz3D/Races/Ozias/Female/Body.prefab - artifactKey: Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Female/Body.prefab using Guid(8d2cdf4f031cfe047953b6c6e203abff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '62bed41052830d6c52612ce5cc4563f8') in 7.685791 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000055 seconds. - path: Assets/Daz3D/Races/Fi/Male/Body.prefab - artifactKey: Guid(7978de8ca735b5448bb28071841ee21b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Fi/Male/Body.prefab using Guid(7978de8ca735b5448bb28071841ee21b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f95ffa025b9213ca13a2b559bf2be9eb') in 2.138465 seconds -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.010488 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 5.61 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 2.247 seconds -Domain Reload Profiling: - ReloadAssembly (2248ms) - BeginReloadAssembly (177ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (67ms) - EndReloadAssembly (1961ms) - LoadAssemblies (123ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (387ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (82ms) - SetupLoadedEditorAssemblies (1231ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (18ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (6ms) - BeforeProcessingInitializeOnLoad (135ms) - ProcessInitializeOnLoadAttributes (794ms) - ProcessInitializeOnLoadMethodAttributes (270ms) - AfterProcessingInitializeOnLoad (8ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (27ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 8.59 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8331. -Memory consumption went from 463.4 MB to 458.5 MB. -Total: 8.982500 ms (FindLiveObjects: 0.805000 ms CreateObjectMapping: 0.672900 ms MarkObjects: 5.558900 ms DeleteObjects: 1.944300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.010876 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.89 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 2.116 seconds -Domain Reload Profiling: - ReloadAssembly (2117ms) - BeginReloadAssembly (179ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (70ms) - EndReloadAssembly (1827ms) LoadAssemblies (113ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (359ms) - ReleaseScriptCaches (4ms) - RebuildScriptCaches (69ms) - SetupLoadedEditorAssemblies (1159ms) + SetupTypeCache (400ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (73ms) + SetupLoadedEditorAssemblies (1106ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (15ms) + InitializePlatformSupportModulesInManaged (14ms) SetLoadedEditorAssemblies (1ms) - RefreshPlugins (5ms) - BeforeProcessingInitializeOnLoad (136ms) - ProcessInitializeOnLoadAttributes (718ms) - ProcessInitializeOnLoadMethodAttributes (275ms) - AfterProcessingInitializeOnLoad (9ms) + RefreshPlugins (6ms) + BeforeProcessingInitializeOnLoad (128ms) + ProcessInitializeOnLoadAttributes (695ms) + ProcessInitializeOnLoadMethodAttributes (252ms) + AfterProcessingInitializeOnLoad (10ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (22ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 9.07 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 9.85 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8346. -Memory consumption went from 463.4 MB to 458.4 MB. -Total: 12.023200 ms (FindLiveObjects: 0.834700 ms CreateObjectMapping: 0.869900 ms MarkObjects: 8.160600 ms DeleteObjects: 2.156700 ms) +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8253. +Memory consumption went from 457.7 MB to 452.7 MB. +Total: 9.182600 ms (FindLiveObjects: 0.938000 ms CreateObjectMapping: 0.979500 ms MarkObjects: 5.129700 ms DeleteObjects: 2.133800 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -2425,7 +2146,433 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.009881 seconds. +Registered in 0.010393 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 6.56 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.924 seconds +Domain Reload Profiling: + ReloadAssembly (1925ms) + BeginReloadAssembly (182ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (67ms) + EndReloadAssembly (1626ms) + LoadAssemblies (115ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (344ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (77ms) + SetupLoadedEditorAssemblies (994ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (7ms) + BeforeProcessingInitializeOnLoad (118ms) + ProcessInitializeOnLoadAttributes (625ms) + ProcessInitializeOnLoadMethodAttributes (222ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8268. +Memory consumption went from 457.7 MB to 452.8 MB. +Total: 8.964700 ms (FindLiveObjects: 0.787800 ms CreateObjectMapping: 0.728300 ms MarkObjects: 5.333400 ms DeleteObjects: 2.113800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010843 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.56 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.896 seconds +Domain Reload Profiling: + ReloadAssembly (1897ms) + BeginReloadAssembly (165ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (61ms) + EndReloadAssembly (1625ms) + LoadAssemblies (106ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (338ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (69ms) + SetupLoadedEditorAssemblies (1004ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (123ms) + ProcessInitializeOnLoadAttributes (619ms) + ProcessInitializeOnLoadMethodAttributes (234ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.59 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8283. +Memory consumption went from 457.7 MB to 452.8 MB. +Total: 9.881100 ms (FindLiveObjects: 0.817600 ms CreateObjectMapping: 0.833100 ms MarkObjects: 6.439600 ms DeleteObjects: 1.788900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 57085.745345 seconds. + path: Assets/Scenes/Interior/Canyon Caves/Headless+Horseman+-+320bit.mp3 + artifactKey: Guid(0ece102ada7b81f46a4c4959f1506f7b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Scenes/Interior/Canyon Caves/Headless+Horseman+-+320bit.mp3 using Guid(0ece102ada7b81f46a4c4959f1506f7b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4145ca32b53f50af54b228c533f442f4') in 0.120287 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010416 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.028 seconds +Domain Reload Profiling: + ReloadAssembly (2029ms) + BeginReloadAssembly (191ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (77ms) + EndReloadAssembly (1723ms) + LoadAssemblies (111ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (387ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (66ms) + SetupLoadedEditorAssemblies (1055ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (119ms) + ProcessInitializeOnLoadAttributes (663ms) + ProcessInitializeOnLoadMethodAttributes (246ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (20ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.96 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8300. +Memory consumption went from 457.8 MB to 452.9 MB. +Total: 8.250300 ms (FindLiveObjects: 0.837400 ms CreateObjectMapping: 0.735900 ms MarkObjects: 4.827600 ms DeleteObjects: 1.847600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.011408 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 5.96 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.018 seconds +Domain Reload Profiling: + ReloadAssembly (2018ms) + BeginReloadAssembly (175ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (55ms) + EndReloadAssembly (1723ms) + LoadAssemblies (111ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (374ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (73ms) + SetupLoadedEditorAssemblies (1065ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (19ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (6ms) + BeforeProcessingInitializeOnLoad (123ms) + ProcessInitializeOnLoadAttributes (661ms) + ProcessInitializeOnLoadMethodAttributes (246ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (20ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.75 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8315. +Memory consumption went from 457.8 MB to 452.9 MB. +Total: 7.173300 ms (FindLiveObjects: 0.799900 ms CreateObjectMapping: 0.698900 ms MarkObjects: 4.059200 ms DeleteObjects: 1.614000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010828 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.56 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.024 seconds +Domain Reload Profiling: + ReloadAssembly (2025ms) + BeginReloadAssembly (171ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (55ms) + EndReloadAssembly (1735ms) + LoadAssemblies (111ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (359ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (62ms) + SetupLoadedEditorAssemblies (1102ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (122ms) + ProcessInitializeOnLoadAttributes (704ms) + ProcessInitializeOnLoadMethodAttributes (248ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (24ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 10.52 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8330. +Memory consumption went from 457.8 MB to 452.9 MB. +Total: 8.165500 ms (FindLiveObjects: 0.806700 ms CreateObjectMapping: 0.606200 ms MarkObjects: 4.558200 ms DeleteObjects: 2.192700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010911 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 7.92 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.288 seconds +Domain Reload Profiling: + ReloadAssembly (2289ms) + BeginReloadAssembly (188ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (63ms) + EndReloadAssembly (1985ms) + LoadAssemblies (128ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (429ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (81ms) + SetupLoadedEditorAssemblies (1220ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (16ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (8ms) + BeforeProcessingInitializeOnLoad (142ms) + ProcessInitializeOnLoadAttributes (770ms) + ProcessInitializeOnLoadMethodAttributes (273ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 9.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8345. +Memory consumption went from 457.9 MB to 452.9 MB. +Total: 11.960700 ms (FindLiveObjects: 0.845200 ms CreateObjectMapping: 0.870700 ms MarkObjects: 8.055300 ms DeleteObjects: 2.187800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.011486 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll @@ -2447,321 +2594,40 @@ UnityEngine.Debug:LogError (object) UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () Mono: successfully reloaded assembly -- Completed reload, in 2.699 seconds +- Completed reload, in 2.176 seconds Domain Reload Profiling: - ReloadAssembly (2700ms) - BeginReloadAssembly (186ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (65ms) - EndReloadAssembly (2391ms) - LoadAssemblies (125ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (397ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (95ms) - SetupLoadedEditorAssemblies (1637ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (15ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (5ms) - BeforeProcessingInitializeOnLoad (119ms) - ProcessInitializeOnLoadAttributes (1144ms) - ProcessInitializeOnLoadMethodAttributes (342ms) - AfterProcessingInitializeOnLoad (10ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (24ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 8.15 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8361. -Memory consumption went from 463.4 MB to 458.4 MB. -Total: 7.025000 ms (FindLiveObjects: 0.850100 ms CreateObjectMapping: 0.647300 ms MarkObjects: 3.966300 ms DeleteObjects: 1.560200 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 1272.092216 seconds. - path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Clypeosaurus00A.prefab - artifactKey: Guid(f4711e2032445c1498bb4a5f2f5110f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Clypeosaurus00A.prefab using Guid(f4711e2032445c1498bb4a5f2f5110f2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7de24126c8e0f31500d0bc46d9379577') in 1.001899 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000039 seconds. - path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00A.prefab - artifactKey: Guid(9386aa4cd9ccbdd4ca3d6c35e43c2ab7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00A.prefab using Guid(9386aa4cd9ccbdd4ca3d6c35e43c2ab7) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) -UnityEditor.GameObjectInspector:GetPreviewData () -UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) -UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) -UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) - -[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] - - -> (artifact id: 'a725671dc9cb7fe2c2bb679f62ab7173') in 0.803874 seconds -======================================================================== -Received Import Request. - Time since last request: 1.358545 seconds. - path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00C.prefab - artifactKey: Guid(7eae60da6f8de9f458a2a21c11c66d8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00C.prefab using Guid(7eae60da6f8de9f458a2a21c11c66d8e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) -UnityEditor.GameObjectInspector:GetPreviewData () -UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) -UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) -UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) - -[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] - - -> (artifact id: '827449cac30102507d7dc1783b5766e2') in 0.655257 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000037 seconds. - path: Assets/RPG Creation Kit/Scripts/AI/Creature AI/[CreatureAI] Prefab.prefab - artifactKey: Guid(dfbe794ddf1fd0a4195cfc0d1a0d9d38) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Scripts/AI/Creature AI/[CreatureAI] Prefab.prefab using Guid(dfbe794ddf1fd0a4195cfc0d1a0d9d38) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '5ef8089265a8b3f2019026662146981d') in 0.232803 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000045 seconds. - path: Assets/RPG Creation Kit/Demos/__RckDemo__/Factions/[FACTION] Creatures.asset - artifactKey: Guid(28653baa89d9cc34ba22b1fa5b07bb0e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Demos/__RckDemo__/Factions/[FACTION] Creatures.asset using Guid(28653baa89d9cc34ba22b1fa5b07bb0e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '34f327c9d5857ca810e94f5cef99f942') in 0.007956 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000031 seconds. - path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00G.prefab - artifactKey: Guid(d2664322158ab6240b1da319696c9774) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00G.prefab using Guid(d2664322158ab6240b1da319696c9774) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a97e69856a922e4ecf0aba12b7d39f08') in 0.203697 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000037 seconds. - path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00H.prefab - artifactKey: Guid(964c75c164ae75b45ba226c31fbc32ff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00H.prefab using Guid(964c75c164ae75b45ba226c31fbc32ff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) -UnityEditor.GameObjectInspector:GetPreviewData () -UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) -UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) -UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) - -[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] - - -> (artifact id: 'bfabf29ddf1c90f3e50ad302dee3d054') in 0.663042 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000047 seconds. - path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00F.prefab - artifactKey: Guid(8832f99e055a1bb48aac498bd55d8981) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] Karckmahre00F.prefab using Guid(8832f99e055a1bb48aac498bd55d8981) Importer(815301076,1909f56bfc062723c751e8b465ee728b) Asset 'Karckmahre_Controller': Transition 'AnyState -> Fall1 0' in state 'AnyState' doesn't have an Exit Time or any condition, transition will be ignored -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEditor.EditorUtility:Internal_InstantiateRemoveAllNonAnimationComponentsSingle (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateRemoveAllNonAnimationComponents (UnityEngine.Object,UnityEngine.Vector3,UnityEngine.Quaternion) -UnityEditor.EditorUtility:InstantiateForAnimatorPreview (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:UpdateGameObject (UnityEngine.Object) -UnityEditor.GameObjectInspector/PreviewData:.ctor (UnityEngine.Object) -UnityEditor.GameObjectInspector:GetPreviewData () -UnityEditor.GameObjectInspector:RenderStaticPreview (string,UnityEngine.Object[],int,int) -UnityEditor.AssetPreviewUpdater:CreatePreview (UnityEngine.Object,UnityEngine.Object[],string,int,int) -UnityEditor.AssetPreviewUpdater:CreatePreviewForAsset (UnityEngine.Object,UnityEngine.Object[],string) - -[C:\build\output\unity\unity\Editor\Src\Animation\StateMachine.cpp line 1845] - - -> (artifact id: '0b7e0731aa2a8c623ea771408e302fa3') in 0.645852 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000043 seconds. - path: Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] SkeletonOutlaw002.prefab - artifactKey: Guid(02ea86d350ca6b34fa8ddd3b2767c83a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/Prefab Library/AI/Creatures/[CreatureAI] SkeletonOutlaw002.prefab using Guid(02ea86d350ca6b34fa8ddd3b2767c83a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '6ace63c13cdaec40b4177d25e652d661') in 0.172724 seconds -======================================================================== -Received Import Request. - Time since last request: 0.597820 seconds. - path: Assets/RPG Creation Kit/GeneralIcons/Icons/CreatureAIEditorIcon.png - artifactKey: Guid(d75dd11c7e7dd8045ac1240a65da4ce5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/RPG Creation Kit/GeneralIcons/Icons/CreatureAIEditorIcon.png using Guid(d75dd11c7e7dd8045ac1240a65da4ce5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7ce6a5bf61893d47b8bbd760c4848886') in 0.076932 seconds -======================================================================== -Received Prepare -Refreshing native plugins compatible for Editor in 16.48 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 90 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8440. -Memory consumption went from 287.4 MB to 282.4 MB. -Total: 8.361200 ms (FindLiveObjects: 0.834000 ms CreateObjectMapping: 0.649100 ms MarkObjects: 5.082000 ms DeleteObjects: 1.795300 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Import Request. - Time since last request: 32475.168961 seconds. - path: Assets/Daz3D/Races/Human/Male/Body 2.prefab - artifactKey: Guid(cc1dd0d576a24c841a4fbddcccbecb50) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Male/Body 2.prefab using Guid(cc1dd0d576a24c841a4fbddcccbecb50) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '73178234cde1599d3114b08f34459047') in 5.643884 seconds -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.010268 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 6.65 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 2.189 seconds -Domain Reload Profiling: - ReloadAssembly (2190ms) - BeginReloadAssembly (180ms) - ExecutionOrderSort (0ms) - DisableScriptedObjects (9ms) - BackupInstance (0ms) - ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (66ms) - EndReloadAssembly (1888ms) - LoadAssemblies (121ms) - RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (384ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (76ms) - SetupLoadedEditorAssemblies (1186ms) - LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (13ms) - SetLoadedEditorAssemblies (1ms) - RefreshPlugins (7ms) - BeforeProcessingInitializeOnLoad (136ms) - ProcessInitializeOnLoadAttributes (744ms) - ProcessInitializeOnLoadMethodAttributes (275ms) - AfterProcessingInitializeOnLoad (11ms) - EditorAssembliesLoaded (0ms) - ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (29ms) -Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 11.26 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8419. -Memory consumption went from 463.6 MB to 458.7 MB. -Total: 10.801600 ms (FindLiveObjects: 1.063300 ms CreateObjectMapping: 0.968000 ms MarkObjects: 6.602100 ms DeleteObjects: 2.166700 ms) - -AssetImportParameters requested are different than current active one (requested -> active): - custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> - custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> - custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> - custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> - custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> - custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> - custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> - custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> - custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> -======================================================================== -Received Prepare -Registering precompiled user dll's ... -Registered in 0.012802 seconds. -Begin MonoManager ReloadAssembly -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll -Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.27 ms, found 3 plugins. -Preloading 0 native plugins for Editor in 0.00 ms. -System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object - at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 - at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 - --- End of inner exception stack trace --- - at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 - at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 - at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 -UnityEngine.StackTraceUtility:ExtractStackTrace () -UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) -UnityEngine.Logger:Log (UnityEngine.LogType,object) -UnityEngine.Debug:LogError (object) -UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () - -Mono: successfully reloaded assembly -- Completed reload, in 2.201 seconds -Domain Reload Profiling: - ReloadAssembly (2202ms) - BeginReloadAssembly (173ms) + ReloadAssembly (2177ms) + BeginReloadAssembly (176ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (58ms) - EndReloadAssembly (1908ms) - LoadAssemblies (108ms) + CreateAndSetChildDomain (72ms) + EndReloadAssembly (1873ms) + LoadAssemblies (126ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (400ms) + SetupTypeCache (407ms) ReleaseScriptCaches (3ms) - RebuildScriptCaches (69ms) - SetupLoadedEditorAssemblies (1199ms) + RebuildScriptCaches (72ms) + SetupLoadedEditorAssemblies (1131ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (13ms) SetLoadedEditorAssemblies (1ms) - RefreshPlugins (4ms) - BeforeProcessingInitializeOnLoad (122ms) - ProcessInitializeOnLoadAttributes (770ms) - ProcessInitializeOnLoadMethodAttributes (280ms) - AfterProcessingInitializeOnLoad (9ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (129ms) + ProcessInitializeOnLoadAttributes (681ms) + ProcessInitializeOnLoadMethodAttributes (290ms) + AfterProcessingInitializeOnLoad (12ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (25ms) + AwakeInstancesAfterBackupRestoration (30ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 12.09 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 10.94 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8434. -Memory consumption went from 463.6 MB to 458.6 MB. -Total: 10.988100 ms (FindLiveObjects: 0.958100 ms CreateObjectMapping: 0.954800 ms MarkObjects: 7.284100 ms DeleteObjects: 1.789800 ms) +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8360. +Memory consumption went from 457.9 MB to 452.9 MB. +Total: 9.608400 ms (FindLiveObjects: 1.078200 ms CreateObjectMapping: 1.043500 ms MarkObjects: 5.754100 ms DeleteObjects: 1.731000 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -2776,12 +2642,12 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.010390 seconds. +Registered in 0.010841 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 7.01 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 4.38 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 @@ -2798,40 +2664,250 @@ UnityEngine.Debug:LogError (object) UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () Mono: successfully reloaded assembly -- Completed reload, in 2.122 seconds +- Completed reload, in 1.936 seconds Domain Reload Profiling: - ReloadAssembly (2123ms) - BeginReloadAssembly (174ms) + ReloadAssembly (1937ms) + BeginReloadAssembly (167ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (59ms) + EndReloadAssembly (1661ms) + LoadAssemblies (109ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (361ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (65ms) + SetupLoadedEditorAssemblies (1025ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (12ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (118ms) + ProcessInitializeOnLoadAttributes (639ms) + ProcessInitializeOnLoadMethodAttributes (242ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (18ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 9.05 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8375. +Memory consumption went from 457.9 MB to 453.0 MB. +Total: 8.950700 ms (FindLiveObjects: 0.862200 ms CreateObjectMapping: 0.886700 ms MarkObjects: 5.415800 ms DeleteObjects: 1.782900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.012924 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.013 seconds +Domain Reload Profiling: + ReloadAssembly (2014ms) + BeginReloadAssembly (157ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + EndReloadAssembly (1744ms) + LoadAssemblies (99ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (374ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (70ms) + SetupLoadedEditorAssemblies (1086ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (124ms) + ProcessInitializeOnLoadAttributes (684ms) + ProcessInitializeOnLoadMethodAttributes (250ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (21ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 13.22 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8390. +Memory consumption went from 457.9 MB to 453.0 MB. +Total: 9.710400 ms (FindLiveObjects: 0.914900 ms CreateObjectMapping: 0.738000 ms MarkObjects: 5.875100 ms DeleteObjects: 2.181000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010462 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.76 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.495 seconds +Domain Reload Profiling: + ReloadAssembly (2496ms) + BeginReloadAssembly (236ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (62ms) + EndReloadAssembly (2111ms) + LoadAssemblies (176ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (663ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (65ms) + SetupLoadedEditorAssemblies (1124ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (126ms) + ProcessInitializeOnLoadAttributes (661ms) + ProcessInitializeOnLoadMethodAttributes (310ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (26ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8405. +Memory consumption went from 458.0 MB to 453.0 MB. +Total: 9.474600 ms (FindLiveObjects: 0.820600 ms CreateObjectMapping: 0.745500 ms MarkObjects: 6.004200 ms DeleteObjects: 1.902600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.012859 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.289 seconds +Domain Reload Profiling: + ReloadAssembly (2290ms) + BeginReloadAssembly (192ms) ExecutionOrderSort (0ms) DisableScriptedObjects (7ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (61ms) - EndReloadAssembly (1823ms) - LoadAssemblies (111ms) + CreateAndSetChildDomain (69ms) + EndReloadAssembly (1959ms) + LoadAssemblies (129ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (358ms) - ReleaseScriptCaches (3ms) - RebuildScriptCaches (69ms) - SetupLoadedEditorAssemblies (1154ms) + SetupTypeCache (428ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (90ms) + SetupLoadedEditorAssemblies (1186ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (14ms) + InitializePlatformSupportModulesInManaged (16ms) SetLoadedEditorAssemblies (1ms) - RefreshPlugins (7ms) - BeforeProcessingInitializeOnLoad (134ms) - ProcessInitializeOnLoadAttributes (729ms) - ProcessInitializeOnLoadMethodAttributes (258ms) - AfterProcessingInitializeOnLoad (10ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (142ms) + ProcessInitializeOnLoadAttributes (732ms) + ProcessInitializeOnLoadMethodAttributes (279ms) + AfterProcessingInitializeOnLoad (12ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (22ms) + AwakeInstancesAfterBackupRestoration (24ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 13.31 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 10.28 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8449. -Memory consumption went from 463.6 MB to 458.6 MB. -Total: 10.336600 ms (FindLiveObjects: 0.847000 ms CreateObjectMapping: 0.835400 ms MarkObjects: 7.013500 ms DeleteObjects: 1.639300 ms) +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8420. +Memory consumption went from 458.0 MB to 453.0 MB. +Total: 10.367400 ms (FindLiveObjects: 0.837200 ms CreateObjectMapping: 0.815500 ms MarkObjects: 5.914200 ms DeleteObjects: 2.798900 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -2846,12 +2922,12 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.012344 seconds. +Registered in 0.010228 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.28 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 4.29 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 @@ -2868,40 +2944,40 @@ UnityEngine.Debug:LogError (object) UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () Mono: successfully reloaded assembly -- Completed reload, in 1.923 seconds +- Completed reload, in 1.966 seconds Domain Reload Profiling: - ReloadAssembly (1924ms) - BeginReloadAssembly (158ms) + ReloadAssembly (1967ms) + BeginReloadAssembly (184ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) + DisableScriptedObjects (7ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (56ms) - EndReloadAssembly (1658ms) - LoadAssemblies (97ms) + CreateAndSetChildDomain (62ms) + EndReloadAssembly (1666ms) + LoadAssemblies (108ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (348ms) + SetupTypeCache (375ms) ReleaseScriptCaches (3ms) - RebuildScriptCaches (72ms) - SetupLoadedEditorAssemblies (1031ms) + RebuildScriptCaches (63ms) + SetupLoadedEditorAssemblies (1024ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (13ms) SetLoadedEditorAssemblies (1ms) RefreshPlugins (4ms) - BeforeProcessingInitializeOnLoad (116ms) - ProcessInitializeOnLoadAttributes (658ms) - ProcessInitializeOnLoadMethodAttributes (232ms) + BeforeProcessingInitializeOnLoad (121ms) + ProcessInitializeOnLoadAttributes (632ms) + ProcessInitializeOnLoadMethodAttributes (245ms) AfterProcessingInitializeOnLoad (8ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (19ms) + AwakeInstancesAfterBackupRestoration (18ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 8.31 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 8.94 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8464. -Memory consumption went from 463.6 MB to 458.7 MB. -Total: 7.566700 ms (FindLiveObjects: 0.957500 ms CreateObjectMapping: 0.797300 ms MarkObjects: 4.111400 ms DeleteObjects: 1.699100 ms) +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8435. +Memory consumption went from 458.0 MB to 453.1 MB. +Total: 9.092800 ms (FindLiveObjects: 0.831600 ms CreateObjectMapping: 0.750400 ms MarkObjects: 5.581800 ms DeleteObjects: 1.927300 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -2916,12 +2992,12 @@ AssetImportParameters requested are different than current active one (requested ======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.010532 seconds. +Registered in 0.010851 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 6.11 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 4.36 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 @@ -2938,40 +3014,186 @@ UnityEngine.Debug:LogError (object) UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () Mono: successfully reloaded assembly -- Completed reload, in 2.139 seconds +- Completed reload, in 1.919 seconds Domain Reload Profiling: - ReloadAssembly (2140ms) - BeginReloadAssembly (181ms) + ReloadAssembly (1920ms) + BeginReloadAssembly (180ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (6ms) + DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (69ms) - EndReloadAssembly (1824ms) - LoadAssemblies (112ms) + EndReloadAssembly (1632ms) + LoadAssemblies (113ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (371ms) - ReleaseScriptCaches (4ms) - RebuildScriptCaches (81ms) - SetupLoadedEditorAssemblies (1137ms) + SetupTypeCache (348ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (66ms) + SetupLoadedEditorAssemblies (1007ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (14ms) SetLoadedEditorAssemblies (1ms) - RefreshPlugins (6ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (114ms) + ProcessInitializeOnLoadAttributes (634ms) + ProcessInitializeOnLoadMethodAttributes (230ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (21ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 10.75 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8450. +Memory consumption went from 458.0 MB to 453.1 MB. +Total: 7.519100 ms (FindLiveObjects: 0.815900 ms CreateObjectMapping: 0.681200 ms MarkObjects: 4.253600 ms DeleteObjects: 1.766900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 11714.640320 seconds. + path: Assets/RPG Creation Kit/Scripts/Save System/SaveElements/Environment.cs + artifactKey: Guid(6d403208006e1394eb574e282934918a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Scripts/Save System/SaveElements/Environment.cs using Guid(6d403208006e1394eb574e282934918a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'c2b23ed5ef3b5651cca752b5270b098e') in 0.016181 seconds +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.012492 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.057 seconds +Domain Reload Profiling: + ReloadAssembly (2058ms) + BeginReloadAssembly (164ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (55ms) + EndReloadAssembly (1778ms) + LoadAssemblies (106ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (393ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (69ms) + SetupLoadedEditorAssemblies (1104ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (15ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (121ms) + ProcessInitializeOnLoadAttributes (690ms) + ProcessInitializeOnLoadMethodAttributes (264ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (21ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.96 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8465. +Memory consumption went from 458.0 MB to 453.1 MB. +Total: 9.433200 ms (FindLiveObjects: 0.834200 ms CreateObjectMapping: 0.739100 ms MarkObjects: 6.082400 ms DeleteObjects: 1.776000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010093 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 7.02 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.980 seconds +Domain Reload Profiling: + ReloadAssembly (1980ms) + BeginReloadAssembly (175ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (63ms) + EndReloadAssembly (1694ms) + LoadAssemblies (110ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (371ms) + ReleaseScriptCaches (4ms) + RebuildScriptCaches (68ms) + SetupLoadedEditorAssemblies (1041ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (12ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (7ms) BeforeProcessingInitializeOnLoad (127ms) - ProcessInitializeOnLoadAttributes (721ms) - ProcessInitializeOnLoadMethodAttributes (258ms) + ProcessInitializeOnLoadAttributes (647ms) + ProcessInitializeOnLoadMethodAttributes (237ms) AfterProcessingInitializeOnLoad (10ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (21ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 12.25 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 9.50 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8479. -Memory consumption went from 463.6 MB to 458.7 MB. -Total: 10.491000 ms (FindLiveObjects: 1.102000 ms CreateObjectMapping: 1.163400 ms MarkObjects: 5.761000 ms DeleteObjects: 2.463200 ms) +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8480. +Memory consumption went from 458.1 MB to 453.1 MB. +Total: 11.565700 ms (FindLiveObjects: 1.116100 ms CreateObjectMapping: 1.119700 ms MarkObjects: 7.254700 ms DeleteObjects: 2.073300 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -2984,128 +3206,14 @@ AssetImportParameters requested are different than current active one (requested custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== -Received Import Request. - Time since last request: 4756.062844 seconds. - path: Assets/Daz3D/Races/Human/Female/Body.prefab - artifactKey: Guid(38674239631e0ce4da6f9f86b2da0688) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Human/Female/Body.prefab using Guid(38674239631e0ce4da6f9f86b2da0688) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '664c33f3808c90249423949c1ae7d8a3') in 6.891096 seconds -======================================================================== -Received Import Request. - Time since last request: 11.778252 seconds. - path: Assets/Daz3D/Races/Dark Elf/Male/Materials - artifactKey: Guid(add06c554c673f1408aeb97eb7c40617) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Dark Elf/Male/Materials using Guid(add06c554c673f1408aeb97eb7c40617) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b551a772a91ec0b96e2fd3842934fa45') in 0.008819 seconds -======================================================================== -Received Import Request. - Time since last request: 15.216263 seconds. - path: Assets/Daz3D/Races/Dark Elf/Female/Materials - artifactKey: Guid(2e60e521a9d4fe148bfb192755cb6b93) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Dark Elf/Female/Materials using Guid(2e60e521a9d4fe148bfb192755cb6b93) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '90cea7e45d95b5479594c384bb90168a') in 0.002507 seconds -======================================================================== -Received Import Request. - Time since last request: 15.222772 seconds. - path: Assets/Daz3D/Races/Fi/Male/Body.prefab - artifactKey: Guid(7978de8ca735b5448bb28071841ee21b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Fi/Male/Body.prefab using Guid(7978de8ca735b5448bb28071841ee21b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'f9a85df93251c91f565f3be718de4661') in 1.986957 seconds -======================================================================== -Received Import Request. - Time since last request: 6.235114 seconds. - path: Assets/Daz3D/Races/Fi/Male/Body.prefab - artifactKey: Guid(7978de8ca735b5448bb28071841ee21b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Fi/Male/Body.prefab using Guid(7978de8ca735b5448bb28071841ee21b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '29a6d78597c930e77e87605480f0c7a2') in 1.715084 seconds -======================================================================== -Received Import Request. - Time since last request: 12.518290 seconds. - path: Assets/Daz3D/Races/Goblin/Male/Body.prefab - artifactKey: Guid(f0eac46153d9277498019ffbd605a120) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Goblin/Male/Body.prefab using Guid(f0eac46153d9277498019ffbd605a120) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4e84adf3268e5af1d4d495fbd5a85f01') in 5.675667 seconds -======================================================================== -Received Import Request. - Time since last request: 5.348464 seconds. - path: Assets/Daz3D/Races/Ichtapau/Male/Body.prefab - artifactKey: Guid(6dd50b9e6adb8004cb331dbfa95960e5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ichtapau/Male/Body.prefab using Guid(6dd50b9e6adb8004cb331dbfa95960e5) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a6cf46d540a1bc3eeb300dac29118645') in 5.631490 seconds -======================================================================== -Received Import Request. - Time since last request: 3.424534 seconds. - path: Assets/Daz3D/Races/Ichtapau/Female/Body.prefab - artifactKey: Guid(a00e68cf082e3a44cadcc78cf36182ff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ichtapau/Female/Body.prefab using Guid(a00e68cf082e3a44cadcc78cf36182ff) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '84b33f42344f16ce1ab2df2831ac9dd8') in 6.274096 seconds -======================================================================== -Received Import Request. - Time since last request: 10.872002 seconds. - path: Assets/Daz3D/Races/Jaz/Male/Body.prefab - artifactKey: Guid(875abd4c9d8bff842af962faf7443c85) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Jaz/Male/Body.prefab using Guid(875abd4c9d8bff842af962faf7443c85) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd5b7517a43995757af1c5cfaf9680612') in 5.982085 seconds -======================================================================== -Received Import Request. - Time since last request: 2.374256 seconds. - path: Assets/Daz3D/Races/Ogre/Male/Body.prefab - artifactKey: Guid(999d1ed96455feb41a71980c56d6dd53) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ogre/Male/Body.prefab using Guid(999d1ed96455feb41a71980c56d6dd53) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '61364757eb9acfd4f02dca380f0606b0') in 1.306485 seconds -======================================================================== -Received Import Request. - Time since last request: 8.056455 seconds. - path: Assets/Daz3D/Races/Ogre/Female/Body.prefab - artifactKey: Guid(c939ad4a4134a3948a664275f8c9ff8a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ogre/Female/Body.prefab using Guid(c939ad4a4134a3948a664275f8c9ff8a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '596654f0a92547fa872e1848c6ec008d') in 6.353672 seconds -======================================================================== -Received Import Request. - Time since last request: 12.793144 seconds. - path: Assets/Daz3D/Races/Oni/Female/Body.prefab - artifactKey: Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oni/Female/Body.prefab using Guid(309e0753abb17fb4e82905838ca51a89) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '72fbd695518fa151509a6728ffc2c431') in 1.799580 seconds -======================================================================== -Received Import Request. - Time since last request: 99.074321 seconds. - path: Assets/Daz3D/Races/Oumua/Male/Body.prefab - artifactKey: Guid(95c68d036a8785e4cbec4cc02f8daded) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Oumua/Male/Body.prefab using Guid(95c68d036a8785e4cbec4cc02f8daded) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '4d3392c452461fe7b4105d833f5a0d81') in 1.750828 seconds -======================================================================== -Received Import Request. - Time since last request: 8.617671 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Body.prefab - artifactKey: Guid(ddf6a9dc3b4549f4b911f7cf7b63f026) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Body.prefab using Guid(ddf6a9dc3b4549f4b911f7cf7b63f026) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '57bc3877e82b7e6ced4c57f392f4fede') in 6.178683 seconds -======================================================================== -Received Import Request. - Time since last request: 0.204887 seconds. - path: Assets/Daz3D/Races/Ozias/Male/Body.prefab - artifactKey: Guid(ddf6a9dc3b4549f4b911f7cf7b63f026) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/Male/Body.prefab using Guid(ddf6a9dc3b4549f4b911f7cf7b63f026) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ea178ad502e99964137ca3413ea111ee') in 5.973461 seconds -======================================================================== -Received Import Request. - Time since last request: 0.000045 seconds. - path: Assets/Daz3D/Races/Ozias/[RACE] Ozias.asset - artifactKey: Guid(2a727b4644ea58c4c9e88a3b82aa7291) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Ozias/[RACE] Ozias.asset using Guid(2a727b4644ea58c4c9e88a3b82aa7291) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7b558fa20a16e46eb6eda185528da4b0') in 116.639598 seconds -======================================================================== -Received Import Request. - Time since last request: 2246.967944 seconds. - path: Assets/Daz3D/Races/Underworld/[RACE] Underworld.asset - artifactKey: Guid(036c456059ce8ed4a8b65935dae32000) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Underworld/[RACE] Underworld.asset using Guid(036c456059ce8ed4a8b65935dae32000) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '621b79a9a3452e7b063733938b90639b') in 1.022364 seconds -======================================================================== -Received Import Request. - Time since last request: 60.129987 seconds. - path: Assets/Daz3D/Races/Abyss/Male/Materials - artifactKey: Guid(bfdb5eb042aacad4ea46d278bc252661) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Abyss/Male/Materials using Guid(bfdb5eb042aacad4ea46d278bc252661) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '672a485938a82b82175ef57af0530e84') in 0.002520 seconds -======================================================================== -Received Import Request. - Time since last request: 50.092349 seconds. - path: Assets/Daz3D/Races/Abyss/Female/Materials - artifactKey: Guid(4daa3b7b65bfa294e8e91a38e92ae48f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/Daz3D/Races/Abyss/Female/Materials using Guid(4daa3b7b65bfa294e8e91a38e92ae48f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0605024215423ce9898698de380660bc') in 0.003311 seconds -======================================================================== Received Prepare Registering precompiled user dll's ... -Registered in 0.010684 seconds. +Registered in 0.011665 seconds. Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Native extension for WindowsStandalone target not found -Refreshing native plugins compatible for Editor in 4.16 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 4.49 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 @@ -3122,40 +3230,40 @@ UnityEngine.Debug:LogError (object) UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () Mono: successfully reloaded assembly -- Completed reload, in 2.628 seconds +- Completed reload, in 2.053 seconds Domain Reload Profiling: - ReloadAssembly (2629ms) - BeginReloadAssembly (312ms) + ReloadAssembly (2054ms) + BeginReloadAssembly (184ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (13ms) + DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (81ms) - EndReloadAssembly (2174ms) - LoadAssemblies (224ms) + CreateAndSetChildDomain (73ms) + EndReloadAssembly (1751ms) + LoadAssemblies (116ms) RebuildTransferFunctionScriptingTraits (0ms) - SetupTypeCache (688ms) + SetupTypeCache (362ms) ReleaseScriptCaches (3ms) - RebuildScriptCaches (69ms) - SetupLoadedEditorAssemblies (1148ms) + RebuildScriptCaches (68ms) + SetupLoadedEditorAssemblies (1091ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (13ms) SetLoadedEditorAssemblies (1ms) - RefreshPlugins (4ms) - BeforeProcessingInitializeOnLoad (133ms) - ProcessInitializeOnLoadAttributes (671ms) - ProcessInitializeOnLoadMethodAttributes (317ms) - AfterProcessingInitializeOnLoad (10ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (129ms) + ProcessInitializeOnLoadAttributes (678ms) + ProcessInitializeOnLoadMethodAttributes (256ms) + AfterProcessingInitializeOnLoad (9ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (26ms) + AwakeInstancesAfterBackupRestoration (21ms) Platform modules already initialized, skipping -Refreshing native plugins compatible for Editor in 14.52 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 10.50 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. -Unloading 7085 Unused Serialized files (Serialized files now loaded: 0) -Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8535. -Memory consumption went from 464.3 MB to 459.3 MB. -Total: 12.487200 ms (FindLiveObjects: 0.883800 ms CreateObjectMapping: 0.792300 ms MarkObjects: 8.263300 ms DeleteObjects: 2.546200 ms) +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8495. +Memory consumption went from 458.1 MB to 453.1 MB. +Total: 10.390500 ms (FindLiveObjects: 1.016700 ms CreateObjectMapping: 1.327600 ms MarkObjects: 5.888100 ms DeleteObjects: 2.156700 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> @@ -3167,3 +3275,685 @@ AssetImportParameters requested are different than current active one (requested custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010174 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.97 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.054 seconds +Domain Reload Profiling: + ReloadAssembly (2054ms) + BeginReloadAssembly (158ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (53ms) + EndReloadAssembly (1768ms) + LoadAssemblies (103ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (376ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (69ms) + SetupLoadedEditorAssemblies (1102ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (129ms) + ProcessInitializeOnLoadAttributes (692ms) + ProcessInitializeOnLoadMethodAttributes (252ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (21ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 9.91 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8510. +Memory consumption went from 458.1 MB to 453.2 MB. +Total: 8.067500 ms (FindLiveObjects: 0.877100 ms CreateObjectMapping: 1.109100 ms MarkObjects: 4.324700 ms DeleteObjects: 1.754900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.011860 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.25 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.972 seconds +Domain Reload Profiling: + ReloadAssembly (1973ms) + BeginReloadAssembly (165ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (57ms) + EndReloadAssembly (1697ms) + LoadAssemblies (110ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (383ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (67ms) + SetupLoadedEditorAssemblies (1026ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (118ms) + ProcessInitializeOnLoadAttributes (646ms) + ProcessInitializeOnLoadMethodAttributes (233ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 11.57 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8525. +Memory consumption went from 458.1 MB to 453.2 MB. +Total: 10.231000 ms (FindLiveObjects: 0.928500 ms CreateObjectMapping: 1.218900 ms MarkObjects: 6.256800 ms DeleteObjects: 1.824800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010590 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.57 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.029 seconds +Domain Reload Profiling: + ReloadAssembly (2030ms) + BeginReloadAssembly (177ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (68ms) + EndReloadAssembly (1737ms) + LoadAssemblies (115ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (354ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (64ms) + SetupLoadedEditorAssemblies (1086ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (125ms) + ProcessInitializeOnLoadAttributes (686ms) + ProcessInitializeOnLoadMethodAttributes (244ms) + AfterProcessingInitializeOnLoad (11ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (20ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.98 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8540. +Memory consumption went from 458.2 MB to 453.3 MB. +Total: 8.288000 ms (FindLiveObjects: 0.819600 ms CreateObjectMapping: 0.749500 ms MarkObjects: 5.038900 ms DeleteObjects: 1.678800 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.012991 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.047 seconds +Domain Reload Profiling: + ReloadAssembly (2048ms) + BeginReloadAssembly (173ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (59ms) + EndReloadAssembly (1759ms) + LoadAssemblies (110ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (352ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (67ms) + SetupLoadedEditorAssemblies (1122ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (118ms) + ProcessInitializeOnLoadAttributes (749ms) + ProcessInitializeOnLoadMethodAttributes (227ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (23ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 7.97 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8555. +Memory consumption went from 458.2 MB to 453.3 MB. +Total: 7.089400 ms (FindLiveObjects: 0.826300 ms CreateObjectMapping: 0.704000 ms MarkObjects: 3.936400 ms DeleteObjects: 1.621600 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010448 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.936 seconds +Domain Reload Profiling: + ReloadAssembly (1936ms) + BeginReloadAssembly (200ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (80ms) + EndReloadAssembly (1625ms) + LoadAssemblies (105ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (347ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (68ms) + SetupLoadedEditorAssemblies (1004ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (14ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (119ms) + ProcessInitializeOnLoadAttributes (626ms) + ProcessInitializeOnLoadMethodAttributes (230ms) + AfterProcessingInitializeOnLoad (9ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (20ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.99 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8570. +Memory consumption went from 458.2 MB to 453.3 MB. +Total: 7.698900 ms (FindLiveObjects: 0.842400 ms CreateObjectMapping: 0.753000 ms MarkObjects: 4.457700 ms DeleteObjects: 1.644700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010342 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 5.13 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 2.071 seconds +Domain Reload Profiling: + ReloadAssembly (2072ms) + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (66ms) + EndReloadAssembly (1792ms) + LoadAssemblies (112ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (367ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (77ms) + SetupLoadedEditorAssemblies (1114ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (18ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (5ms) + BeforeProcessingInitializeOnLoad (138ms) + ProcessInitializeOnLoadAttributes (682ms) + ProcessInitializeOnLoadMethodAttributes (259ms) + AfterProcessingInitializeOnLoad (10ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (20ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 9.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8585. +Memory consumption went from 458.3 MB to 453.3 MB. +Total: 8.129600 ms (FindLiveObjects: 0.888500 ms CreateObjectMapping: 0.839600 ms MarkObjects: 4.491900 ms DeleteObjects: 1.907900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Registering precompiled user dll's ... +Registered in 0.010446 seconds. +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +Symbol file LoadedFromMemory doesn't match image C:\Work\Firstborn\Library\PackageCache\com.unity.visualscripting@1.7.8\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Native extension for WindowsStandalone target not found +Refreshing native plugins compatible for Editor in 4.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object + at XNodeEditor.NodeEditorAssetModProcessor.OnReloadEditor () [0x0004b] in C:\Work\Firstborn\Assets\RPG Creation Kit\Scripts\Dialogue System\xNode-master\Scripts\Editor\NodeEditorAssetModProcessor.cs:55 + at (wrapper managed-to-native) System.Reflection.RuntimeMethodInfo.InternalInvoke(System.Reflection.RuntimeMethodInfo,object,object[],System.Exception&) + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x0006a] in :0 + --- End of inner exception stack trace --- + at System.Reflection.RuntimeMethodInfo.Invoke (System.Object obj, System.Reflection.BindingFlags invokeAttr, System.Reflection.Binder binder, System.Object[] parameters, System.Globalization.CultureInfo culture) [0x00083] in :0 + at System.Reflection.MethodBase.Invoke (System.Object obj, System.Object[] parameters) [0x00000] in :0 + at UnityEditor.EditorAssemblies.ProcessInitializeOnLoadMethodAttributes () [0x000a5] in <63965ae56af7489797f355b7c1211ab2>:0 +UnityEngine.StackTraceUtility:ExtractStackTrace () +UnityEngine.DebugLogHandler:LogFormat (UnityEngine.LogType,UnityEngine.Object,string,object[]) +UnityEngine.Logger:Log (UnityEngine.LogType,object) +UnityEngine.Debug:LogError (object) +UnityEditor.EditorAssemblies:ProcessInitializeOnLoadMethodAttributes () + +Mono: successfully reloaded assembly +- Completed reload, in 1.926 seconds +Domain Reload Profiling: + ReloadAssembly (1927ms) + BeginReloadAssembly (170ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (62ms) + EndReloadAssembly (1644ms) + LoadAssemblies (107ms) + RebuildTransferFunctionScriptingTraits (0ms) + SetupTypeCache (346ms) + ReleaseScriptCaches (3ms) + RebuildScriptCaches (65ms) + SetupLoadedEditorAssemblies (1026ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (13ms) + SetLoadedEditorAssemblies (1ms) + RefreshPlugins (4ms) + BeforeProcessingInitializeOnLoad (119ms) + ProcessInitializeOnLoadAttributes (639ms) + ProcessInitializeOnLoadMethodAttributes (242ms) + AfterProcessingInitializeOnLoad (8ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (19ms) +Platform modules already initialized, skipping +Refreshing native plugins compatible for Editor in 8.56 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 7086 Unused Serialized files (Serialized files now loaded: 0) +Unloading 90 unused Assets / (4.9 MB). Loaded Objects now: 8600. +Memory consumption went from 458.3 MB to 453.3 MB. +Total: 7.374800 ms (FindLiveObjects: 0.837200 ms CreateObjectMapping: 0.673800 ms MarkObjects: 4.189600 ms DeleteObjects: 1.672700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 4877.461165 seconds. + path: Assets/Daz3D/SoundEffects/UpstairsDoor/01DoorOpen.ogg + artifactKey: Guid(94071824c3dd7a24d8032a96f6d0d157) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/SoundEffects/UpstairsDoor/01DoorOpen.ogg using Guid(94071824c3dd7a24d8032a96f6d0d157) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '553026a0be0a6e10862fbdee4a176d49') in 0.076531 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000032 seconds. + path: Assets/Daz3D/Architecture/Doors/DoorRoom/_Door5/Door_3/_Door5@Close.fbx + artifactKey: Guid(541b9001add2d02468a24b0cd2c268b2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Doors/DoorRoom/_Door5/Door_3/_Door5@Close.fbx using Guid(541b9001add2d02468a24b0cd2c268b2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '89a0921ceb2223ae5b5d979ccf62b742') in 0.025142 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000043 seconds. + path: Assets/Daz3D/Architecture/Doors/DoorRoom/_Door5/Door_3/_Door5.fbx + artifactKey: Guid(7f8e36ef08be6f84584307d5d15e896f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Doors/DoorRoom/_Door5/Door_3/_Door5.fbx using Guid(7f8e36ef08be6f84584307d5d15e896f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '06d938b6fa8f05e92e12df86f0423aac') in 0.270990 seconds +======================================================================== +Received Import Request. + Time since last request: 2.160217 seconds. + path: Assets/RPG Creation Kit/Animations/3rd Person/General/Base Male Human OpenDoor SKOnly.fbx + artifactKey: Guid(a9c3188f8b71c0a43b06ddd08d0765a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Animations/3rd Person/General/Base Male Human OpenDoor SKOnly.fbx using Guid(a9c3188f8b71c0a43b06ddd08d0765a8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '690af649f2537ffe444cd2e50800f445') in 0.019219 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000032 seconds. + path: Assets/RPG Creation Kit/Models/RPG Creation Kit Environment/Big House/BigHouse.fbx + artifactKey: Guid(d2833fed8a8b2f24e9fe6a359f790e15) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Models/RPG Creation Kit Environment/Big House/BigHouse.fbx using Guid(d2833fed8a8b2f24e9fe6a359f790e15) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0fd78df71d787df713a6ad562dc6c994') in 0.379126 seconds +======================================================================== +Received Import Request. + Time since last request: 3.760597 seconds. + path: Assets/RPG Creation Kit/Models/Third Party/75990_Church1Upload/EXPORT/ChurchDoor1.png + artifactKey: Guid(49cc6e8b8a162574a8401854bca0ff91) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Models/Third Party/75990_Church1Upload/EXPORT/ChurchDoor1.png using Guid(49cc6e8b8a162574a8401854bca0ff91) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '34e3295619bd1ba183d6d709e23033e2') in 0.036434 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000033 seconds. + path: Assets/Daz3D/Architecture/Doors/DoorEntrance/FBX/DoorEntrance_Prefab/Daz3D_DoorEntrance.prefab + artifactKey: Guid(37f6660a37aff5849abbbf53597ed24b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Doors/DoorEntrance/FBX/DoorEntrance_Prefab/Daz3D_DoorEntrance.prefab using Guid(37f6660a37aff5849abbbf53597ed24b) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '74eb99c66167db29c3c66ba6c3a45892') in 0.056444 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000037 seconds. + path: Assets/Daz3D/Architecture/Doors/DoorRoom/_Door5/Door_3/Door_PNTR_Mat1_Metallic.png + artifactKey: Guid(fbb4288ca728dc1499107c56b34513fe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Doors/DoorRoom/_Door5/Door_3/Door_PNTR_Mat1_Metallic.png using Guid(fbb4288ca728dc1499107c56b34513fe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '786ef78a8264c1a76476e6ebda574789') in 0.014584 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000045 seconds. + path: Assets/RPG Creation Kit/Models/Additional Models/Props/Building_Props/Door_Wood/Handle_Textures/Door_Handle_AlbedoTransparency.png + artifactKey: Guid(a5a7758a703cdd34d8945260f0f9898a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Models/Additional Models/Props/Building_Props/Door_Wood/Handle_Textures/Door_Handle_AlbedoTransparency.png using Guid(a5a7758a703cdd34d8945260f0f9898a) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '82ee6c89a9b7ef572949144e32726b9f') in 0.015230 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000034 seconds. + path: Assets/RPG Creation Kit/Models/Additional Models/Props/Building_Props/Door_Wood/Handle_Textures/Door_Handle_AO.png + artifactKey: Guid(8a77c1a52d0aaac4a85ae097deeeea2d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Models/Additional Models/Props/Building_Props/Door_Wood/Handle_Textures/Door_Handle_AO.png using Guid(8a77c1a52d0aaac4a85ae097deeeea2d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '2d2a9cb837dd385739967f303f18093b') in 0.014645 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000033 seconds. + path: Assets/RPG Creation Kit/Models/Additional Models/Props/Building_Props/Door_Wood/Handle_Textures/Door_Handle_MetallicSmoothness.png + artifactKey: Guid(60ec8a70a10d90840aca478c7fec5f3d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Models/Additional Models/Props/Building_Props/Door_Wood/Handle_Textures/Door_Handle_MetallicSmoothness.png using Guid(60ec8a70a10d90840aca478c7fec5f3d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bd52649244d16e972a642e839c874af4') in 0.017364 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000031 seconds. + path: Assets/Daz3D/Architecture/Doors/DoorRoom/_Door5/Door_3/Door_PNTR_Mat1_BaseColor.png + artifactKey: Guid(288b4e7dd8450a44ea95eac882e43192) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Doors/DoorRoom/_Door5/Door_3/Door_PNTR_Mat1_BaseColor.png using Guid(288b4e7dd8450a44ea95eac882e43192) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a1f70e20491098f68035bd665901df22') in 0.015856 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000029 seconds. + path: Assets/RPG Creation Kit/Models/Third Party/75990_Church1Upload/EXPORT/church.dae + artifactKey: Guid(d4e5c5b84db58114aa631f088a776bce) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Models/Third Party/75990_Church1Upload/EXPORT/church.dae using Guid(d4e5c5b84db58114aa631f088a776bce) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '29cc83b9be254d84260d244ab2dad135') in 0.211242 seconds +======================================================================== +Received Import Request. + Time since last request: 46.576434 seconds. + path: Assets/Daz3D/Architecture/Doors/DoorRoom/_Door5/Door_3/Door_PNTR_Mat1_Roughness.png + artifactKey: Guid(b2a3ec7ad275ed642a99928b37914acc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Doors/DoorRoom/_Door5/Door_3/Door_PNTR_Mat1_Roughness.png using Guid(b2a3ec7ad275ed642a99928b37914acc) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'edadcb138f86da9e46e429d30f61daab') in 0.016427 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000033 seconds. + path: Assets/RPG Creation Kit/Models/Additional Models/Props/Building_Props/Door_Wood/Door_Wood.prefab + artifactKey: Guid(d2373a5b496cc7741a67c56c76b5a6e0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Models/Additional Models/Props/Building_Props/Door_Wood/Door_Wood.prefab using Guid(d2373a5b496cc7741a67c56c76b5a6e0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ff7c22b4c7aac748de85500a833aa4ff') in 0.059391 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000040 seconds. + path: Assets/RPG Creation Kit/Models/Additional Models/Props/Building_Props/Door_Wood/Door_Wood_AO.png + artifactKey: Guid(38280a63e3ca1874aa4101655a551e28) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Models/Additional Models/Props/Building_Props/Door_Wood/Door_Wood_AO.png using Guid(38280a63e3ca1874aa4101655a551e28) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0559fe13d463f7a8fbba523a1ace00c3') in 0.015509 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000031 seconds. + path: Assets/RPG Creation Kit/Prefab Library/Buildings/Door_Wood.prefab + artifactKey: Guid(c12e4395969eb4d498d1d07461994ad6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/RPG Creation Kit/Prefab Library/Buildings/Door_Wood.prefab using Guid(c12e4395969eb4d498d1d07461994ad6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '3302f5c53885df777966eeced044c4ed') in 0.035469 seconds +======================================================================== +Received Import Request. + Time since last request: 27.995400 seconds. + path: Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_DoorFrameWall_BaseColor.png + artifactKey: Guid(cdafcd972af00724f82db9d0514a4346) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_DoorFrameWall_BaseColor.png using Guid(cdafcd972af00724f82db9d0514a4346) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '84e40cf9f623705c4e12675a2ec62eaf') in 0.031179 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000033 seconds. + path: Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones2_Roughness.png + artifactKey: Guid(1e74e89ec1fd55a4d945be5873d750fe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones2_Roughness.png using Guid(1e74e89ec1fd55a4d945be5873d750fe) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'b46329c8de1c9d05aba2e60c705b62c4') in 0.018579 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000047 seconds. + path: Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones2_BaseColor.png + artifactKey: Guid(8a842d41c33f9ef49a101a32573e8aa0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones2_BaseColor.png using Guid(8a842d41c33f9ef49a101a32573e8aa0) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '48a730552f7be6e55dbb5408eb72e59d') in 0.026263 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000044 seconds. + path: Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/Stones.mat + artifactKey: Guid(f8e6c40071cd03e4d8c40d5c38c9aa36) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/Stones.mat using Guid(f8e6c40071cd03e4d8c40d5c38c9aa36) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bd450cc7dba04e643b99cf28ae4725b5') in 0.065195 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000032 seconds. + path: Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_DoorFrameWall_Roughness.png + artifactKey: Guid(5c7ec6deac136c04883666e9c9cb4c77) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_DoorFrameWall_Roughness.png using Guid(5c7ec6deac136c04883666e9c9cb4c77) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '9fdbf4a3a6abbd11d7015b9a508678bd') in 0.016180 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000032 seconds. + path: Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones_BaseColor.png + artifactKey: Guid(e8adab2cd09d54e4dbdee4b6fd846bb8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/Architecture/Doors/DoorRoom/_DoorFrame/DoorFrame_2/DoorFrameWall_Stones_BaseColor.png using Guid(e8adab2cd09d54e4dbdee4b6fd846bb8) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ff0655ff3506678aa505946fd8d29647') in 0.023171 seconds +======================================================================== +Received Import Request. + Time since last request: 176.044552 seconds. + path: Assets/Daz3D/SoundEffects/MISC/BookDrop.ogg + artifactKey: Guid(b1368a987121d744592bbc4d2d049687) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/SoundEffects/MISC/BookDrop.ogg using Guid(b1368a987121d744592bbc4d2d049687) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7f2e7f17d80c83ee2a0bbfcd39257178') in 0.016593 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000044 seconds. + path: Assets/Daz3D/SoundEffects/MISC/UseBook.ogg + artifactKey: Guid(32d81ad5eee1e8947b9a8d0cad39da1d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/SoundEffects/MISC/UseBook.ogg using Guid(32d81ad5eee1e8947b9a8d0cad39da1d) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'ded8f8b3c696f829e7285f9b8dd4442e') in 0.016769 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000037 seconds. + path: Assets/Daz3D/SoundEffects/MISC/PaperCrumble.ogg + artifactKey: Guid(ab9dc981abf497d45b9902442c78d400) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/SoundEffects/MISC/PaperCrumble.ogg using Guid(ab9dc981abf497d45b9902442c78d400) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '113c0c981064611347abcf54ea4aa7f5') in 0.017931 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000028 seconds. + path: Assets/Daz3D/SoundEffects/MISC/DroppingBoneItem.ogg + artifactKey: Guid(4aacce6462cc554488cfad9234afbdc6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/SoundEffects/MISC/DroppingBoneItem.ogg using Guid(4aacce6462cc554488cfad9234afbdc6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '8d5ce23794d135ce236cd5006821f15e') in 0.016548 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000043 seconds. + path: Assets/Daz3D/SoundEffects/MISC/PaperDrop.ogg + artifactKey: Guid(0fe336e46fc46b34991ea2820b8220d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/SoundEffects/MISC/PaperDrop.ogg using Guid(0fe336e46fc46b34991ea2820b8220d2) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'fc89ed315ee660807b084fa3aecb9157') in 0.018153 seconds +======================================================================== +Received Import Request. + Time since last request: 5.337995 seconds. + path: Assets/Daz3D/SoundEffects/Furniture/CabinetOpen.ogg + artifactKey: Guid(56d26a3bb2524d84aa3fc9fbb63b0b15) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/SoundEffects/Furniture/CabinetOpen.ogg using Guid(56d26a3bb2524d84aa3fc9fbb63b0b15) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'd0f9b3d6ae4547eb6547d5cdc9247fb1') in 0.016854 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000033 seconds. + path: Assets/Daz3D/SoundEffects/Furniture/ChestClose.ogg + artifactKey: Guid(05a0262f929fe9e41a6f8f39926defd9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/SoundEffects/Furniture/ChestClose.ogg using Guid(05a0262f929fe9e41a6f8f39926defd9) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '0a1d7924ed68af801d68e63e36bb6b85') in 0.029576 seconds +======================================================================== +Received Import Request. + Time since last request: 5.557322 seconds. + path: Assets/Daz3D/SoundEffects/UpstairsDoor/DoorLocking.ogg + artifactKey: Guid(06ba07aeb8317e34c8666cfb5d5eddc6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/SoundEffects/UpstairsDoor/DoorLocking.ogg using Guid(06ba07aeb8317e34c8666cfb5d5eddc6) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'a9e16da811a7c3c3481d410281ad5b8d') in 0.013201 seconds +======================================================================== +Received Import Request. + Time since last request: 0.000033 seconds. + path: Assets/Daz3D/SoundEffects/UpstairsDoor/DoorOpen.ogg + artifactKey: Guid(6518ab48e84361a44855ded737ae19ef) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Daz3D/SoundEffects/UpstairsDoor/DoorOpen.ogg using Guid(6518ab48e84361a44855ded737ae19ef) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'e1dd3012cd7b38f6b979896e3436bf21') in 0.017377 seconds diff --git a/Logs/shadercompiler-AssetImportWorker0.log b/Logs/shadercompiler-AssetImportWorker0.log index 80096dea0d..a3b72424bb 100644 --- a/Logs/shadercompiler-AssetImportWorker0.log +++ b/Logs/shadercompiler-AssetImportWorker0.log @@ -1,24 +1,6 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/PlaybackEngines' Cmd: initializeCompiler -Cmd: compileSnippet - insize=9129 file=Packages/com.unity.render-pipelines.universal/Shaders/AutodeskInteractive/Universal Render Pipeline/Autodesk Interactive/AutodeskInteractive pass=ShadowCaster cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING UNITY_PASS_SHADOWCASTER uKW= dKW=DOTS_INSTANCING_ON _CASTING_PUNCTUAL_LIGHT_SHADOW INSTANCING_ON UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=3 type=Vertex platform=d3d11 reqs=1101803 mask=6 start=1093 ok=1 outsize=1126 - -Cmd: compileSnippet - insize=9129 file=Packages/com.unity.render-pipelines.universal/Shaders/AutodeskInteractive/Universal Render Pipeline/Autodesk Interactive/AutodeskInteractive pass=ShadowCaster cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING UNITY_PASS_SHADOWCASTER uKW= dKW=DOTS_INSTANCING_ON INSTANCING_ON UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=3 type=Fragment platform=d3d11 reqs=1101803 mask=6 start=1093 ok=1 outsize=286 - -Cmd: compileSnippet - insize=11857 file=Packages/com.unity.render-pipelines.universal/Shaders/AutodeskInteractive/Universal Render Pipeline/Autodesk Interactive/AutodeskInteractive pass=DepthNormals cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW= dKW=DOTS_INSTANCING_ON INSTANCING_ON UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=3 type=Vertex platform=d3d11 reqs=1101803 mask=6 start=1725 ok=1 outsize=1294 - -Cmd: compileSnippet - insize=11857 file=Packages/com.unity.render-pipelines.universal/Shaders/AutodeskInteractive/Universal Render Pipeline/Autodesk Interactive/AutodeskInteractive pass=DepthNormals cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW= dKW=DOTS_INSTANCING_ON INSTANCING_ON UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=3 type=Fragment platform=d3d11 reqs=1101803 mask=6 start=1725 ok=1 outsize=1278 - -Cmd: compileSnippet - insize=22130 file=Packages/com.unity.render-pipelines.universal/Shaders/AutodeskInteractive/Universal Render Pipeline/Autodesk Interactive/AutodeskInteractive pass=Universal Forward cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW=_MAIN_LIGHT_SHADOWS _ADDITIONAL_LIGHTS dKW=DOTS_INSTANCING_ON LIGHTMAP_ON DYNAMICLIGHTMAP_ON DIRLIGHTMAP_COMBINED _MAIN_LIGHT_SHADOWS_CASCADE _MAIN_LIGHT_SHADOWS_SCREEN _ADDITIONAL_LIGHTS_VERTEX LIGHTMAP_SHADOW_MIXING SHADOWS_SHADOWMASK _CLUSTERED_RENDERING INSTANCING_ON FOG_LINEAR FOG_EXP FOG_EXP2 UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=3 type=Vertex platform=d3d11 reqs=1101803 mask=6 start=60 ok=1 outsize=2054 - -Cmd: compileSnippet - insize=22130 file=Packages/com.unity.render-pipelines.universal/Shaders/AutodeskInteractive/Universal Render Pipeline/Autodesk Interactive/AutodeskInteractive pass=Universal Forward cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW=_MAIN_LIGHT_SHADOWS _ADDITIONAL_LIGHTS _SCREEN_SPACE_OCCLUSION _ADDITIONAL_LIGHT_SHADOWS _REFLECTION_PROBE_BLENDING _REFLECTION_PROBE_BOX_PROJECTION dKW=DOTS_INSTANCING_ON LIGHTMAP_ON DYNAMICLIGHTMAP_ON DIRLIGHTMAP_COMBINED _MAIN_LIGHT_SHADOWS_CASCADE _MAIN_LIGHT_SHADOWS_SCREEN _ADDITIONAL_LIGHTS_VERTEX _SHADOWS_SOFT LIGHTMAP_SHADOW_MIXING SHADOWS_SHADOWMASK _DBUFFER_MRT1 _DBUFFER_MRT2 _DBUFFER_MRT3 _LIGHT_LAYERS DEBUG_DISPLAY _LIGHT_COOKIES _CLUSTERED_RENDERING INSTANCING_ON FOG_LINEAR FOG_EXP FOG_EXP2 UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=3 type=Fragment platform=d3d11 reqs=1101803 mask=6 start=60 ok=1 outsize=11026 - Unhandled exception: Protocol error - failed to read magic number (error -2147483644, transferred 0/4) Quitting shader compiler process diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe0.log b/Logs/shadercompiler-UnityShaderCompiler.exe0.log index 1a30d9cd57..d16c5f311e 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe0.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe0.log @@ -1,3 +1,4 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/PlaybackEngines' Cmd: initializeCompiler +Cmd: shutdown diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe1.log b/Logs/shadercompiler-UnityShaderCompiler.exe1.log index 746d808350..cabefcbdba 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe1.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe1.log @@ -2,6 +2,7 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data', plugins Cmd: initializeCompiler Cmd: compileSnippet - insize=23044 file=Assets/Toby Fredson/Modular Dungeon Catacombs - Mobile/Shaders/Tobyfredson/Standard Decal (URP) pass=Forward cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW=_MAIN_LIGHT_SHADOWS_CASCADE _ADDITIONAL_LIGHTS _ADDITIONAL_LIGHT_SHADOWS _SHADOWS_SOFT DIRLIGHTMAP_COMBINED FOG_EXP2 dKW=LOD_FADE_CROSSFADE DOTS_INSTANCING_ON _MAIN_LIGHT_SHADOWS _ADDITIONAL_LIGHTS_VERTEX _MIXED_LIGHTING_SUBTRACTIVE LIGHTMAP_ON FOG_LINEAR FOG_EXP INSTANCING_ON UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=3 type=Fragment platform=d3d11 reqs=227 mask=6 start=173 ok=1 outsize=15206 + insize=2411 file=Packages/com.unity.render-pipelines.universal/Shaders/Terrain/Hidden/Universal Render Pipeline/Terrain/Lit (Add Pass) pass=TerrainAddLit cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW=_MAIN_LIGHT_SHADOWS_CASCADE _ADDITIONAL_LIGHTS DIRLIGHTMAP_COMBINED FOG_EXP2 _NORMALMAP _TERRAIN_INSTANCED_PERPIXEL_NORMAL _ADDITIONAL_LIGHT_SHADOWS _REFLECTION_PROBE_BLENDING _SHADOWS_SOFT _SCREEN_SPACE_OCCLUSION dKW=_ALPHATEST_ON _MAIN_LIGHT_SHADOWS _MAIN_LIGHT_SHADOWS_SCREEN _ADDITIONAL_LIGHTS_VERTEX LIGHTMAP_SHADOW_MIXING SHADOWS_SHADOWMASK _LIGHT_LAYERS _LIGHT_COOKIES _CLUSTERED_RENDERING LIGHTMAP_ON DEBUG_DISPLAY FOG_LINEAR FOG_EXP INSTANCING_ON _TERRAIN_BLEND_HEIGHT _MASKMAP UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=3 type=Fragment platform=d3d11 reqs=227 mask=6 start=54 error: 1 plat 25 at (80): Unrecognized #pragma instancing_options directive: norenderinglayer + ok=1 outsize=18262 Cmd: shutdown diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe2.log b/Logs/shadercompiler-UnityShaderCompiler.exe2.log index e85903a362..75aa0cfd95 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe2.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe2.log @@ -2,6 +2,11 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data', plugins Cmd: initializeCompiler Cmd: compileSnippet - insize=23044 file=Assets/Toby Fredson/Modular Dungeon Catacombs - Mobile/Shaders/Tobyfredson/Standard Decal (URP) pass=Forward cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW=_MAIN_LIGHT_SHADOWS_CASCADE _ADDITIONAL_LIGHTS _ADDITIONAL_LIGHT_SHADOWS _SHADOWS_SOFT DIRLIGHTMAP_COMBINED FOG_EXP2 dKW=LOD_FADE_CROSSFADE DOTS_INSTANCING_ON _MAIN_LIGHT_SHADOWS _ADDITIONAL_LIGHTS_VERTEX _MIXED_LIGHTING_SUBTRACTIVE LIGHTMAP_ON FOG_LINEAR FOG_EXP INSTANCING_ON UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=3 type=Vertex platform=d3d11 reqs=227 mask=6 start=173 ok=1 outsize=2130 + insize=2411 file=Packages/com.unity.render-pipelines.universal/Shaders/Terrain/Hidden/Universal Render Pipeline/Terrain/Lit (Add Pass) pass=TerrainAddLit cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW=_MAIN_LIGHT_SHADOWS_CASCADE _ADDITIONAL_LIGHTS DIRLIGHTMAP_COMBINED FOG_EXP2 _NORMALMAP _TERRAIN_INSTANCED_PERPIXEL_NORMAL dKW=_MAIN_LIGHT_SHADOWS _MAIN_LIGHT_SHADOWS_SCREEN _ADDITIONAL_LIGHTS_VERTEX LIGHTMAP_SHADOW_MIXING SHADOWS_SHADOWMASK _CLUSTERED_RENDERING LIGHTMAP_ON FOG_LINEAR FOG_EXP INSTANCING_ON UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=3 type=Vertex platform=d3d11 reqs=227 mask=6 start=54 error: 1 plat 25 at (80): Unrecognized #pragma instancing_options directive: norenderinglayer + ok=1 outsize=2198 + +Cmd: compileSnippet + insize=24226 file=Assets/Toby Fredson/Modular Dungeon Catacombs - Mobile/Shaders/Tobyfredson/Simple Coverage (URP) pass=Forward cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW=_MAIN_LIGHT_SHADOWS_CASCADE _ADDITIONAL_LIGHTS _ADDITIONAL_LIGHT_SHADOWS FOG_EXP2 dKW=LOD_FADE_CROSSFADE DOTS_INSTANCING_ON _MAIN_LIGHT_SHADOWS _ADDITIONAL_LIGHTS_VERTEX _SHADOWS_SOFT _MIXED_LIGHTING_SUBTRACTIVE DIRLIGHTMAP_COMBINED LIGHTMAP_ON INSTANCING_ON FOG_LINEAR FOG_EXP UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=3 type=Fragment platform=d3d11 reqs=227 mask=6 start=174 error: 1 plat 4 at (546): pow(f, e) will not work for negative f, use abs(f) or conditionally handle negative values if you expect them + ok=1 outsize=10122 Cmd: shutdown diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe3.log b/Logs/shadercompiler-UnityShaderCompiler.exe3.log index 118a5acadc..b91fa0ae3a 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe3.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe3.log @@ -2,6 +2,7 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data', plugins Cmd: initializeCompiler Cmd: compileSnippet - insize=23044 file=Assets/Toby Fredson/Modular Dungeon Catacombs - Mobile/Shaders/Tobyfredson/Standard Decal (URP) pass=Forward cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW=_MAIN_LIGHT_SHADOWS_CASCADE _ADDITIONAL_LIGHTS _ADDITIONAL_LIGHT_SHADOWS _SHADOWS_SOFT FOG_EXP2 dKW=LOD_FADE_CROSSFADE DOTS_INSTANCING_ON _MAIN_LIGHT_SHADOWS _ADDITIONAL_LIGHTS_VERTEX _MIXED_LIGHTING_SUBTRACTIVE DIRLIGHTMAP_COMBINED LIGHTMAP_ON FOG_LINEAR FOG_EXP INSTANCING_ON UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=3 type=Vertex platform=d3d11 reqs=227 mask=6 start=173 ok=1 outsize=2130 + insize=2411 file=Packages/com.unity.render-pipelines.universal/Shaders/Terrain/Hidden/Universal Render Pipeline/Terrain/Lit (Add Pass) pass=TerrainAddLit cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW=_MAIN_LIGHT_SHADOWS_CASCADE _ADDITIONAL_LIGHTS DIRLIGHTMAP_COMBINED FOG_EXP2 _NORMALMAP _TERRAIN_INSTANCED_PERPIXEL_NORMAL _ALPHATEST_ON _ADDITIONAL_LIGHT_SHADOWS _REFLECTION_PROBE_BLENDING _SHADOWS_SOFT _SCREEN_SPACE_OCCLUSION dKW=_MAIN_LIGHT_SHADOWS _MAIN_LIGHT_SHADOWS_SCREEN _ADDITIONAL_LIGHTS_VERTEX LIGHTMAP_SHADOW_MIXING SHADOWS_SHADOWMASK _LIGHT_LAYERS _LIGHT_COOKIES _CLUSTERED_RENDERING LIGHTMAP_ON DEBUG_DISPLAY FOG_LINEAR FOG_EXP INSTANCING_ON _TERRAIN_BLEND_HEIGHT _MASKMAP UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=3 type=Fragment platform=d3d11 reqs=227 mask=6 start=54 error: 1 plat 25 at (80): Unrecognized #pragma instancing_options directive: norenderinglayer + ok=1 outsize=18378 Cmd: shutdown diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe4.log b/Logs/shadercompiler-UnityShaderCompiler.exe4.log index ff0da56552..361fe7a902 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe4.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe4.log @@ -2,6 +2,10 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data', plugins Cmd: initializeCompiler Cmd: compileSnippet - insize=23044 file=Assets/Toby Fredson/Modular Dungeon Catacombs - Mobile/Shaders/Tobyfredson/Standard Decal (URP) pass=Forward cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW=_MAIN_LIGHT_SHADOWS_CASCADE _ADDITIONAL_LIGHTS _ADDITIONAL_LIGHT_SHADOWS _SHADOWS_SOFT FOG_EXP2 dKW=LOD_FADE_CROSSFADE DOTS_INSTANCING_ON _MAIN_LIGHT_SHADOWS _ADDITIONAL_LIGHTS_VERTEX _MIXED_LIGHTING_SUBTRACTIVE DIRLIGHTMAP_COMBINED LIGHTMAP_ON FOG_LINEAR FOG_EXP INSTANCING_ON UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=3 type=Fragment platform=d3d11 reqs=227 mask=6 start=173 ok=1 outsize=15206 + insize=2411 file=Packages/com.unity.render-pipelines.universal/Shaders/Terrain/Hidden/Universal Render Pipeline/Terrain/Lit (Add Pass) pass=TerrainAddLit cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW=_MAIN_LIGHT_SHADOWS_CASCADE _ADDITIONAL_LIGHTS DIRLIGHTMAP_COMBINED FOG_EXP2 _NORMALMAP _TERRAIN_INSTANCED_PERPIXEL_NORMAL _ADDITIONAL_LIGHT_SHADOWS _REFLECTION_PROBE_BLENDING _SCREEN_SPACE_OCCLUSION dKW=_ALPHATEST_ON _MAIN_LIGHT_SHADOWS _MAIN_LIGHT_SHADOWS_SCREEN _ADDITIONAL_LIGHTS_VERTEX _SHADOWS_SOFT LIGHTMAP_SHADOW_MIXING SHADOWS_SHADOWMASK _LIGHT_LAYERS _LIGHT_COOKIES _CLUSTERED_RENDERING LIGHTMAP_ON DEBUG_DISPLAY FOG_LINEAR FOG_EXP INSTANCING_ON _TERRAIN_BLEND_HEIGHT _MASKMAP UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=3 type=Fragment platform=d3d11 reqs=227 mask=6 start=54 error: 1 plat 25 at (80): Unrecognized #pragma instancing_options directive: norenderinglayer + ok=1 outsize=13690 + +Cmd: compileSnippet + insize=24226 file=Assets/Toby Fredson/Modular Dungeon Catacombs - Mobile/Shaders/Tobyfredson/Simple Coverage (URP) pass=Forward cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW=_MAIN_LIGHT_SHADOWS_CASCADE _ADDITIONAL_LIGHTS _ADDITIONAL_LIGHT_SHADOWS FOG_EXP2 dKW=LOD_FADE_CROSSFADE DOTS_INSTANCING_ON _MAIN_LIGHT_SHADOWS _ADDITIONAL_LIGHTS_VERTEX _SHADOWS_SOFT _MIXED_LIGHTING_SUBTRACTIVE DIRLIGHTMAP_COMBINED LIGHTMAP_ON INSTANCING_ON FOG_LINEAR FOG_EXP UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=3 type=Vertex platform=d3d11 reqs=227 mask=6 start=174 ok=1 outsize=1946 Cmd: shutdown diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe5.log b/Logs/shadercompiler-UnityShaderCompiler.exe5.log index 90fd32ce2d..8ca1c1639b 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe5.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe5.log @@ -2,6 +2,7 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data', plugins Cmd: initializeCompiler Cmd: compileSnippet - insize=23044 file=Assets/Toby Fredson/Modular Dungeon Catacombs - Mobile/Shaders/Tobyfredson/Standard Decal (URP) pass=Forward cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW=_MAIN_LIGHT_SHADOWS _ADDITIONAL_LIGHTS _ADDITIONAL_LIGHT_SHADOWS DIRLIGHTMAP_COMBINED FOG_EXP2 dKW=LOD_FADE_CROSSFADE DOTS_INSTANCING_ON _MAIN_LIGHT_SHADOWS_CASCADE _ADDITIONAL_LIGHTS_VERTEX _SHADOWS_SOFT _MIXED_LIGHTING_SUBTRACTIVE LIGHTMAP_ON FOG_LINEAR FOG_EXP INSTANCING_ON UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=3 type=Fragment platform=d3d11 reqs=227 mask=6 start=173 ok=1 outsize=9922 + insize=2411 file=Packages/com.unity.render-pipelines.universal/Shaders/Terrain/Hidden/Universal Render Pipeline/Terrain/Lit (Add Pass) pass=TerrainAddLit cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW=_MAIN_LIGHT_SHADOWS_CASCADE _ADDITIONAL_LIGHTS DIRLIGHTMAP_COMBINED FOG_EXP2 _NORMALMAP _TERRAIN_INSTANCED_PERPIXEL_NORMAL _ALPHATEST_ON _ADDITIONAL_LIGHT_SHADOWS _REFLECTION_PROBE_BLENDING _SCREEN_SPACE_OCCLUSION dKW=_MAIN_LIGHT_SHADOWS _MAIN_LIGHT_SHADOWS_SCREEN _ADDITIONAL_LIGHTS_VERTEX _SHADOWS_SOFT LIGHTMAP_SHADOW_MIXING SHADOWS_SHADOWMASK _LIGHT_LAYERS _LIGHT_COOKIES _CLUSTERED_RENDERING LIGHTMAP_ON DEBUG_DISPLAY FOG_LINEAR FOG_EXP INSTANCING_ON _TERRAIN_BLEND_HEIGHT _MASKMAP UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=3 type=Fragment platform=d3d11 reqs=227 mask=6 start=54 error: 1 plat 25 at (80): Unrecognized #pragma instancing_options directive: norenderinglayer + ok=1 outsize=13806 Cmd: shutdown diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe6.log b/Logs/shadercompiler-UnityShaderCompiler.exe6.log index c6ae702051..26a6912208 100644 --- a/Logs/shadercompiler-UnityShaderCompiler.exe6.log +++ b/Logs/shadercompiler-UnityShaderCompiler.exe6.log @@ -2,6 +2,6 @@ Base path: 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data', plugins Cmd: initializeCompiler Cmd: compileSnippet - insize=23044 file=Assets/Toby Fredson/Modular Dungeon Catacombs - Mobile/Shaders/Tobyfredson/Standard Decal (URP) pass=Forward cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW=_MAIN_LIGHT_SHADOWS _ADDITIONAL_LIGHTS _ADDITIONAL_LIGHT_SHADOWS DIRLIGHTMAP_COMBINED FOG_EXP2 dKW=LOD_FADE_CROSSFADE DOTS_INSTANCING_ON _MAIN_LIGHT_SHADOWS_CASCADE _ADDITIONAL_LIGHTS_VERTEX _SHADOWS_SOFT _MIXED_LIGHTING_SUBTRACTIVE LIGHTMAP_ON FOG_LINEAR FOG_EXP INSTANCING_ON UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=3 type=Vertex platform=d3d11 reqs=227 mask=6 start=173 ok=1 outsize=2346 + insize=22609 file=Assets/Toby Fredson/Modular Dungeon Catacombs - Mobile/Shaders/Tobyfredson/Candela Flame (URP) pass=Forward cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW=_MAIN_LIGHT_SHADOWS_CASCADE _ADDITIONAL_LIGHTS _ADDITIONAL_LIGHT_SHADOWS dKW=_MAIN_LIGHT_SHADOWS _ADDITIONAL_LIGHTS_VERTEX _SHADOWS_SOFT _MIXED_LIGHTING_SUBTRACTIVE DIRLIGHTMAP_COMBINED LIGHTMAP_ON UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=3 type=Vertex platform=d3d11 reqs=1 mask=6 start=171 ok=1 outsize=3814 Cmd: shutdown diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe7.log b/Logs/shadercompiler-UnityShaderCompiler.exe7.log new file mode 100644 index 0000000000..0e88a187b4 --- /dev/null +++ b/Logs/shadercompiler-UnityShaderCompiler.exe7.log @@ -0,0 +1,7 @@ +Base path: 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + +Cmd: compileSnippet + insize=22609 file=Assets/Toby Fredson/Modular Dungeon Catacombs - Mobile/Shaders/Tobyfredson/Candela Flame (URP) pass=Forward cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW=_MAIN_LIGHT_SHADOWS_CASCADE _ADDITIONAL_LIGHTS _ADDITIONAL_LIGHT_SHADOWS dKW=_MAIN_LIGHT_SHADOWS _ADDITIONAL_LIGHTS_VERTEX _SHADOWS_SOFT _MIXED_LIGHTING_SUBTRACTIVE DIRLIGHTMAP_COMBINED LIGHTMAP_ON UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=3 type=Fragment platform=d3d11 reqs=1 mask=6 start=171 ok=1 outsize=2918 + +Cmd: shutdown diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe8.log b/Logs/shadercompiler-UnityShaderCompiler.exe8.log new file mode 100644 index 0000000000..139cb8b74b --- /dev/null +++ b/Logs/shadercompiler-UnityShaderCompiler.exe8.log @@ -0,0 +1,7 @@ +Base path: 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + +Cmd: compileSnippet + insize=23044 file=Assets/Toby Fredson/Modular Dungeon Catacombs - Mobile/Shaders/Tobyfredson/Standard Decal (URP) pass=Forward cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW=_MAIN_LIGHT_SHADOWS _ADDITIONAL_LIGHTS _ADDITIONAL_LIGHT_SHADOWS _SHADOWS_SOFT dKW=LOD_FADE_CROSSFADE DOTS_INSTANCING_ON _MAIN_LIGHT_SHADOWS_CASCADE _ADDITIONAL_LIGHTS_VERTEX _MIXED_LIGHTING_SUBTRACTIVE DIRLIGHTMAP_COMBINED LIGHTMAP_ON FOG_LINEAR FOG_EXP FOG_EXP2 INSTANCING_ON UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=3 type=Fragment platform=d3d11 reqs=227 mask=6 start=173 ok=1 outsize=14354 + +Cmd: shutdown diff --git a/Logs/shadercompiler-UnityShaderCompiler.exe9.log b/Logs/shadercompiler-UnityShaderCompiler.exe9.log new file mode 100644 index 0000000000..ccefd152bd --- /dev/null +++ b/Logs/shadercompiler-UnityShaderCompiler.exe9.log @@ -0,0 +1,7 @@ +Base path: 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data', plugins path 'C:/Program Files/Unity/Hub/Editor/2021.3.15f1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + +Cmd: compileSnippet + insize=23044 file=Assets/Toby Fredson/Modular Dungeon Catacombs - Mobile/Shaders/Tobyfredson/Standard Decal (URP) pass=Forward cachingPP=1 ppOnly=0 stripLineD=0 buildPlatform=19 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_RGBM_ENCODING uKW=_MAIN_LIGHT_SHADOWS _ADDITIONAL_LIGHTS _ADDITIONAL_LIGHT_SHADOWS _SHADOWS_SOFT dKW=LOD_FADE_CROSSFADE DOTS_INSTANCING_ON _MAIN_LIGHT_SHADOWS_CASCADE _ADDITIONAL_LIGHTS_VERTEX _MIXED_LIGHTING_SUBTRACTIVE DIRLIGHTMAP_COMBINED LIGHTMAP_ON FOG_LINEAR FOG_EXP FOG_EXP2 INSTANCING_ON UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_ENABLE_NATIVE_SHADOW_LOOKUPS UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_NO_FULL_STANDARD_SHADER UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_HALF_PRECISION_FRAGMENT_SHADER_REGISTERS UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_FULL_HDR UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=3 type=Vertex platform=d3d11 reqs=227 mask=6 start=173 ok=1 outsize=2190 + +Cmd: shutdown diff --git a/UserSettings/EditorUserSettings.asset b/UserSettings/EditorUserSettings.asset index abd121317e..8868c33963 100644 --- a/UserSettings/EditorUserSettings.asset +++ b/UserSettings/EditorUserSettings.asset @@ -6,31 +6,31 @@ EditorUserSettings: serializedVersion: 4 m_ConfigSettings: RecentlyUsedSceneGuid-0: - value: 55520d5156500d020c585d7b137b0e44434f487f7429703174704f32bbb5653a - flags: 0 - RecentlyUsedSceneGuid-1: - value: 05050356550d590b0e0f0d2712775a4445161e7c7a7e23312b2c1c60b4b2636e - flags: 0 - RecentlyUsedSceneGuid-2: value: 5401515351040d03545a54744922094440161b7b792d736878714867bbe46068 flags: 0 - RecentlyUsedSceneGuid-3: + RecentlyUsedSceneGuid-1: value: 5201500506515d0a5c0d5d7043760844124e4829287172607f2b1b63e7b4633b flags: 0 - RecentlyUsedSceneGuid-4: + RecentlyUsedSceneGuid-2: value: 07530d02075308090b0c55714220074441161a7a747f7036787d4e30e1e56d69 flags: 0 - RecentlyUsedSceneGuid-5: + RecentlyUsedSceneGuid-3: value: 0202005f00545a035d0f0d7a45720e44454e19287c7f76367d701837e7e6666b flags: 0 - RecentlyUsedSceneGuid-6: + RecentlyUsedSceneGuid-4: value: 0654560450020a085e5f5a7a45760744474e4e2f292977622e70196abab4623a flags: 0 + RecentlyUsedSceneGuid-5: + value: 5505025555075058550d5f7342200b4414161c7e7471236875284835bab46069 + flags: 0 + RecentlyUsedSceneGuid-6: + value: 5a5456045c540809545e0f7013725e444f164c7e297b70337b794e32b2b9646a + flags: 0 RecentlyUsedSceneGuid-7: - value: 550555075c065e0b5e5a5424402108444715197a7b2b2435742b4e6ab2b16d3b + value: 5601565f50500a0f0b0a5c2011740f441415197c2a7822327e2a1860b6b63239 flags: 0 RecentlyUsedSceneGuid-8: - value: 5505025555075058550d5f7342200b4414161c7e7471236875284835bab46069 + value: 550555075c065e0b5e5a5424402108444715197a7b2b2435742b4e6ab2b16d3b flags: 0 RecentlyUsedSceneGuid-9: value: 570807535451500b54560921437a0944464e1a7b292b7e3279781835e7b53139 diff --git a/UserSettings/Layouts/default-2021.dwlt b/UserSettings/Layouts/default-2021.dwlt index 330d02f168..d0ff88cb80 100644 --- a/UserSettings/Layouts/default-2021.dwlt +++ b/UserSettings/Layouts/default-2021.dwlt @@ -19,7 +19,7 @@ MonoBehaviour: width: 1706.6666 height: 877.7778 m_ShowMode: 4 - m_Title: Project + m_Title: Hierarchy m_RootView: {fileID: 2} m_MinSize: {x: 875, y: 300} m_MaxSize: {x: 10000, y: 10000} @@ -119,7 +119,7 @@ MonoBehaviour: m_MinSize: {x: 300, y: 200} m_MaxSize: {x: 24288, y: 16192} vertical: 0 - controlID: 187 + controlID: 48 --- !u!114 &6 MonoBehaviour: m_ObjectHideFlags: 52 @@ -139,12 +139,12 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 1275.1111 + width: 1284.4445 height: 827.7778 m_MinSize: {x: 200, y: 200} m_MaxSize: {x: 16192, y: 16192} vertical: 1 - controlID: 188 + controlID: 49 --- !u!114 &7 MonoBehaviour: m_ObjectHideFlags: 52 @@ -164,12 +164,12 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 1275.1111 - height: 540 + width: 1284.4445 + height: 560 m_MinSize: {x: 200, y: 100} m_MaxSize: {x: 16192, y: 8096} vertical: 0 - controlID: 189 + controlID: 50 --- !u!114 &8 MonoBehaviour: m_ObjectHideFlags: 52 @@ -187,8 +187,8 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 314.66666 - height: 540 + width: 306.66666 + height: 560 m_MinSize: {x: 201, y: 221} m_MaxSize: {x: 4001, y: 4021} m_ActualView: {fileID: 13} @@ -213,12 +213,12 @@ MonoBehaviour: m_Children: [] m_Position: serializedVersion: 2 - x: 314.66666 + x: 306.66666 y: 0 - width: 960.44446 - height: 540 - m_MinSize: {x: 200, y: 200} - m_MaxSize: {x: 4000, y: 4000} + width: 977.77783 + height: 560 + m_MinSize: {x: 202, y: 221} + m_MaxSize: {x: 4002, y: 4021} m_ActualView: {fileID: 16} m_Panes: - {fileID: 16} @@ -243,9 +243,9 @@ MonoBehaviour: m_Position: serializedVersion: 2 x: 0 - y: 540 - width: 1275.1111 - height: 287.77777 + y: 560 + width: 1284.4445 + height: 267.77777 m_MinSize: {x: 231, y: 271} m_MaxSize: {x: 10001, y: 10021} m_ActualView: {fileID: 19} @@ -270,12 +270,12 @@ MonoBehaviour: m_Children: [] m_Position: serializedVersion: 2 - x: 1275.1111 + x: 1284.4445 y: 0 - width: 431.55554 + width: 422.22217 height: 827.7778 - m_MinSize: {x: 275, y: 50} - m_MaxSize: {x: 4000, y: 4000} + m_MinSize: {x: 276, y: 71} + m_MaxSize: {x: 4001, y: 4021} m_ActualView: {fileID: 22} m_Panes: - {fileID: 22} @@ -309,10 +309,10 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 314.66666 + x: 306.66666 y: 72.44444 - width: 958.44446 - height: 519 + width: 975.77783 + height: 539 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -359,23 +359,23 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 21 - width: 958.44446 - height: 498 - m_Scale: {x: 0.51875, y: 0.51875} - m_Translation: {x: 479.22223, y: 249} + width: 975.77783 + height: 518 + m_Scale: {x: 0.5395833, y: 0.5395833} + m_Translation: {x: 487.88892, y: 259} m_MarginLeft: 0 m_MarginRight: 0 m_MarginTop: 0 m_MarginBottom: 0 m_LastShownAreaInsideMargins: serializedVersion: 2 - x: -923.8019 + x: -904.1957 y: -480 - width: 1847.6038 + width: 1808.3914 height: 960 m_MinimalGUI: 1 - m_defaultScale: 0.51875 - m_LastWindowPixelSize: {x: 2156.5, y: 1167.75} + m_defaultScale: 0.5395833 + m_LastWindowPixelSize: {x: 2195.5, y: 1212.75} m_ClearInEditMode: 1 m_NoCameraWarning: 1 m_LowResolutionForAspectRatios: 01000000000000000000 @@ -404,8 +404,8 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 72.44444 - width: 313.66666 - height: 519 + width: 305.66666 + height: 539 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -413,23 +413,23 @@ MonoBehaviour: m_SceneHierarchy: m_TreeViewState: scrollPos: {x: 0, y: 0} - m_SelectedIDs: 32931300 + m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: c6f7c3ff40fdc3ffdc05c4ff5c0bc4ffd610c4ff6043c6ffb02cc7ff2a32c7fff2bfc7ffd212ccff8413ccff9cf0cdff9057ceff2cacd1ff5eecd2ffc68ed4ff001cd8ff6e23d8ff3648d8ffc048d8fff64fd8ff1259d8ffec76d8ff5477d8ff1e7cd8ffa07cd8ffcac3d8fffa2dd9ffb078d9fffc99d9ffb49ed9ff88f9d9ff54d3daff00d4daffa8dcdaffbadcdaff7e2fdbff264bdbff826adbff1077dbff9470deffe441f3ffa84df3ff600cf6ff6c0cf6ff6e0cf6fff876f6ff1683fbffc0b1fbff4e29fcff7a7bfcff8466fdff48f4fdfff03dffffd6faffff7a9104004a940400be020500c0040500de040500be080500f8160500101705009a1705004a180500501c0500fa20050026880500409a0500589a0500e29a0500929f0500989f0500fe5f0600e6600600d0610600086206005462060058630600286406001e6906002e690600b2690600206a0600406a0600f06b06000e310b00de330b0090280c0054c5120024c81200a82f1300da5c1300 + m_ExpandedIDs: 8e17a3ff222ea3ffa480a3ff3c84a3ffbed6a3ff44dea3ffc630a4ff687aa5ffe27fa5ff7e88a5ff9c95b9ff641dc2ff0471ccff8054d0ffa8ead2fff869d3ff2c90d3fffc71d5fff297e2ff9ccce3ff3e38e4ffd48ae4ff4c44e8fff8a1eaff5ed0eaff120eebff9460ebffbadff0ff08e9f1ff82eef1ff1ef7f1fffe15f2fffe5ff2ffac7df2ff8292f2ff8692f2ff8892f2ff9692f2ff88a0f2ff96d4f2ffd2d4f2ff54d5f2ffd8def2ff28e0f2ff32e0f2ff3ae0f2ff1ee7f2ff6af8f2ff7212f3ff0e5bf4ff4a5bf4ffd4e2f4ffdce2f4ff00e3f4ff18e3f4fff2edf4ff70eef4ffeeeef4ff42eff4ff4ceff4ff54eff4ff58eff4ff38f6f4ff3cf8f5ff8a4af6ff6454f6ffee7ff6ff1ed2f6ff5edbf6ffa0e5f6ff94f8f6ffc04af7ffc4dffeff24e0feff9ee5feff6273ffff86b1ffff42b9ffffd6faffff129b0000e28a030090980300ee4a060040a30600d2a30600f8a606008a4508008247080096480800444a0800384d0800604d08008a4e0800da510800a0520800985408005a570800305908004e5a0800765a0800a05b0800f05e0800086d0800f0f30800e8f50800fcf60800aaf808009efb0800c6fb0800f0fc080040000900640e09008c110900781209008a1209008e120900e4130900021409006014090092140900e01409001c1509001e16090026160900101709008c170900a417090062180900c418090022190900521909007a1a0900861a0900ae1a0900e41a0900041b0900d21b0900f01b0900b01c0900181d0900121e0900541e0900ac1e0900e81e0900641f0900525609008c6b0900a05b0a0050de0a008ace0b005c6f0d00e8a80d003cb00d008ab80d00aabd0d0066d20d005ef313006cec14005aef1400 m_RenameOverlay: m_UserAcceptedRename: 0 - m_Name: - m_OriginalName: + m_Name: RckPlayer + m_OriginalName: RckPlayer m_EditFieldRect: serializedVersion: 2 x: 0 y: 0 width: 0 height: 0 - m_UserData: 0 + m_UserData: 1371244 m_IsWaitingForDelay: 0 m_IsRenaming: 0 - m_OriginalEventType: 11 + m_OriginalEventType: 4 m_IsRenamingFilename: 0 m_ClientGUIView: {fileID: 8} m_SearchString: @@ -973,10 +973,10 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 314.66666 + x: 306.66666 y: 72.44444 - width: 958.44446 - height: 519 + width: 975.77783 + height: 539 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -1162,14 +1162,14 @@ MonoBehaviour: floating: 0 collapsed: 0 displayed: 0 - snapOffset: {x: -231.55554, y: -197.7778} + snapOffset: {x: -231.5556, y: -197.7778} snapOffsetDelta: {x: 0, y: 0} snapCorner: 3 id: Scene View/Particles index: 10 layout: 4 m_WindowGUID: ea1e2f8837bb8eb4392a7b44a4a660a7 - m_Gizmos: 1 + m_Gizmos: 0 m_OverrideSceneCullingMask: 6917529027641081856 m_SceneIsLit: 1 m_SceneLighting: 1 @@ -1178,9 +1178,9 @@ MonoBehaviour: m_PlayAudio: 0 m_AudioPlay: 0 m_Position: - m_Target: {x: 1929.9484, y: 1064.8464, z: 4795.4165} + m_Target: {x: 1954.1781, y: 1104.2548, z: -2147.9285} speed: 2 - m_Value: {x: 1929.9484, y: 1064.8464, z: 4795.4165} + m_Value: {x: 0.0034463406, y: 1.9047768, z: 0.004334688} m_RenderMode: 0 m_CameraMode: drawMode: 0 @@ -1197,7 +1197,7 @@ MonoBehaviour: showImageEffects: 1 showParticleSystems: 1 showVisualEffectGraphs: 1 - m_FxEnabled: 0 + m_FxEnabled: 1 m_Grid: xGrid: m_Fade: @@ -1227,13 +1227,13 @@ MonoBehaviour: m_GridAxis: 1 m_gridOpacity: 0.487 m_Rotation: - m_Target: {x: 0.0044657597, y: 0.0007471096, z: 0.0021624474, w: 1.0003822} + m_Target: {x: -0.014436688, y: 0.010877646, z: -0.002822108, w: -1.0002425} speed: 2 - m_Value: {x: 0.0044639977, y: 0.0007468148, z: 0.0021615943, w: 0.9999875} + m_Value: {x: 0.005870416, y: -0.20069197, z: -0.0039246026, w: -0.9796289} m_Size: - m_Target: 3416.5134 + m_Target: 10 speed: 2 - m_Value: 3416.5134 + m_Value: 3.2553196 m_Ortho: m_Target: 0 speed: 2 @@ -1903,10 +1903,10 @@ MonoBehaviour: e32: 0 e33: 1 m_PreviewAnimator: {fileID: 0} - m_AnimatorController: {fileID: 9100000, guid: 536275632d30516498fa6752fba53386, + m_AnimatorController: {fileID: 9100000, guid: 7dcb02527cf04754ea4de6d04ea7a101, type: 2} m_BreadCrumbs: - - m_Target: {fileID: 1107501224754299270, guid: 536275632d30516498fa6752fba53386, + - m_Target: {fileID: 1107795364128738600, guid: 7dcb02527cf04754ea4de6d04ea7a101, type: 2} m_ScrollPosition: {x: 0, y: 0} stateMachineGraph: {fileID: 0} @@ -5376,9 +5376,9 @@ MonoBehaviour: m_Pos: serializedVersion: 2 x: 0 - y: 612.44446 - width: 1274.1111 - height: 266.77777 + y: 632.44446 + width: 1283.4445 + height: 246.77777 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -5396,22 +5396,22 @@ MonoBehaviour: m_SkipHidden: 0 m_SearchArea: 1 m_Folders: - - Assets/Daz3D/Races/Abyss + - Assets/Daz3D/SoundEffects/UpstairsDoor m_Globs: [] m_OriginalText: m_ViewMode: 1 - m_StartGridSize: 96 + m_StartGridSize: 90 m_LastFolders: - - Assets/Daz3D/Races/Abyss - m_LastFoldersGridSize: 96 + - Assets/Daz3D/SoundEffects/UpstairsDoor + m_LastFoldersGridSize: 90 m_LastProjectPath: C:\Work\Firstborn m_LockTracker: m_IsLocked: 0 m_FolderTreeState: - scrollPos: {x: 0, y: 799} - m_SelectedIDs: 60150300 - m_LastClickedID: 202080 - m_ExpandedIDs: 00000000881403008a1403008c1403008e14030090140300921403009414030096140300981403009a1403009c1403009e140300a0140300a2140300a4140300a6140300a8140300aa140300ac140300ae140300b0140300b4140300b8140300ba140300bc140300be140300c0140300c2140300c4140300c6140300c8140300ca140300cc140300ce140300d0140300d2140300d4140300d6140300d8140300da140300dc140300de140300e01403006015030064150300681503006a1503008215030084150300861503008a1503008c1503008e15030092150300941503009615030098150300f6160300 + scrollPos: {x: 0, y: 1075.3287} + m_SelectedIDs: de8e1500 + m_LastClickedID: 1412830 + m_ExpandedIDs: 00000000761503007a1503007c1503007e150300801503008415030086150300881503008a1503008c1503008e15030090150300921503009415030096150300981503009a1503009c1503009e150300a0150300a2150300a4150300a6150300a8150300aa150300ac150300ae150300b0150300b2150300b4150300b6150300b8150300ba150300bc150300be150300c2150300c4150300c6150300c8150300ca150300cc150300341603003a160300461603008c1603002a330600a0330600e09c13009c8a1500 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -5439,7 +5439,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: 00000000881403008a1403008c1403008e14030090140300921403009414030096140300981403009a1403009c1403009e140300a0140300a2140300a4140300a6140300a8140300aa140300ac140300ae140300b0140300b2140300b4140300b6140300b8140300ba140300bc140300be140300c0140300c2140300c4140300c6140300c8140300ca140300cc140300ce140300d0140300d2140300d4140300d6140300d8140300da140300dc140300de140300e0140300 + m_ExpandedIDs: 0000000076150300781503007a1503007c1503007e15030080150300821503008415030086150300881503008a1503008c1503008e15030090150300921503009415030096150300981503009a1503009c1503009e150300a0150300a2150300a4150300a6150300a8150300aa150300ac150300ae150300b0150300b2150300b4150300b6150300b8150300ba150300bc150300be150300c0150300c2150300c4150300c6150300c8150300ca150300cc150300 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -5492,7 +5492,7 @@ MonoBehaviour: m_ResourceFile: m_NewAssetIndexInList: -1 m_ScrollPosition: {x: 0, y: 0} - m_GridSize: 96 + m_GridSize: 90 m_SkipHiddenPackages: 0 m_DirectoriesAreaWidth: 183 --- !u!114 &20 @@ -5517,9 +5517,9 @@ MonoBehaviour: m_Pos: serializedVersion: 2 x: 0 - y: 612.44446 - width: 1278.1111 - height: 266.77777 + y: 632.44446 + width: 1283.4445 + height: 246.77777 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -5546,9 +5546,9 @@ MonoBehaviour: m_Pos: serializedVersion: 2 x: 0 - y: 586.6667 - width: 1355.4445 - height: 292.55554 + y: 632.44446 + width: 1283.4445 + height: 246.77777 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: m_LastAppliedPresetName: Default @@ -6567,9 +6567,9 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 1275.1111 + x: 1284.4445 y: 72.44444 - width: 430.55554 + width: 421.22217 height: 806.7778 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: @@ -6609,9 +6609,9 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 1279.1111 + x: 1284.4445 y: 72.44444 - width: 426.55554 + width: 421.22217 height: 806.7778 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: @@ -6637,9 +6637,9 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 1275.1111 + x: 1284.4445 y: 72.44444 - width: 430.55554 + width: 421.22217 height: 806.7778 m_ViewDataDictionary: {fileID: 0} m_OverlayCanvas: @@ -6651,7 +6651,7 @@ MonoBehaviour: - {fileID: 11400000, guid: 86b7d29b634754d4da7dd5794f671036, type: 2} - {fileID: 11400000, guid: 4fbab9993cb0bf14dbb2d6ebdf0c5615, type: 2} - {fileID: 11400000, guid: 235171b3db79e854395b3c2b013842b9, type: 2} - selectedWorldspace: {fileID: 11400000, guid: 4fbab9993cb0bf14dbb2d6ebdf0c5615, type: 2} + selectedWorldspace: {fileID: 11400000, guid: 235171b3db79e854395b3c2b013842b9, type: 2} --- !u!114 &25 MonoBehaviour: m_ObjectHideFlags: 52