diff --git a/LMC/.vs/LMC/v17/.suo b/LMC/.vs/LMC/v17/.suo index 31689244..f0a4e2e3 100644 Binary files a/LMC/.vs/LMC/v17/.suo and b/LMC/.vs/LMC/v17/.suo differ diff --git a/LMC/Assets/Initalize.cs b/LMC/Assets/Initalize.cs index d4ef94bf..6ad4ea30 100644 --- a/LMC/Assets/Initalize.cs +++ b/LMC/Assets/Initalize.cs @@ -19,11 +19,15 @@ public class Initalize : MonoBehaviour public DoorAnimation[] Door; public NewTextModify[] Label; public GameObject AllBoxes; - public TextMeshProUGUI CodeInput; public int IndexChange = -1, ActionChange = -1, TimeStop = 0, Accumulator = 0; public bool ActionExisted = false, ActionMoving = false; Queue AllOperation = new Queue(); + public GameObject TextAreaInstruction, TextAreaInput, CompileButton; + public TextMeshProUGUI Instruction, Input; + Queue AllInput = new Queue(); + public int Output; + private bool GonnaCompile = true; private int FakeAccumulator = 0; private int[] FakeBoxes = new int[100]; @@ -37,8 +41,6 @@ public class Initalize : MonoBehaviour Door[i] = Boxes[i].gameObject.transform.GetChild(0).GetChild(0).GetComponent(); Label[i].Init(i); } - UpdateValue(0, 10); - UpdateValue(1, 2); } public Operation Cope(int idx, int val, int op) { @@ -50,20 +52,20 @@ public class Initalize : MonoBehaviour // Put value from Box into Accumulator void Op5(int idx) { AllOperation.Enqueue(Cope(idx, 0, 1)); - AllOperation.Enqueue(Cope(100, Label[idx].Val, 0)); + AllOperation.Enqueue(Cope(100, FakeBoxes[idx], 0)); AllOperation.Enqueue(Cope(0, 100, 3)); AllOperation.Enqueue(Cope(idx, 0, 2)); - FakeBoxes[idx] = FakeAccumulator; + FakeAccumulator = FakeBoxes[idx]; } // Put value from Accumulator into Box void Op3(int idx) { // Code to animate number to fly up from Accumulator AllOperation.Enqueue(Cope(idx, 0, 1)); - AllOperation.Enqueue(Cope(idx, Accumulator, 0)); + AllOperation.Enqueue(Cope(idx, FakeAccumulator, 0)); AllOperation.Enqueue(Cope(0, 100, 3)); AllOperation.Enqueue(Cope(idx, 0, 2)); - FakeAccumulator = FakeBoxes[idx]; + FakeBoxes[idx] = FakeAccumulator; } // Get value from Box and add into Accumulator @@ -84,6 +86,19 @@ public class Initalize : MonoBehaviour FakeAccumulator -= FakeBoxes[idx]; } + void Op901() { + // Code to summon number from Input Bracket + Debug.Log(AllInput.Peek()); + AllOperation.Enqueue(Cope(100, AllInput.Peek(), 0)); + FakeAccumulator = AllInput.Peek(); AllInput.Dequeue(); + } + + void Op902() { + // Code to summon number from Accumulator + AllOperation.Enqueue(Cope(101, FakeAccumulator, 0)); + // Output = FakeAccumulator; + } + // Just update value of a box from nowhere void UpdateValue(int idx, int value) { AllOperation.Enqueue(Cope(idx, 0, 1)); @@ -97,17 +112,40 @@ public class Initalize : MonoBehaviour } - void Compile() { + bool CheckDigit(char c) { + return (c >= '0' && c <= '9'); + } + + public void Compile() { if(!GonnaCompile) return; - string InputText = CodeInput.text; - if(InputText.Length <= -1 || InputText[0] != '#') return; + GonnaCompile = false; + string InstructionText = Instruction.text; + string InputText = Input.text; + + TextAreaInstruction.gameObject.SetActive(false); + CompileButton.gameObject.SetActive(false); + TextAreaInput.gameObject.SetActive(false); + + int InputLength = InputText.Length; + for(int i = 0; i < InputLength; ++i) { + int idx = i, value = 0; + while(idx < InputLength && CheckDigit(InputText[idx])) { + value = value * 10 + (InputText[idx] - '0'); + ++idx; + } + if(i != idx) { + i = idx - 1; + AllInput.Enqueue(value); + } + } + int[] EncodeOperation = new int[100]; - int InputLength = InputText.Length, Counter = 0; - for(int i = 2; i < InputLength - 2; i += 4) { - EncodeOperation[Counter] = Convert.ToInt32(InputText.Substring(i, 3)); + int InstructionLength = InstructionText.Length, Counter = 0; + for(int i = 0; i < InstructionLength - 2; i += 4) { + EncodeOperation[Counter] = Convert.ToInt32(InstructionText.Substring(i, 3)); Counter += 1; } - GonnaCompile = false; + int ptr = 0; while(true) { int OpType = EncodeOperation[ptr] / 100; @@ -116,7 +154,8 @@ public class Initalize : MonoBehaviour break; } else if(OpType == 9) { - continue; + if(OpValue == 1) Op901(); + if(OpValue == 2) Op902(); } else if(OpType == 1) { Op1(OpValue); @@ -149,7 +188,7 @@ public class Initalize : MonoBehaviour // Update is called once per frame void Update() { - Compile(); + // Compile(); if(TimeStop > 0) { TimeStop -= 1; return; @@ -173,6 +212,10 @@ public class Initalize : MonoBehaviour Accumulator = Current.val; return; } + else if(Current.idx == 101) { + Output = Current.val; + return; + } Label[Current.idx].ChangeValue(Current.val); } else if(Current.op == 4) { diff --git a/LMC/Assets/Scenes/SampleScene.unity b/LMC/Assets/Scenes/SampleScene.unity index b639d09b..fce07e5b 100644 --- a/LMC/Assets/Scenes/SampleScene.unity +++ b/LMC/Assets/Scenes/SampleScene.unity @@ -781,13 +781,18 @@ MonoBehaviour: - {fileID: 0} - {fileID: 0} AllBoxes: {fileID: 97568986} - CodeInput: {fileID: 1195206002} IndexChange: -1 ActionChange: -1 TimeStop: 0 Accumulator: 0 ActionExisted: 0 ActionMoving: 0 + TextAreaInstruction: {fileID: 448218627} + TextAreaInput: {fileID: 638741701} + CompileButton: {fileID: 1413505213} + Instruction: {fileID: 1195206002} + Input: {fileID: 548021054} + Output: 0 --- !u!4 &97568988 Transform: m_ObjectHideFlags: 0 @@ -1776,6 +1781,141 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} +--- !u!1 &376003978 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 376003979} + - component: {fileID: 376003981} + - component: {fileID: 376003980} + 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 &376003979 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 376003978} + 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: 1413505214} + m_RootOrder: -1 + 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 &376003980 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 376003978} + 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: Compile + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4281479730 + m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, 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: 24 + m_fontSizeBase: 24 + m_fontWeight: 400 + m_enableAutoSizing: 0 + 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 &376003981 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 376003978} + m_CullTransparentMesh: 1 --- !u!1001 &394609699 PrefabInstance: m_ObjectHideFlags: 0 @@ -2119,7 +2259,7 @@ GameObject: - component: {fileID: 448218630} - component: {fileID: 448218629} m_Layer: 5 - m_Name: InputField (TMP) + m_Name: Instruction m_TagString: Untagged m_Icon: {fileID: 0} m_NavMeshLayer: 0 @@ -2134,7 +2274,7 @@ RectTransform: m_GameObject: {fileID: 448218627} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalPosition: {x: 0, y: 0, z: 0} - m_LocalScale: {x: 3, y: 3, z: 1} + m_LocalScale: {x: 2, y: 2, z: 1} m_ConstrainProportionsScale: 0 m_Children: - {fileID: 1009749425} @@ -2143,7 +2283,7 @@ RectTransform: 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: 1676, y: 480} + m_AnchoredPosition: {x: 800, y: 141} m_SizeDelta: {x: 160, y: 400} m_Pivot: {x: 0.5, y: 0.5} --- !u!114 &448218629 @@ -2475,6 +2615,141 @@ Transform: m_CorrespondingSourceObject: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} m_PrefabInstance: {fileID: 513236485} m_PrefabAsset: {fileID: 0} +--- !u!1 &548021052 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 548021053} + - component: {fileID: 548021055} + - component: {fileID: 548021054} + m_Layer: 5 + m_Name: Text + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &548021053 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 548021052} + 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: 1967074424} + m_RootOrder: -1 + 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 &548021054 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 548021052} + 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: "\u200B" + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 4281479730 + m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, 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: 30 + m_fontSizeBase: 30 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 0 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + 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: 1 + 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 &548021055 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 548021052} + m_CullTransparentMesh: 1 --- !u!4 &553262920 stripped Transform: m_CorrespondingSourceObject: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} @@ -2744,72 +3019,248 @@ Transform: m_CorrespondingSourceObject: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} m_PrefabInstance: {fileID: 617471206} m_PrefabAsset: {fileID: 0} ---- !u!1001 &628076387 -PrefabInstance: +--- !u!1001 &628076387 +PrefabInstance: + m_ObjectHideFlags: 0 + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 97568988} + m_Modifications: + - target: {fileID: 1549258216444794940, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} + propertyPath: m_Name + value: Box18 + objectReference: {fileID: 0} + - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} + propertyPath: m_RootOrder + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} + propertyPath: m_LocalPosition.x + value: 96 + objectReference: {fileID: 0} + - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} + propertyPath: m_LocalPosition.y + value: 12 + objectReference: {fileID: 0} + - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} + propertyPath: m_LocalRotation.w + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} + propertyPath: m_LocalRotation.y + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -180 + objectReference: {fileID: 0} + - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} +--- !u!4 &637279427 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} + m_PrefabInstance: {fileID: 471151012} + m_PrefabAsset: {fileID: 0} +--- !u!1 &638741701 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 638741702} + - component: {fileID: 638741705} + - component: {fileID: 638741704} + - component: {fileID: 638741703} + m_Layer: 5 + m_Name: Input + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &638741702 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 638741701} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 2, y: 2, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 1967074424} + m_Father: {fileID: 1085063768} + m_RootOrder: -1 + 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: -802, y: 144} + m_SizeDelta: {x: 160, y: 400} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &638741703 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 638741701} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 2da0c512f12947e489f739169773d7ca, 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: 638741704} + m_TextViewport: {fileID: 1967074424} + m_TextComponent: {fileID: 548021054} + m_Placeholder: {fileID: 1925275426} + m_VerticalScrollbar: {fileID: 0} + m_VerticalScrollbarEventHandler: {fileID: 0} + m_LayoutGroup: {fileID: 0} + m_ScrollSensitivity: 1 + m_ContentType: 0 + m_InputType: 0 + m_AsteriskChar: 42 + m_KeyboardType: 0 + m_LineType: 2 + m_HideMobileInput: 0 + m_HideSoftKeyboard: 0 + m_CharacterValidation: 0 + m_RegexValue: + m_GlobalPointSize: 30 + m_CharacterLimit: 0 + m_OnEndEdit: + m_PersistentCalls: + m_Calls: [] + m_OnSubmit: + m_PersistentCalls: + m_Calls: [] + m_OnSelect: + m_PersistentCalls: + m_Calls: [] + m_OnDeselect: + m_PersistentCalls: + m_Calls: [] + m_OnTextSelection: + m_PersistentCalls: + m_Calls: [] + m_OnEndTextSelection: + m_PersistentCalls: + m_Calls: [] + m_OnValueChanged: + m_PersistentCalls: + m_Calls: [] + m_OnTouchScreenKeyboardStatusChanged: + m_PersistentCalls: + m_Calls: [] + m_CaretColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 1} + m_CustomCaretColor: 0 + m_SelectionColor: {r: 0.65882355, g: 0.80784315, b: 1, a: 0.7529412} + m_Text: + m_CaretBlinkRate: 0.85 + m_CaretWidth: 1 + m_ReadOnly: 0 + m_RichText: 1 + m_GlobalFontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_OnFocusSelectAll: 1 + m_ResetOnDeActivation: 1 + m_RestoreOriginalTextOnEscape: 1 + m_isRichTextEditingAllowed: 0 + m_LineLimit: 0 + m_InputValidator: {fileID: 0} +--- !u!114 &638741704 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 638741701} + 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: 10911, 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!222 &638741705 +CanvasRenderer: m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 97568988} - m_Modifications: - - target: {fileID: 1549258216444794940, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} - propertyPath: m_Name - value: Box18 - objectReference: {fileID: 0} - - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} - propertyPath: m_RootOrder - value: -1 - objectReference: {fileID: 0} - - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} - propertyPath: m_LocalPosition.x - value: 96 - objectReference: {fileID: 0} - - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} - propertyPath: m_LocalPosition.y - value: 12 - objectReference: {fileID: 0} - - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} - propertyPath: m_LocalRotation.w - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} - propertyPath: m_LocalRotation.x - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} - propertyPath: m_LocalRotation.y - value: -1 - objectReference: {fileID: 0} - - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} - propertyPath: m_LocalRotation.z - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: -180 - objectReference: {fileID: 0} - - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} ---- !u!4 &637279427 stripped -Transform: - m_CorrespondingSourceObject: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} - m_PrefabInstance: {fileID: 471151012} + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 638741701} + m_CullTransparentMesh: 1 --- !u!1001 &642665044 PrefabInstance: m_ObjectHideFlags: 0 @@ -3709,14 +4160,14 @@ Transform: m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} m_GameObject: {fileID: 963194225} - m_LocalRotation: {x: 0.028185856, y: 0.28195474, z: 0.0063974247, w: 0.9589923} - m_LocalPosition: {x: -24.1, y: 20.9, z: -38.6} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 57, y: 70, z: -159} m_LocalScale: {x: 1, y: 1, z: 1} m_ConstrainProportionsScale: 0 m_Children: [] m_Father: {fileID: 0} m_RootOrder: 0 - m_LocalEulerAnglesHint: {x: 2.892, y: 32.809, z: 1.616} + m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} --- !u!1001 &966064722 PrefabInstance: m_ObjectHideFlags: 0 @@ -4372,7 +4823,7 @@ MonoBehaviour: m_OnCullStateChanged: m_PersistentCalls: m_Calls: [] - m_text: Enter text... + m_text: Instruction m_isRightToLeft: 0 m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} @@ -4502,10 +4953,10 @@ MonoBehaviour: m_Script: {fileID: 11500000, guid: 0cd44c1031e13a943bb63640046fad76, type: 3} m_Name: m_EditorClassIdentifier: - m_UiScaleMode: 0 + m_UiScaleMode: 1 m_ReferencePixelsPerUnit: 100 m_ScaleFactor: 1 - m_ReferenceResolution: {x: 800, y: 600} + m_ReferenceResolution: {x: 1920, y: 1080} m_ScreenMatchMode: 0 m_MatchWidthOrHeight: 0 m_PhysicalUnit: 3 @@ -4549,6 +5000,8 @@ RectTransform: m_ConstrainProportionsScale: 0 m_Children: - {fileID: 448218628} + - {fileID: 1413505214} + - {fileID: 638741702} m_Father: {fileID: 0} m_RootOrder: 3 m_LocalEulerAnglesHint: {x: 0, y: 0, z: 0} @@ -5873,69 +6326,203 @@ Transform: --- !u!1001 &1362127800 PrefabInstance: m_ObjectHideFlags: 0 - serializedVersion: 2 - m_Modification: - serializedVersion: 3 - m_TransformParent: {fileID: 97568988} - m_Modifications: - - target: {fileID: 1549258216444794940, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} - propertyPath: m_Name - value: Box82 - objectReference: {fileID: 0} - - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} - propertyPath: m_RootOrder - value: -1 - objectReference: {fileID: 0} - - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} - propertyPath: m_LocalPosition.x - value: 24 - objectReference: {fileID: 0} - - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} - propertyPath: m_LocalPosition.y - value: 96 - objectReference: {fileID: 0} - - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} - propertyPath: m_LocalPosition.z - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} - propertyPath: m_LocalRotation.w - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} - propertyPath: m_LocalRotation.x - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} - propertyPath: m_LocalRotation.y - value: -1 - objectReference: {fileID: 0} - - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} - propertyPath: m_LocalRotation.z - value: -0 - objectReference: {fileID: 0} - - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} - propertyPath: m_LocalEulerAnglesHint.x - value: 0 - objectReference: {fileID: 0} - - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} - propertyPath: m_LocalEulerAnglesHint.y - value: -180 - objectReference: {fileID: 0} - - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} - propertyPath: m_LocalEulerAnglesHint.z - value: 0 - objectReference: {fileID: 0} - m_RemovedComponents: [] - m_RemovedGameObjects: [] - m_AddedGameObjects: [] - m_AddedComponents: [] - m_SourcePrefab: {fileID: 100100000, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} ---- !u!4 &1362127802 stripped -Transform: - m_CorrespondingSourceObject: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} - m_PrefabInstance: {fileID: 1362127800} + serializedVersion: 2 + m_Modification: + serializedVersion: 3 + m_TransformParent: {fileID: 97568988} + m_Modifications: + - target: {fileID: 1549258216444794940, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} + propertyPath: m_Name + value: Box82 + objectReference: {fileID: 0} + - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} + propertyPath: m_RootOrder + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} + propertyPath: m_LocalPosition.x + value: 24 + objectReference: {fileID: 0} + - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} + propertyPath: m_LocalPosition.y + value: 96 + objectReference: {fileID: 0} + - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} + propertyPath: m_LocalPosition.z + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} + propertyPath: m_LocalRotation.w + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} + propertyPath: m_LocalRotation.x + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} + propertyPath: m_LocalRotation.y + value: -1 + objectReference: {fileID: 0} + - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} + propertyPath: m_LocalRotation.z + value: -0 + objectReference: {fileID: 0} + - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} + propertyPath: m_LocalEulerAnglesHint.x + value: 0 + objectReference: {fileID: 0} + - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} + propertyPath: m_LocalEulerAnglesHint.y + value: -180 + objectReference: {fileID: 0} + - target: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} + propertyPath: m_LocalEulerAnglesHint.z + value: 0 + objectReference: {fileID: 0} + m_RemovedComponents: [] + m_RemovedGameObjects: [] + m_AddedGameObjects: [] + m_AddedComponents: [] + m_SourcePrefab: {fileID: 100100000, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} +--- !u!4 &1362127802 stripped +Transform: + m_CorrespondingSourceObject: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} + m_PrefabInstance: {fileID: 1362127800} + m_PrefabAsset: {fileID: 0} +--- !u!1 &1413505213 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1413505214} + - component: {fileID: 1413505217} + - component: {fileID: 1413505216} + - component: {fileID: 1413505215} + m_Layer: 5 + m_Name: Button + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1413505214 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1413505213} + m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} + m_LocalPosition: {x: 0, y: 0, z: 0} + m_LocalScale: {x: 2, y: 2, z: 1} + m_ConstrainProportionsScale: 0 + m_Children: + - {fileID: 376003979} + m_Father: {fileID: 1085063768} + m_RootOrder: -1 + 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: 799, y: -290} + m_SizeDelta: {x: 160, y: 30} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1413505215 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1413505213} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 4e29b1a8efbd4b44bb3f3716e73f07ff, 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: 1413505216} + m_OnClick: + m_PersistentCalls: + m_Calls: + - m_Target: {fileID: 97568987} + m_TargetAssemblyTypeName: Initalize, Assembly-CSharp + m_MethodName: Compile + 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!114 &1413505216 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1413505213} + 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: 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!222 &1413505217 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1413505213} + m_CullTransparentMesh: 1 --- !u!4 &1426853183 stripped Transform: m_CorrespondingSourceObject: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} @@ -7085,6 +7672,162 @@ PrefabInstance: m_AddedGameObjects: [] m_AddedComponents: [] m_SourcePrefab: {fileID: 100100000, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} +--- !u!1 &1925275423 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1925275424} + - component: {fileID: 1925275427} + - component: {fileID: 1925275426} + - component: {fileID: 1925275425} + m_Layer: 5 + m_Name: Placeholder + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1925275424 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1925275423} + 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: 1967074424} + m_RootOrder: -1 + 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 &1925275425 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1925275423} + 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 &1925275426 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1925275423} + 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: Input + m_isRightToLeft: 0 + m_fontAsset: {fileID: 11400000, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_sharedMaterial: {fileID: 2180264, guid: 8f586378b4e144a9851e7b34d9b748ee, type: 2} + m_fontSharedMaterials: [] + m_fontMaterial: {fileID: 0} + m_fontMaterials: [] + m_fontColor32: + serializedVersion: 2 + rgba: 2150773298 + m_fontColor: {r: 0.19607843, g: 0.19607843, b: 0.19607843, a: 0.5} + 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: 30 + m_fontSizeBase: 30 + m_fontWeight: 400 + m_enableAutoSizing: 0 + m_fontSizeMin: 18 + m_fontSizeMax: 72 + m_fontStyle: 2 + m_HorizontalAlignment: 1 + m_VerticalAlignment: 256 + m_textAlignment: 65535 + m_characterSpacing: 0 + m_wordSpacing: 0 + m_lineSpacing: 0 + m_lineSpacingMax: 0 + m_paragraphSpacing: 0 + m_charWidthMaxAdj: 0 + m_enableWordWrapping: 0 + m_wordWrappingRatios: 0.4 + m_overflowMode: 0 + m_linkedTextComponent: {fileID: 0} + parentLinkedComponent: {fileID: 0} + m_enableKerning: 1 + m_enableExtraPadding: 1 + 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 &1925275427 +CanvasRenderer: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1925275423} + m_CullTransparentMesh: 1 --- !u!1001 &1937919611 PrefabInstance: m_ObjectHideFlags: 0 @@ -7151,6 +7894,59 @@ Transform: m_CorrespondingSourceObject: {fileID: 8097081801502820135, guid: 9e0ac92152308394fbbcea4c4a625c7f, type: 3} m_PrefabInstance: {fileID: 1109283407} m_PrefabAsset: {fileID: 0} +--- !u!1 &1967074423 +GameObject: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + serializedVersion: 6 + m_Component: + - component: {fileID: 1967074424} + - component: {fileID: 1967074425} + m_Layer: 5 + m_Name: Text Area + m_TagString: Untagged + m_Icon: {fileID: 0} + m_NavMeshLayer: 0 + m_StaticEditorFlags: 0 + m_IsActive: 1 +--- !u!224 &1967074424 +RectTransform: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1967074423} + 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: 1925275424} + - {fileID: 548021053} + m_Father: {fileID: 638741702} + m_RootOrder: -1 + 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.5} + m_SizeDelta: {x: -20, y: -13} + m_Pivot: {x: 0.5, y: 0.5} +--- !u!114 &1967074425 +MonoBehaviour: + m_ObjectHideFlags: 0 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 1967074423} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 11500000, guid: 3312d7739989d2b4e91e6319e9a96d76, type: 3} + m_Name: + m_EditorClassIdentifier: + m_Padding: {x: -8, y: -5, z: -8, w: -5} + m_Softness: {x: 0, y: 0} --- !u!1001 &1971962577 PrefabInstance: m_ObjectHideFlags: 0 diff --git a/LMC/Library/ArtifactDB b/LMC/Library/ArtifactDB index fc4ade1a..c77b9d7d 100644 Binary files a/LMC/Library/ArtifactDB and b/LMC/Library/ArtifactDB differ diff --git a/LMC/Library/Bee/TundraBuildState.state b/LMC/Library/Bee/TundraBuildState.state index 543d3bf1..2b9c81b1 100644 Binary files a/LMC/Library/Bee/TundraBuildState.state and b/LMC/Library/Bee/TundraBuildState.state differ diff --git a/LMC/Library/Bee/TundraBuildState.state.map b/LMC/Library/Bee/TundraBuildState.state.map index e603cbd9..efe51630 100644 Binary files a/LMC/Library/Bee/TundraBuildState.state.map and b/LMC/Library/Bee/TundraBuildState.state.map differ diff --git a/LMC/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll b/LMC/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll index 7f367489..7039217e 100644 Binary files a/LMC/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll and b/LMC/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll differ diff --git a/LMC/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.pdb b/LMC/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.pdb index 1005342f..bf7f90cf 100644 Binary files a/LMC/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.pdb and b/LMC/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.pdb differ diff --git a/LMC/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.ref.dll b/LMC/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.ref.dll index b2e8bd57..55a5502a 100644 Binary files a/LMC/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.ref.dll and b/LMC/Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.ref.dll differ diff --git a/LMC/Library/Bee/backend1.traceevents b/LMC/Library/Bee/backend1.traceevents index b430add6..a0d3676b 100644 --- a/LMC/Library/Bee/backend1.traceevents +++ b/LMC/Library/Bee/backend1.traceevents @@ -1,590 +1,594 @@ { "cat":"", "pid":12345, "tid":0, "ts":0, "ph":"M", "name":"process_name", "args": { "name":"bee_backend" } } -,{ "pid":12345, "tid":0, "ts":1689873812613693, "dur":63, "ph":"X", "name": "IPC_Client_InitializeAndConnectToParent", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1689873812613784, "dur":1251, "ph":"X", "name": "DriverInitData", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1689873812615045, "dur":218, "ph":"X", "name": "RemoveStaleOutputs", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1689873812615316, "dur":476, "ph":"X", "name": "BuildQueueInit", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1689873812616938, "dur":1485, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_004BBCEE2ACB5C09.mvfrm" }} -,{ "pid":12345, "tid":0, "ts":1689873812619742, "dur":553, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.UnityAdditionalFile.txt" }} -,{ "pid":12345, "tid":0, "ts":1689873812620733, "dur":63, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll (+2 others)" }} -,{ "pid":12345, "tid":0, "ts":1689873812622828, "dur":2153, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":0, "ts":1689873812615808, "dur":11799, "ph":"X", "name": "EnqueueRequestedNodes", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1689873812627614, "dur":355601, "ph":"X", "name": "WaitForBuildFinished", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1689873812983216, "dur":227, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1689873812983614, "dur":746, "ph":"X", "name": "Tundra", "args": { "detail":"Write AllBuiltNodes" }} -,{ "pid":12345, "tid":1, "ts":1689873812615734, "dur":11888, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812627632, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_271602979908EEDE.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1689873812627722, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812627825, "dur":626, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.QuickSearchModule.dll" }} -,{ "pid":12345, "tid":1, "ts":1689873812627824, "dur":629, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_6B8CD4EEF346666D.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1689873812628537, "dur":145, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812628963, "dur":107, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812629070, "dur":186, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812629256, "dur":151, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812629440, "dur":1328, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.textmeshpro@3.0.6\\Scripts\\Editor\\TMP_PackageUtilities.cs" }} -,{ "pid":12345, "tid":1, "ts":1689873812629407, "dur":1450, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812630858, "dur":133, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812630992, "dur":129, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812631121, "dur":118, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812631239, "dur":176, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812631415, "dur":498, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812631914, "dur":215, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812632129, "dur":147, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812632294, "dur":1136, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Runtime\\Audio\\AudioClipProperties.cs" }} -,{ "pid":12345, "tid":1, "ts":1689873812632276, "dur":1297, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812633573, "dur":213, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812633786, "dur":154, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812633940, "dur":229, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812634169, "dur":308, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812634478, "dur":145, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1689873812634646, "dur":878, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":1, "ts":1689873812635525, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812635664, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1689873812635747, "dur":297, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":1, "ts":1689873812636087, "dur":184, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812636275, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812636350, "dur":64, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812636427, "dur":85, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812636512, "dur":223, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812636735, "dur":125, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812636908, "dur":256, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812637165, "dur":264, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812637429, "dur":343, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812637782, "dur":304, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812638087, "dur":345176, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689873812616105, "dur":13295, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689873812629403, "dur":247, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1689873812629803, "dur":2558, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Windows.dll" }} -,{ "pid":12345, "tid":2, "ts":1689873812632376, "dur":367, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Collections.dll" }} -,{ "pid":12345, "tid":2, "ts":1689873812633434, "dur":399, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.ugui@1.0.0\\Runtime\\UI\\Core\\SetPropertyUtility.cs" }} -,{ "pid":12345, "tid":2, "ts":1689873812629660, "dur":4202, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1689873812633944, "dur":225, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689873812634169, "dur":260, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689873812634445, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1689873812634540, "dur":334, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1689873812634874, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689873812634947, "dur":333, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1689873812635280, "dur":484, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689873812635825, "dur":246, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689873812636084, "dur":221, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689873812636305, "dur":134, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689873812636439, "dur":62, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689873812636502, "dur":250, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689873812636752, "dur":92, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689873812636844, "dur":62, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689873812636906, "dur":266, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689873812637173, "dur":255, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689873812637428, "dur":345, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689873812637793, "dur":288, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689873812638081, "dur":345253, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812615760, "dur":11870, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812627643, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.VFXModule.dll" }} -,{ "pid":12345, "tid":3, "ts":1689873812627633, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_86360A61E634AB35.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1689873812628175, "dur":139, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_5C53BD3BA9493272.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1689873812628316, "dur":227, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\PlaybackEngines\\WindowsStandaloneSupport\\UnityEditor.WindowsStandalone.Extensions.dll" }} -,{ "pid":12345, "tid":3, "ts":1689873812628315, "dur":230, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_5EE56773EE903DE5.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1689873812628668, "dur":133, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.rsp" }} -,{ "pid":12345, "tid":3, "ts":1689873812628846, "dur":150, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.rsp" }} -,{ "pid":12345, "tid":3, "ts":1689873812628997, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812629153, "dur":3144, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Editor\\Utilities\\Scopes\\IndentLevelScope.cs" }} -,{ "pid":12345, "tid":3, "ts":1689873812629092, "dur":3747, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812632839, "dur":132, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812632971, "dur":134, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812633105, "dur":111, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812633216, "dur":119, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812633335, "dur":50, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812633414, "dur":137, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812633551, "dur":209, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812633761, "dur":184, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812633945, "dur":222, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812634168, "dur":1383, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812635552, "dur":226, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1689873812635809, "dur":881, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":3, "ts":1689873812636737, "dur":122, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812636903, "dur":273, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812637176, "dur":300, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812637477, "dur":318, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812637796, "dur":276, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812638072, "dur":345269, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812615807, "dur":11862, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812627835, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.TextCoreFontEngineModule.dll" }} -,{ "pid":12345, "tid":4, "ts":1689873812627834, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_960C0B7706C7BA89.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1689873812628185, "dur":157, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_8093C800563DD6E2.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1689873812628750, "dur":74, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.rsp2" }} -,{ "pid":12345, "tid":4, "ts":1689873812628916, "dur":3315, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812632296, "dur":908, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Runtime\\Properties\\AssemblyInfo.cs" }} -,{ "pid":12345, "tid":4, "ts":1689873812632242, "dur":1069, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812633311, "dur":168, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812633480, "dur":175, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812633751, "dur":212, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812633964, "dur":201, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812634165, "dur":266, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812634431, "dur":217, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812634648, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1689873812634792, "dur":114, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1689873812634906, "dur":360, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812635275, "dur":488, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":4, "ts":1689873812635862, "dur":449, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812636311, "dur":134, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812636445, "dur":60, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812636505, "dur":264, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812636835, "dur":91, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812636926, "dur":269, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812637195, "dur":211, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812637419, "dur":390, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812637809, "dur":282, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812638091, "dur":345059, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689873812616150, "dur":13394, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689873812629545, "dur":2823, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\Plugin\\Migrations\\Migration_1_5_1_to_1_5_2.cs" }} -,{ "pid":12345, "tid":5, "ts":1689873812632369, "dur":1425, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\Plugin\\Changelogs\\Changelog_1_4_1.cs" }} -,{ "pid":12345, "tid":5, "ts":1689873812629545, "dur":4379, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689873812633924, "dur":204, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689873812634129, "dur":432, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689873812634562, "dur":1337, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1689873812635917, "dur":439, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":5, "ts":1689873812636434, "dur":77, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689873812636511, "dur":255, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689873812636766, "dur":52, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689873812636819, "dur":114, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689873812636933, "dur":210, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689873812637156, "dur":330, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689873812637486, "dur":261, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689873812637764, "dur":50, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689873812637814, "dur":277, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689873812638091, "dur":345060, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812615851, "dur":11874, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812627891, "dur":819, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_A0BBDD3723FC9816.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1689873812628736, "dur":741, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.rsp2" }} -,{ "pid":12345, "tid":6, "ts":1689873812629479, "dur":324, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812629804, "dur":168, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812629972, "dur":332, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812630305, "dur":164, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812630469, "dur":165, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812630634, "dur":165, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812630799, "dur":174, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812630973, "dur":261, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812631235, "dur":168, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812631404, "dur":658, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812632218, "dur":1594, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\EditorBinding\\TypeIconPriorityAttribute.cs" }} -,{ "pid":12345, "tid":6, "ts":1689873812632062, "dur":1839, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812633913, "dur":222, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812634135, "dur":302, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812634443, "dur":169, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1689873812634612, "dur":367, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812635043, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.AndroidJNIModule.dll" }} -,{ "pid":12345, "tid":6, "ts":1689873812635546, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.textmeshpro@3.0.6\\Scripts\\Runtime\\TMP_SubMesh.cs" }} -,{ "pid":12345, "tid":6, "ts":1689873812634987, "dur":641, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll (+2 others)" }} -,{ "pid":12345, "tid":6, "ts":1689873812635629, "dur":137, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812635796, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1689873812635912, "dur":356, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":6, "ts":1689873812636268, "dur":208, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812636501, "dur":270, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812636772, "dur":80, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812636852, "dur":71, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812636923, "dur":258, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812637181, "dur":238, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812637419, "dur":392, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812637811, "dur":277, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812638088, "dur":345068, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812615873, "dur":11973, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812628167, "dur":62, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_004BBCEE2ACB5C09.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1689873812628268, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityAnalyticsModule.dll" }} -,{ "pid":12345, "tid":7, "ts":1689873812628267, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_1F7084E4BDAFB378.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1689873812628524, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.rsp" }} -,{ "pid":12345, "tid":7, "ts":1689873812628657, "dur":858, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.rsp" }} -,{ "pid":12345, "tid":7, "ts":1689873812629515, "dur":2811, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.performance.profile-analyzer@1.2.2\\Editor\\ProfileAnalysis.cs" }} -,{ "pid":12345, "tid":7, "ts":1689873812629515, "dur":3336, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812632852, "dur":131, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812632983, "dur":129, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812633112, "dur":127, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812633240, "dur":125, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812633401, "dur":123, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812633524, "dur":249, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812633773, "dur":141, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812633914, "dur":268, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812634183, "dur":246, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812634442, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1689873812634526, "dur":319, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll (+2 others)" }} -,{ "pid":12345, "tid":7, "ts":1689873812634882, "dur":315, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":7, "ts":1689873812635297, "dur":480, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812635853, "dur":463, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812636316, "dur":124, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812636440, "dur":83, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812636523, "dur":241, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812636764, "dur":61, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812636825, "dur":111, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812636936, "dur":217, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812637154, "dur":307, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812637461, "dur":305, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812637810, "dur":270, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812638080, "dur":345080, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812615888, "dur":12267, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812628188, "dur":770, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_146B86CA19C57954.mvfrm" }} -,{ "pid":12345, "tid":8, "ts":1689873812629441, "dur":1057, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.ide.visualstudio@2.0.18\\Editor\\Messaging\\Deserializer.cs" }} -,{ "pid":12345, "tid":8, "ts":1689873812628987, "dur":1562, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812630550, "dur":133, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812630684, "dur":120, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812630804, "dur":123, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812630927, "dur":122, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812631049, "dur":115, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812631164, "dur":128, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812631304, "dur":517, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Serialization\\Converters\\UnityObjectConverter.cs" }} -,{ "pid":12345, "tid":8, "ts":1689873812631292, "dur":625, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812631918, "dur":163, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812632081, "dur":120, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812632295, "dur":1627, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Cloning\\ISpecifiesCloner.cs" }} -,{ "pid":12345, "tid":8, "ts":1689873812632201, "dur":1784, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812633986, "dur":141, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812634140, "dur":1481, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812635621, "dur":97, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812635718, "dur":148, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812635866, "dur":457, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812636323, "dur":133, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812636456, "dur":61, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812636518, "dur":229, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812636747, "dur":101, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812636848, "dur":70, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812636918, "dur":251, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812637169, "dur":247, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812637416, "dur":385, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812637801, "dur":247, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812638060, "dur":280196, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812918261, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp.pdb" }} -,{ "pid":12345, "tid":8, "ts":1689873812918261, "dur":112, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb" }} -,{ "pid":12345, "tid":8, "ts":1689873812918392, "dur":1201, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.pdb" }} -,{ "pid":12345, "tid":8, "ts":1689873812919596, "dur":63621, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689873812615910, "dur":12295, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689873812628271, "dur":406, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689873812628677, "dur":700, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_2557678B45BA51B3.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1689873812629380, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1689873812629499, "dur":123, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.EditorToolbarModule.dll" }} -,{ "pid":12345, "tid":9, "ts":1689873812629490, "dur":1929, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll (+2 others)" }} -,{ "pid":12345, "tid":9, "ts":1689873812631419, "dur":244, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689873812631663, "dur":116, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll (+2 others)" }} -,{ "pid":12345, "tid":9, "ts":1689873812631797, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1689873812632287, "dur":619, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Net.Security.dll" }} -,{ "pid":12345, "tid":9, "ts":1689873812633667, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\System.Numerics.Vectors.dll" }} -,{ "pid":12345, "tid":9, "ts":1689873812631864, "dur":2225, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll (+2 others)" }} -,{ "pid":12345, "tid":9, "ts":1689873812634195, "dur":204, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll (+2 others)" }} -,{ "pid":12345, "tid":9, "ts":1689873812634441, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1689873812634514, "dur":858, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll (+2 others)" }} -,{ "pid":12345, "tid":9, "ts":1689873812635372, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689873812635504, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1689873812635638, "dur":1129, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll (+2 others)" }} -,{ "pid":12345, "tid":9, "ts":1689873812636816, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1689873812636891, "dur":219, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll (+2 others)" }} -,{ "pid":12345, "tid":9, "ts":1689873812637153, "dur":308, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689873812637461, "dur":421, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689873812637882, "dur":170, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689873812638052, "dur":18304, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689873812656358, "dur":542, "ph":"X", "name": "CheckDagSignatures", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689873812656900, "dur":326235, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812615925, "dur":12302, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812628274, "dur":403, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityConnectModule.dll" }} -,{ "pid":12345, "tid":10, "ts":1689873812628273, "dur":405, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_55AA3D446BBB024C.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1689873812628740, "dur":252, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":10, "ts":1689873812628993, "dur":152, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812629145, "dur":116, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812629367, "dur":2944, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Editor\\inspectors\\TimelineInspectorUtility.cs" }} -,{ "pid":12345, "tid":10, "ts":1689873812629262, "dur":3074, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812632375, "dur":618, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.textmeshpro@3.0.6\\Scripts\\Runtime\\TMP_TextElement_Legacy.cs" }} -,{ "pid":12345, "tid":10, "ts":1689873812632336, "dur":731, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812633068, "dur":116, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812633184, "dur":122, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812633337, "dur":560, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.ugui@1.0.0\\Editor\\UI\\SelfControllerEditor.cs" }} -,{ "pid":12345, "tid":10, "ts":1689873812633306, "dur":698, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812634005, "dur":121, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812634159, "dur":456, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812634617, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1689873812634733, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1689873812634816, "dur":298, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":10, "ts":1689873812635138, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812635299, "dur":340, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812635699, "dur":174, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812635873, "dur":444, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812636318, "dur":148, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812636504, "dur":255, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812636759, "dur":70, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812636829, "dur":107, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812636936, "dur":253, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812637189, "dur":217, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812637406, "dur":52, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812637458, "dur":311, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812637782, "dur":300, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812638082, "dur":345075, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689873812615950, "dur":12370, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689873812628327, "dur":376, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEditor.Graphs.dll" }} -,{ "pid":12345, "tid":11, "ts":1689873812628322, "dur":382, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_66864D9C2025FC9D.mvfrm" }} -,{ "pid":12345, "tid":11, "ts":1689873812628741, "dur":727, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.UnityAdditionalFile.txt" }} -,{ "pid":12345, "tid":11, "ts":1689873812629468, "dur":3890, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.testtools.codecoverage@1.2.3\\Editor\\AssemblyInfo.cs" }} -,{ "pid":12345, "tid":11, "ts":1689873812629468, "dur":4088, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689873812633556, "dur":236, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689873812633792, "dur":127, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689873812633919, "dur":249, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689873812634168, "dur":273, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689873812634442, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm" }} -,{ "pid":12345, "tid":11, "ts":1689873812634530, "dur":406, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll (+2 others)" }} -,{ "pid":12345, "tid":11, "ts":1689873812634936, "dur":379, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689873812635340, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":11, "ts":1689873812635417, "dur":320, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":11, "ts":1689873812635847, "dur":495, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689873812636342, "dur":107, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689873812636449, "dur":70, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689873812636519, "dur":262, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689873812636819, "dur":118, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689873812636937, "dur":207, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689873812637144, "dur":304, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689873812637448, "dur":328, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689873812637790, "dur":289, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689873812638079, "dur":345082, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689873812615971, "dur":12484, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689873812628530, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.rsp" }} -,{ "pid":12345, "tid":12, "ts":1689873812628651, "dur":873, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":12, "ts":1689873812629525, "dur":3926, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\Transitions\\TriggerStateTransitionWidget.cs" }} -,{ "pid":12345, "tid":12, "ts":1689873812629525, "dur":4057, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689873812633582, "dur":85, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689873812633752, "dur":174, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689873812633926, "dur":223, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689873812634149, "dur":1453, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689873812635603, "dur":134, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689873812635737, "dur":120, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689873812635857, "dur":476, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689873812636333, "dur":118, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689873812636451, "dur":68, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689873812636519, "dur":266, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689873812636817, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1689873812636929, "dur":441, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1689873812637423, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1689873812637507, "dur":254, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1689873812637848, "dur":172, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1689873812638114, "dur":176, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1689873812638807, "dur":278274, "ph":"X", "name": "Csc", "args": { "detail":"Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1689873812918136, "dur":64289, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp.dll" }} -,{ "pid":12345, "tid":12, "ts":1689873812918135, "dur":64292, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll" }} -,{ "pid":12345, "tid":12, "ts":1689873812982463, "dur":605, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.dll" }} -,{ "pid":12345, "tid":13, "ts":1689873812615989, "dur":12557, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812628662, "dur":140, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.rsp" }} -,{ "pid":12345, "tid":13, "ts":1689873812628865, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.rsp" }} -,{ "pid":12345, "tid":13, "ts":1689873812628965, "dur":182, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812629148, "dur":131, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812629279, "dur":171, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812629450, "dur":1597, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.testtools.codecoverage@1.2.3\\Editor\\Logging\\ResultsLogger.cs" }} -,{ "pid":12345, "tid":13, "ts":1689873812629450, "dur":1710, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812631160, "dur":128, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812631288, "dur":138, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812631426, "dur":779, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812632292, "dur":1474, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Runtime\\Utilities\\TimelineUndo.cs" }} -,{ "pid":12345, "tid":13, "ts":1689873812632206, "dur":1660, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812633866, "dur":70, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812633936, "dur":244, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812634180, "dur":250, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812634430, "dur":1165, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812635596, "dur":168, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812635834, "dur":461, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812636295, "dur":151, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812636446, "dur":50, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812636496, "dur":258, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812636754, "dur":89, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812636843, "dur":70, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812636913, "dur":250, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812637163, "dur":275, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812637438, "dur":324, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812637801, "dur":271, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812638072, "dur":345273, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812616006, "dur":12681, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812628689, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.rsp" }} -,{ "pid":12345, "tid":14, "ts":1689873812628834, "dur":248, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812629090, "dur":194, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812629284, "dur":420, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812629704, "dur":133, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812629837, "dur":133, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812629970, "dur":126, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812630096, "dur":123, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812630219, "dur":120, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812630339, "dur":146, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812630485, "dur":128, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812630613, "dur":122, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812630755, "dur":1559, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Core\\Utilities\\AssetBundleUtility.cs" }} -,{ "pid":12345, "tid":14, "ts":1689873812630736, "dur":2089, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812632826, "dur":125, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812632951, "dur":181, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812633132, "dur":135, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812633268, "dur":122, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812633390, "dur":63, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812633453, "dur":133, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812633751, "dur":195, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812633946, "dur":212, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812634158, "dur":1395, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812635589, "dur":255, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812635844, "dur":428, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812636306, "dur":131, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812636437, "dur":72, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812636510, "dur":235, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812636745, "dur":104, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812636897, "dur":282, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812637179, "dur":299, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812637478, "dur":269, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812637803, "dur":259, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812638062, "dur":345292, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689873812616023, "dur":12743, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689873812628943, "dur":4865, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689873812633817, "dur":95, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689873812633955, "dur":193, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689873812634148, "dur":1414, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689873812635592, "dur":243, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689873812635835, "dur":451, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689873812636286, "dur":162, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689873812636493, "dur":269, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689873812636810, "dur":106, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689873812636916, "dur":239, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689873812637155, "dur":284, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689873812637439, "dur":314, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689873812637753, "dur":50, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689873812637803, "dur":260, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689873812638063, "dur":345289, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812616041, "dur":12799, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812628984, "dur":124, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812629109, "dur":121, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812629230, "dur":131, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812629361, "dur":480, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812629842, "dur":135, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812629977, "dur":131, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812630109, "dur":128, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812630238, "dur":129, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812630459, "dur":3300, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Flow\\Framework\\Events\\GUI\\OnSelect.cs" }} -,{ "pid":12345, "tid":16, "ts":1689873812630367, "dur":3417, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812633784, "dur":139, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812633923, "dur":236, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812634159, "dur":1403, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812635584, "dur":171, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812635755, "dur":88, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812635843, "dur":502, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812636345, "dur":96, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812636441, "dur":82, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812636524, "dur":205, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812636743, "dur":111, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812636854, "dur":62, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812636917, "dur":255, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812637172, "dur":233, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812637416, "dur":393, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812637809, "dur":239, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812638063, "dur":345145, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812616063, "dur":13095, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812629159, "dur":129, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812629288, "dur":122, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812629410, "dur":291, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812629701, "dur":144, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812629845, "dur":130, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812629975, "dur":163, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812630138, "dur":155, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812630293, "dur":121, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812630415, "dur":124, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812630539, "dur":114, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812630653, "dur":109, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812630763, "dur":119, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812630882, "dur":113, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812630995, "dur":311, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812631307, "dur":466, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812631775, "dur":175, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812631950, "dur":172, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812632217, "dur":1546, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Dependencies\\FullSerializer\\Converters\\fsReflectedConverter.cs" }} -,{ "pid":12345, "tid":17, "ts":1689873812632123, "dur":1756, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812633879, "dur":53, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812633932, "dur":216, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812634148, "dur":1464, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812635612, "dur":115, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812635727, "dur":135, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812635862, "dur":468, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812636330, "dur":132, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812636510, "dur":246, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812636756, "dur":82, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812636838, "dur":89, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812636927, "dur":215, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812637159, "dur":278, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812637438, "dur":353, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812637791, "dur":281, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812638072, "dur":345093, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812615791, "dur":11845, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812627679, "dur":168, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Tools\\ScriptUpdater\\ApiUpdater.MovedFromExtractor.exe" }} -,{ "pid":12345, "tid":18, "ts":1689873812627638, "dur":210, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_09A1B70C885E7868.mvfrm" }} -,{ "pid":12345, "tid":18, "ts":1689873812627849, "dur":362, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812628212, "dur":222, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_09A1B70C885E7868.mvfrm" }} -,{ "pid":12345, "tid":18, "ts":1689873812628677, "dur":787, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.rsp" }} -,{ "pid":12345, "tid":18, "ts":1689873812629464, "dur":2514, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.testtools.codecoverage@1.2.3\\Editor\\CoverageStats\\ICoverageStatsProvider.cs" }} -,{ "pid":12345, "tid":18, "ts":1689873812629464, "dur":3288, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812632753, "dur":154, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812632986, "dur":876, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Editor\\PlasticSCM\\Views\\PendingChanges\\PendingChangesTab_Operations.cs" }} -,{ "pid":12345, "tid":18, "ts":1689873812632908, "dur":1041, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812633950, "dur":188, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812634139, "dur":1491, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812635630, "dur":79, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812635709, "dur":162, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812635871, "dur":450, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812636321, "dur":144, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812636513, "dur":237, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812636750, "dur":90, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812636840, "dur":86, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812636926, "dur":240, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812637166, "dur":259, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812637426, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":18, "ts":1689873812637509, "dur":211, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":18, "ts":1689873812637756, "dur":63, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812637819, "dur":234, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812638053, "dur":18851, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812656905, "dur":326227, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812616121, "dur":13353, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812629481, "dur":368, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812629850, "dur":152, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812630002, "dur":114, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812630116, "dur":118, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812630234, "dur":125, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812630359, "dur":125, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812630484, "dur":129, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812630613, "dur":126, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812630739, "dur":117, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812630856, "dur":113, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812630969, "dur":113, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812631083, "dur":117, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812631201, "dur":157, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812631359, "dur":481, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812631870, "dur":121, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812631991, "dur":127, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812632118, "dur":146, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812632294, "dur":1540, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Runtime\\Events\\MarkerTrack.cs" }} -,{ "pid":12345, "tid":19, "ts":1689873812632264, "dur":1645, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812633926, "dur":232, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812634158, "dur":1435, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812635593, "dur":153, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812635746, "dur":106, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812635853, "dur":483, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812636336, "dur":79, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812636430, "dur":95, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812636525, "dur":202, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812636740, "dur":117, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812636857, "dur":76, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812636934, "dur":228, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812637162, "dur":264, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812637426, "dur":374, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812637800, "dur":269, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812638069, "dur":345124, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689873812616135, "dur":13399, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689873812629537, "dur":2782, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\States\\StateEditor.cs" }} -,{ "pid":12345, "tid":20, "ts":1689873812632375, "dur":524, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\States\\FlowStateEditor.cs" }} -,{ "pid":12345, "tid":20, "ts":1689873812629537, "dur":3444, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689873812632981, "dur":171, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689873812633153, "dur":160, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689873812633414, "dur":537, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.ugui@1.0.0\\Runtime\\UI\\Core\\SetPropertyUtility.cs" }} -,{ "pid":12345, "tid":20, "ts":1689873812633313, "dur":642, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689873812633955, "dur":226, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689873812634181, "dur":250, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689873812634444, "dur":161, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll.mvfrm" }} -,{ "pid":12345, "tid":20, "ts":1689873812634605, "dur":1233, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689873812635845, "dur":378, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll (+2 others)" }} -,{ "pid":12345, "tid":20, "ts":1689873812636292, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":20, "ts":1689873812636386, "dur":472, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":20, "ts":1689873812636906, "dur":268, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689873812637174, "dur":235, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689873812637409, "dur":383, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689873812637792, "dur":290, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689873812638082, "dur":345235, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1689873812986084, "dur":1263, "ph":"X", "name": "ProfilerWriteOutput" } +,{ "pid":12345, "tid":0, "ts":1689907455388681, "dur":63, "ph":"X", "name": "IPC_Client_InitializeAndConnectToParent", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689907455388770, "dur":1338, "ph":"X", "name": "DriverInitData", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689907455390116, "dur":222, "ph":"X", "name": "RemoveStaleOutputs", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689907455390394, "dur":457, "ph":"X", "name": "BuildQueueInit", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689907455391634, "dur":119, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_709CCE00E64FBEBE.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1689907455392159, "dur":1010, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_004BBCEE2ACB5C09.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1689907455394493, "dur":944, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":0, "ts":1689907455395441, "dur":103, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.rsp" }} +,{ "pid":12345, "tid":0, "ts":1689907455395587, "dur":53, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":0, "ts":1689907455395844, "dur":51, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":0, "ts":1689907455398144, "dur":1846, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":0, "ts":1689907455402359, "dur":781, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Shared.Editor.pdb" }} +,{ "pid":12345, "tid":0, "ts":1689907455390874, "dur":12467, "ph":"X", "name": "EnqueueRequestedNodes", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689907455403348, "dur":248637, "ph":"X", "name": "WaitForBuildFinished", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689907455651986, "dur":289, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689907455652301, "dur":54, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689907455652416, "dur":91, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689907455652590, "dur":666, "ph":"X", "name": "Tundra", "args": { "detail":"Write AllBuiltNodes" }} +,{ "pid":12345, "tid":1, "ts":1689907455390912, "dur":12458, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455403497, "dur":409, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_823BD5AAF144593D.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1689907455404443, "dur":144, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455404587, "dur":116, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455404703, "dur":110, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455404813, "dur":228, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455405041, "dur":136, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455405177, "dur":131, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455405308, "dur":114, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455405422, "dur":109, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455405531, "dur":123, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455405654, "dur":121, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455405775, "dur":107, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455405883, "dur":105, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455405989, "dur":118, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455406107, "dur":114, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455406221, "dur":124, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455406345, "dur":116, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455406461, "dur":182, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455406643, "dur":147, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455406790, "dur":131, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455406921, "dur":122, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455407118, "dur":847, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Editor\\PlasticSCM\\Views\\IncomingChanges\\Gluon\\IncomingChangesTreeHeaderState.cs" }} +,{ "pid":12345, "tid":1, "ts":1689907455407043, "dur":953, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455407996, "dur":123, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455408119, "dur":108, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455408247, "dur":169, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455408417, "dur":110, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455408527, "dur":106, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455408633, "dur":108, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455408742, "dur":157, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455408936, "dur":509, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455409445, "dur":471, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455409916, "dur":1064, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455410982, "dur":192, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.EditorCoroutines.Editor.dll" }} +,{ "pid":12345, "tid":1, "ts":1689907455410981, "dur":193, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.EditorCoroutines.Editor.dll" }} +,{ "pid":12345, "tid":1, "ts":1689907455411180, "dur":255, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455411462, "dur":125, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455411587, "dur":67, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455411654, "dur":453, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455412107, "dur":267, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455412374, "dur":409, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455412783, "dur":135, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455412918, "dur":168, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455413087, "dur":280, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455413367, "dur":307, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455413693, "dur":282, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455413975, "dur":238015, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455390881, "dur":12483, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455403380, "dur":133, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.VFXModule.dll" }} +,{ "pid":12345, "tid":2, "ts":1689907455403367, "dur":147, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_86360A61E634AB35.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1689907455403795, "dur":1126, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_CDD7AA2F334AE808.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1689907455404923, "dur":1150, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.ide.rider@3.0.21\\Rider\\Editor\\LoggingLevel.cs" }} +,{ "pid":12345, "tid":2, "ts":1689907455404923, "dur":1417, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455406340, "dur":184, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455406524, "dur":185, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455406709, "dur":178, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455406888, "dur":161, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455407115, "dur":846, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Editor\\PlasticSCM\\Views\\IncomingChanges\\Developer\\IncomingChangesTab.cs" }} +,{ "pid":12345, "tid":2, "ts":1689907455407049, "dur":1016, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455408066, "dur":159, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455408225, "dur":262, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455408488, "dur":122, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455408610, "dur":514, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455409124, "dur":297, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455409421, "dur":495, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455409916, "dur":291, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455410208, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1689907455410297, "dur":306, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1689907455410632, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1689907455410704, "dur":299, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1689907455411004, "dur":536, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1689907455411633, "dur":447, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455412082, "dur":195, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455412287, "dur":109, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455412396, "dur":435, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455412831, "dur":55, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455412899, "dur":228, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455413127, "dur":206, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455413345, "dur":383, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455413728, "dur":217, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455413945, "dur":13242, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455427189, "dur":518, "ph":"X", "name": "CheckDagSignatures", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455427708, "dur":224255, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455390916, "dur":12479, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455403488, "dur":387, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F0ECB9E16DE6E079.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1689907455403893, "dur":708, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityAnalyticsModule.dll" }} +,{ "pid":12345, "tid":3, "ts":1689907455403892, "dur":711, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_1F7084E4BDAFB378.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1689907455404613, "dur":112, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455404725, "dur":120, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455405039, "dur":1567, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.textmeshpro@3.0.6\\Scripts\\Editor\\GlyphInfoDrawer.cs" }} +,{ "pid":12345, "tid":3, "ts":1689907455404845, "dur":1841, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455406686, "dur":178, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455406865, "dur":165, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455407117, "dur":895, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Editor\\PlasticSCM\\Views\\PendingChanges\\PendingChangesTreeView.cs" }} +,{ "pid":12345, "tid":3, "ts":1689907455407030, "dur":1079, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455408110, "dur":268, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455408378, "dur":100, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455408478, "dur":108, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455408586, "dur":479, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455409065, "dur":385, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455409450, "dur":437, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455409887, "dur":1094, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455410982, "dur":227, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.EditorCoroutines.Editor.pdb" }} +,{ "pid":12345, "tid":3, "ts":1689907455410981, "dur":228, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.EditorCoroutines.Editor.pdb" }} +,{ "pid":12345, "tid":3, "ts":1689907455411221, "dur":283, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455411505, "dur":110, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455411635, "dur":435, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455412070, "dur":370, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455412440, "dur":363, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455412803, "dur":143, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455412946, "dur":157, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455413103, "dur":282, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455413385, "dur":332, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455413717, "dur":276, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455413993, "dur":237982, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455390953, "dur":12563, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455403786, "dur":151, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_F4AE0CD65D7DBA0E.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1689907455404149, "dur":2400, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455406555, "dur":157, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455406713, "dur":154, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455406867, "dur":118, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455406986, "dur":126, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455407112, "dur":845, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Editor\\PlasticSCM\\VCSPlugin.cs" }} +,{ "pid":12345, "tid":4, "ts":1689907455407112, "dur":949, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455408061, "dur":114, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455408175, "dur":309, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455408484, "dur":119, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455408603, "dur":615, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455409219, "dur":182, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455409402, "dur":536, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455409938, "dur":188, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455410126, "dur":893, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455411019, "dur":212, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455411231, "dur":268, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455411499, "dur":141, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455411640, "dur":410, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455412050, "dur":400, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455412450, "dur":339, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455412789, "dur":166, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455412955, "dur":138, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455413093, "dur":301, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455413394, "dur":315, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455413709, "dur":286, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455413995, "dur":237977, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689907455391210, "dur":13724, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689907455404934, "dur":3755, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\Transitions\\TriggerStateTransitionWidget.cs" }} +,{ "pid":12345, "tid":5, "ts":1689907455404934, "dur":3861, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689907455408795, "dur":224, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689907455409019, "dur":443, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689907455409462, "dur":382, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689907455409898, "dur":826, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689907455410966, "dur":550, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.ide.visualstudio@2.0.18\\Editor\\Messaging\\ExceptionEventArgs.cs" }} +,{ "pid":12345, "tid":5, "ts":1689907455410725, "dur":865, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":5, "ts":1689907455411653, "dur":377, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689907455412030, "dur":429, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689907455412459, "dur":311, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689907455412770, "dur":195, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689907455412965, "dur":110, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689907455413075, "dur":323, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689907455413398, "dur":293, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689907455413691, "dur":311, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689907455414002, "dur":237965, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689907455390880, "dur":12475, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689907455403364, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_271602979908EEDE.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1689907455403557, "dur":243, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.PresetsUIModule.dll" }} +,{ "pid":12345, "tid":6, "ts":1689907455403556, "dur":246, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_6DA30FBB7B1C6B70.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1689907455403858, "dur":2030, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TilemapModule.dll" }} +,{ "pid":12345, "tid":6, "ts":1689907455403858, "dur":2033, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_1F902F816DFAB7EB.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1689907455405908, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1689907455406182, "dur":2773, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Web.dll" }} +,{ "pid":12345, "tid":6, "ts":1689907455405986, "dur":3377, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1689907455409461, "dur":336, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1689907455409902, "dur":197, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1689907455410136, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1689907455410219, "dur":811, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEditor.Graphs.dll" }} +,{ "pid":12345, "tid":6, "ts":1689907455410218, "dur":1634, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1689907455411905, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1689907455412082, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.StackTrace.dll" }} +,{ "pid":12345, "tid":6, "ts":1689907455411972, "dur":741, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1689907455412758, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1689907455412817, "dur":213, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1689907455413070, "dur":334, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689907455413404, "dur":270, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689907455413681, "dur":323, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689907455414004, "dur":237962, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455390928, "dur":12493, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455403493, "dur":1009, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_5C7E93297DF7ED6C.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1689907455404504, "dur":161, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455404666, "dur":114, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455404781, "dur":229, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455405010, "dur":118, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455405128, "dur":118, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455405246, "dur":127, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455405373, "dur":116, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455405489, "dur":116, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455405605, "dur":133, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455405810, "dur":3234, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Core\\Windows\\WebWindow.cs" }} +,{ "pid":12345, "tid":7, "ts":1689907455405738, "dur":3363, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455409101, "dur":329, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455409431, "dur":475, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455409907, "dur":332, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455410240, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1689907455410968, "dur":548, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Editor\\PlasticSCM\\Views\\Diff\\DiffTreeViewMenu.cs" }} +,{ "pid":12345, "tid":7, "ts":1689907455411568, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Editor\\PlasticSCM\\Views\\PendingChanges\\ChangeCategoryTreeViewItem.cs" }} +,{ "pid":12345, "tid":7, "ts":1689907455410351, "dur":1377, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":7, "ts":1689907455411772, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1689907455411834, "dur":223, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":7, "ts":1689907455412077, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455412168, "dur":240, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455412409, "dur":421, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455412830, "dur":76, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455412906, "dur":215, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455413121, "dur":211, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455413348, "dur":379, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455413727, "dur":246, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455413973, "dur":238008, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689907455390968, "dur":12604, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689907455403895, "dur":1511, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityConnectModule.dll" }} +,{ "pid":12345, "tid":8, "ts":1689907455403894, "dur":1514, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_55AA3D446BBB024C.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1689907455405420, "dur":106, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689907455405526, "dur":118, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689907455405644, "dur":117, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689907455405761, "dur":112, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689907455405879, "dur":3192, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Core\\Plugins\\ProjectSettingAttribute.cs" }} +,{ "pid":12345, "tid":8, "ts":1689907455405873, "dur":3433, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689907455409306, "dur":94, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689907455409413, "dur":512, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689907455409925, "dur":200, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689907455410138, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1689907455410210, "dur":812, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689907455411025, "dur":267, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll (+2 others)" }} +,{ "pid":12345, "tid":8, "ts":1689907455411292, "dur":558, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689907455411885, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1689907455412082, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Reflection.Emit.ILGeneration.dll" }} +,{ "pid":12345, "tid":8, "ts":1689907455411948, "dur":354, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":8, "ts":1689907455412351, "dur":489, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689907455412896, "dur":229, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689907455413125, "dur":208, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689907455413342, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1689907455413409, "dur":207, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":8, "ts":1689907455413655, "dur":82, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689907455413737, "dur":224, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689907455413961, "dur":238023, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689907455390988, "dur":12649, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689907455403787, "dur":1117, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_F21F01A360D39C6F.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1689907455404906, "dur":3997, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.testtools.codecoverage@1.2.3\\Editor\\CoverageStats\\ICoverageStatsProvider.cs" }} +,{ "pid":12345, "tid":9, "ts":1689907455404906, "dur":4125, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689907455409031, "dur":428, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689907455409459, "dur":409, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689907455409869, "dur":1123, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689907455411011, "dur":577, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689907455411588, "dur":81, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689907455411669, "dur":307, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689907455411991, "dur":111, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689907455412102, "dur":318, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689907455412421, "dur":401, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689907455412822, "dur":93, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689907455412915, "dur":200, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689907455413116, "dur":238, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689907455413354, "dur":372, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689907455413726, "dur":257, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689907455413983, "dur":237998, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455391005, "dur":12801, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455403887, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455404046, "dur":2142, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455406195, "dur":136, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455406331, "dur":119, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455406543, "dur":2526, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Reflection\\Optimization\\ReflectionFieldAccessor.cs" }} +,{ "pid":12345, "tid":10, "ts":1689907455406451, "dur":2632, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455409083, "dur":359, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455409442, "dur":448, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455409890, "dur":1089, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455410980, "dur":610, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.TextMeshPro.dll" }} +,{ "pid":12345, "tid":10, "ts":1689907455410979, "dur":611, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.dll" }} +,{ "pid":12345, "tid":10, "ts":1689907455411608, "dur":51, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455411659, "dur":361, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455412020, "dur":441, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455412461, "dur":282, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455412755, "dur":219, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455412974, "dur":81, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455413065, "dur":352, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455413417, "dur":229, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455413658, "dur":78, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455413736, "dur":207, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455413961, "dur":194954, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455608927, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp.pdb" }} +,{ "pid":12345, "tid":10, "ts":1689907455608922, "dur":117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb" }} +,{ "pid":12345, "tid":10, "ts":1689907455609058, "dur":1388, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.pdb" }} +,{ "pid":12345, "tid":10, "ts":1689907455610449, "dur":41537, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455391027, "dur":12792, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455403892, "dur":698, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Tools\\ScriptUpdater\\ApiUpdater.MovedFromExtractor.exe" }} +,{ "pid":12345, "tid":11, "ts":1689907455403886, "dur":705, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_2557678B45BA51B3.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1689907455404604, "dur":112, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455404716, "dur":102, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455404818, "dur":283, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455405101, "dur":125, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455405227, "dur":122, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455405349, "dur":150, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455405499, "dur":119, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455405619, "dur":120, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455405739, "dur":138, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455405877, "dur":145, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455406022, "dur":115, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455406137, "dur":135, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455406272, "dur":130, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455406402, "dur":119, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455406522, "dur":133, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455406655, "dur":124, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455406779, "dur":126, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455406905, "dur":124, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455407116, "dur":842, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Editor\\PlasticSCM\\WebApi\\CurrentUserAdminCheckResponse.cs" }} +,{ "pid":12345, "tid":11, "ts":1689907455407029, "dur":955, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455407984, "dur":108, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455408092, "dur":116, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455408469, "dur":626, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.ugui@1.0.0\\Runtime\\UI\\Core\\ScrollRect.cs" }} +,{ "pid":12345, "tid":11, "ts":1689907455408208, "dur":889, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455409097, "dur":343, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455409440, "dur":457, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455409897, "dur":1081, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455410979, "dur":554, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Timeline.dll" }} +,{ "pid":12345, "tid":11, "ts":1689907455410978, "dur":556, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Timeline.dll" }} +,{ "pid":12345, "tid":11, "ts":1689907455411572, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Timeline.Editor.dll" }} +,{ "pid":12345, "tid":11, "ts":1689907455411571, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Timeline.Editor.dll" }} +,{ "pid":12345, "tid":11, "ts":1689907455411677, "dur":160, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455411837, "dur":255, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455412092, "dur":348, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455412440, "dur":371, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455412811, "dur":134, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455412945, "dur":161, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455413106, "dur":272, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455413379, "dur":338, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455413718, "dur":271, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455413989, "dur":237987, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455391040, "dur":12863, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455403911, "dur":1924, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\PlaybackEngines\\WindowsStandaloneSupport\\UnityEditor.WindowsStandalone.Extensions.dll" }} +,{ "pid":12345, "tid":12, "ts":1689907455403905, "dur":1932, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_5EE56773EE903DE5.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1689907455405849, "dur":106, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455405955, "dur":106, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455406061, "dur":116, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455406177, "dur":108, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455406285, "dur":115, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455406400, "dur":130, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455406530, "dur":127, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455406657, "dur":129, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455406786, "dur":123, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455406951, "dur":2109, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.textmeshpro@3.0.6\\Scripts\\Runtime\\TMP_Text.cs" }} +,{ "pid":12345, "tid":12, "ts":1689907455406909, "dur":2212, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455409121, "dur":302, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455409423, "dur":488, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455409911, "dur":319, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455410230, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1689907455410300, "dur":264, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":12, "ts":1689907455410614, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1689907455410687, "dur":244, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":12, "ts":1689907455410966, "dur":432, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.AccessibilityModule.dll" }} +,{ "pid":12345, "tid":12, "ts":1689907455411567, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Threading.Timer.dll" }} +,{ "pid":12345, "tid":12, "ts":1689907455410950, "dur":786, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":12, "ts":1689907455411817, "dur":284, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455412101, "dur":329, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455412430, "dur":391, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455412821, "dur":105, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455412926, "dur":186, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455413112, "dur":252, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455413364, "dur":360, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455413724, "dur":261, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455413985, "dur":237995, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455391064, "dur":12854, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455403922, "dur":240, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455404424, "dur":120, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455404545, "dur":119, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455404665, "dur":109, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455404774, "dur":242, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455405016, "dur":134, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455405150, "dur":120, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455405270, "dur":171, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455405441, "dur":109, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455405550, "dur":115, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455405665, "dur":108, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455405811, "dur":2645, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Core\\Utilities\\VSUsageUtility.cs" }} +,{ "pid":12345, "tid":13, "ts":1689907455405774, "dur":2794, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455408568, "dur":255, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455408935, "dur":519, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455409455, "dur":452, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455409907, "dur":1079, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455411006, "dur":192, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455411198, "dur":199, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455411406, "dur":289, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.Editor.pdb" }} +,{ "pid":12345, "tid":13, "ts":1689907455411695, "dur":401, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455412096, "dur":355, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455412451, "dur":314, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455412765, "dur":171, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455412936, "dur":141, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455413077, "dur":309, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455413386, "dur":279, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455413702, "dur":264, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455413966, "dur":238028, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455391079, "dur":12842, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455403926, "dur":1902, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455405834, "dur":117, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455405952, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll.mvfrm" }} +,{ "pid":12345, "tid":14, "ts":1689907455407113, "dur":885, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.ugui@1.0.0\\Runtime\\EventSystem\\InputModules\\PointerInputModule.cs" }} +,{ "pid":12345, "tid":14, "ts":1689907455408267, "dur":113, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.ugui@1.0.0\\Runtime\\UI\\Core\\Layout\\ContentSizeFitter.cs" }} +,{ "pid":12345, "tid":14, "ts":1689907455408463, "dur":195, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.ugui@1.0.0\\Runtime\\UI\\Core\\ScrollRect.cs" }} +,{ "pid":12345, "tid":14, "ts":1689907455406045, "dur":2635, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll (+2 others)" }} +,{ "pid":12345, "tid":14, "ts":1689907455408734, "dur":236, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455408971, "dur":464, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455409435, "dur":491, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455409926, "dur":1050, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455411028, "dur":161, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455411189, "dur":234, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455411423, "dur":67, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455411490, "dur":87, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455411644, "dur":468, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455412112, "dur":221, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455412364, "dur":429, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455412793, "dur":116, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455412909, "dur":181, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455413090, "dur":268, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455413358, "dur":342, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455413700, "dur":270, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455413970, "dur":238020, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455391096, "dur":12832, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455404426, "dur":133, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455404560, "dur":486, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455405047, "dur":141, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455405188, "dur":128, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455405392, "dur":3225, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Flow\\Framework\\Variables\\Obsolete\\SetVariableUnit.cs" }} +,{ "pid":12345, "tid":15, "ts":1689907455405316, "dur":3335, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455408652, "dur":120, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455408772, "dur":274, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455409047, "dur":416, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455409463, "dur":376, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455409877, "dur":1112, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455411009, "dur":231, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455411240, "dur":189, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455411429, "dur":64, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455411493, "dur":96, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455411639, "dur":422, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455412061, "dur":388, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455412450, "dur":352, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455412802, "dur":152, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455412954, "dur":142, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455413096, "dur":292, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455413389, "dur":325, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455413715, "dur":279, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455413994, "dur":237980, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689907455391115, "dur":12939, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689907455404445, "dur":133, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689907455404589, "dur":4475, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Editor\\Utilities\\StyleManager.cs" }} +,{ "pid":12345, "tid":16, "ts":1689907455404578, "dur":4624, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689907455409202, "dur":209, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689907455409412, "dur":518, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689907455409930, "dur":195, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689907455410140, "dur":116, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll.mvfrm" }} +,{ "pid":12345, "tid":16, "ts":1689907455410265, "dur":298, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll (+2 others)" }} +,{ "pid":12345, "tid":16, "ts":1689907455410593, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":16, "ts":1689907455410664, "dur":297, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":16, "ts":1689907455410961, "dur":406, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689907455411379, "dur":307, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.Editor.ref.dll_159E061D77A10B86.mvfrm" }} +,{ "pid":12345, "tid":16, "ts":1689907455411687, "dur":140, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689907455411827, "dur":265, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689907455412093, "dur":337, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689907455412431, "dur":381, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689907455412812, "dur":123, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689907455412935, "dur":172, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689907455413107, "dur":269, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689907455413376, "dur":343, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689907455413719, "dur":266, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689907455413985, "dur":237993, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455391139, "dur":13755, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455404897, "dur":2069, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.testtools.codecoverage@1.2.3\\Editor\\Logging\\ResultsLogger.cs" }} +,{ "pid":12345, "tid":17, "ts":1689907455404897, "dur":2189, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455407114, "dur":855, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Editor\\PlasticSCM\\Views\\Diff\\GetClientDiffInfos.cs" }} +,{ "pid":12345, "tid":17, "ts":1689907455407086, "dur":961, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455408047, "dur":116, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455408163, "dur":228, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455408391, "dur":109, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455408500, "dur":106, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455408606, "dur":645, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455409251, "dur":150, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455409416, "dur":504, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455409920, "dur":216, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455410137, "dur":916, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm" }} +,{ "pid":12345, "tid":17, "ts":1689907455411061, "dur":254, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll (+2 others)" }} +,{ "pid":12345, "tid":17, "ts":1689907455411379, "dur":246, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll" }} +,{ "pid":12345, "tid":17, "ts":1689907455411663, "dur":347, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455412010, "dur":459, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455412469, "dur":275, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455412761, "dur":212, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455412973, "dur":83, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455413068, "dur":348, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455413416, "dur":229, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455413663, "dur":70, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455413733, "dur":211, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455413956, "dur":13756, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455427713, "dur":224280, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689907455391156, "dur":13751, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689907455404909, "dur":3993, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.testtools.codecoverage@1.2.3\\Editor\\AssemblyInfo.cs" }} +,{ "pid":12345, "tid":18, "ts":1689907455404909, "dur":4149, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689907455409058, "dur":394, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689907455409452, "dur":429, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689907455409881, "dur":1107, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689907455411014, "dur":563, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689907455411578, "dur":95, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689907455411673, "dur":173, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689907455411932, "dur":242, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":18, "ts":1689907455412182, "dur":674, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":18, "ts":1689907455412902, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":18, "ts":1689907455412961, "dur":342, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":18, "ts":1689907455413342, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":18, "ts":1689907455413404, "dur":257, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":18, "ts":1689907455413746, "dur":171, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":18, "ts":1689907455414007, "dur":181, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)" }} +,{ "pid":12345, "tid":18, "ts":1689907455414700, "dur":193176, "ph":"X", "name": "Csc", "args": { "detail":"Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)" }} +,{ "pid":12345, "tid":18, "ts":1689907455608891, "dur":42363, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp.dll" }} +,{ "pid":12345, "tid":18, "ts":1689907455608890, "dur":42366, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll" }} +,{ "pid":12345, "tid":18, "ts":1689907455651290, "dur":618, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.dll" }} +,{ "pid":12345, "tid":19, "ts":1689907455391172, "dur":13747, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455404921, "dur":306, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455405228, "dur":184, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455405412, "dur":240, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455405652, "dur":234, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455405887, "dur":392, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455406280, "dur":179, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455406459, "dur":292, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455406751, "dur":189, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455406940, "dur":155, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455407113, "dur":1999, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Editor\\PlasticSCM\\Views\\ConfirmContinueWithPendingChangesDialog.cs" }} +,{ "pid":12345, "tid":19, "ts":1689907455407095, "dur":2170, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455409265, "dur":168, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455409433, "dur":467, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455409900, "dur":561, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455410462, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":19, "ts":1689907455410568, "dur":119, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455410687, "dur":79, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":19, "ts":1689907455411000, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.IO.Compression.ZipFile.dll" }} +,{ "pid":12345, "tid":19, "ts":1689907455410767, "dur":581, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":19, "ts":1689907455411377, "dur":55, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":19, "ts":1689907455411479, "dur":167, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455411646, "dur":394, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455412040, "dur":419, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455412459, "dur":320, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455412779, "dur":184, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455412963, "dur":121, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455413084, "dur":311, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455413395, "dur":308, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455413703, "dur":296, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455413999, "dur":237969, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455391191, "dur":13736, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455404929, "dur":3690, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.performance.profile-analyzer@1.2.2\\Editor\\ProfileAnalysis.cs" }} +,{ "pid":12345, "tid":20, "ts":1689907455404929, "dur":3794, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455408740, "dur":260, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455409001, "dur":425, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455409426, "dur":509, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455409935, "dur":561, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455410497, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":20, "ts":1689907455410573, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":20, "ts":1689907455410638, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":20, "ts":1689907455410966, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Xml.XmlDocument.dll" }} +,{ "pid":12345, "tid":20, "ts":1689907455410739, "dur":369, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":20, "ts":1689907455411162, "dur":310, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455411472, "dur":108, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455411580, "dur":83, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455411664, "dur":443, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455412107, "dur":335, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455412442, "dur":332, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455412774, "dur":153, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455412927, "dur":153, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455413080, "dur":296, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455413376, "dur":296, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455413690, "dur":290, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455413980, "dur":237966, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689907455655062, "dur":1255, "ph":"X", "name": "ProfilerWriteOutput" } , \ No newline at end of file diff --git a/LMC/Library/Bee/fullprofile.json b/LMC/Library/Bee/fullprofile.json index 215b5cd8..97e7430b 100644 --- a/LMC/Library/Bee/fullprofile.json +++ b/LMC/Library/Bee/fullprofile.json @@ -6,831 +6,919 @@ }, "traceEvents":[ -{ "pid": 23580, "tid": -1, "ph": "M", "name": "process_name", "args": { "name": "BeeDriver" } }, -{ "pid": 23580, "tid": -1, "ph": "M", "name": "process_sort_index", "args": { "sort_index": "-2" } }, -{ "pid": 23580, "tid": 40, "ph": "M", "name": "thread_name", "args": { "name": "Thread Pool Worker" } }, -{ "pid": 23580, "tid": 40, "ts": 1689873812996137, "dur": 432, "ph": "X", "name": "ChromeTraceHeader", "args": {} }, -{ "pid": 23580, "tid": 40, "ts": 1689873812999264, "dur": 902, "ph": "X", "name": "Thread Pool Worker", "args": {} }, -{ "pid": 23580, "tid": 1, "ph": "M", "name": "thread_name", "args": { "name": "" } }, -{ "pid": 23580, "tid": 1, "ts": 1689873812606397, "dur": 3878, "ph": "X", "name": "b__0", "args": {} }, -{ "pid": 23580, "tid": 1, "ts": 1689873812610279, "dur": 26485, "ph": "X", "name": "b__0", "args": {} }, -{ "pid": 23580, "tid": 1, "ts": 1689873812636775, "dur": 17197, "ph": "X", "name": "WriteJson", "args": {} }, -{ "pid": 23580, "tid": 40, "ts": 1689873813000171, "dur": 15, "ph": "X", "name": "", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ph": "M", "name": "thread_name", "args": { "name": "ReadEntireBinlogFromIpcAsync" } }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812604934, "dur": 9829, "ph": "X", "name": "WaitForConnectionAsync", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812614765, "dur": 374251, "ph": "X", "name": "UpdateFromStreamAsync", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812615595, "dur": 2008, "ph": "X", "name": "ReadAsync 0", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812617610, "dur": 1127, "ph": "X", "name": "ProcessMessages 20485", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812618739, "dur": 225, "ph": "X", "name": "ReadAsync 20485", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812618966, "dur": 10, "ph": "X", "name": "ProcessMessages 20512", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812618978, "dur": 25, "ph": "X", "name": "ReadAsync 20512", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812619005, "dur": 17, "ph": "X", "name": "ReadAsync 280", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812619025, "dur": 14, "ph": "X", "name": "ReadAsync 375", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812619041, "dur": 20, "ph": "X", "name": "ReadAsync 192", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812619064, "dur": 40, "ph": "X", "name": "ReadAsync 289", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812619109, "dur": 293, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812619404, "dur": 1, "ph": "X", "name": "ProcessMessages 434", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812619407, "dur": 62, "ph": "X", "name": "ReadAsync 434", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812619470, "dur": 2, "ph": "X", "name": "ProcessMessages 5223", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812619474, "dur": 24, "ph": "X", "name": "ReadAsync 5223", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812619500, "dur": 1, "ph": "X", "name": "ProcessMessages 325", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812619504, "dur": 42, "ph": "X", "name": "ReadAsync 325", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812619549, "dur": 1, "ph": "X", "name": "ProcessMessages 513", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812619552, "dur": 35, "ph": "X", "name": "ReadAsync 513", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812619589, "dur": 16, "ph": "X", "name": "ReadAsync 1082", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812619609, "dur": 23, "ph": "X", "name": "ReadAsync 104", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812619634, "dur": 19, "ph": "X", "name": "ReadAsync 304", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812619655, "dur": 18, "ph": "X", "name": "ReadAsync 307", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812619676, "dur": 28, "ph": "X", "name": "ReadAsync 239", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812619709, "dur": 14, "ph": "X", "name": "ReadAsync 311", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812619726, "dur": 17, "ph": "X", "name": "ReadAsync 223", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812619749, "dur": 23, "ph": "X", "name": "ReadAsync 235", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812619774, "dur": 13, "ph": "X", "name": "ReadAsync 275", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812619789, "dur": 12, "ph": "X", "name": "ReadAsync 69", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812619804, "dur": 23, "ph": "X", "name": "ReadAsync 226", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812619830, "dur": 18, "ph": "X", "name": "ReadAsync 191", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812619850, "dur": 17, "ph": "X", "name": "ReadAsync 308", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812619870, "dur": 20, "ph": "X", "name": "ReadAsync 267", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812619892, "dur": 1, "ph": "X", "name": "ProcessMessages 229", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812619894, "dur": 21, "ph": "X", "name": "ReadAsync 229", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812619917, "dur": 18, "ph": "X", "name": "ReadAsync 249", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812619938, "dur": 15, "ph": "X", "name": "ReadAsync 278", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812619956, "dur": 15, "ph": "X", "name": "ReadAsync 149", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812619973, "dur": 18, "ph": "X", "name": "ReadAsync 140", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812619993, "dur": 17, "ph": "X", "name": "ReadAsync 320", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812620012, "dur": 17, "ph": "X", "name": "ReadAsync 222", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812620031, "dur": 17, "ph": "X", "name": "ReadAsync 328", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812620052, "dur": 3393, "ph": "X", "name": "ReadAsync 260", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812623448, "dur": 1, "ph": "X", "name": "ProcessMessages 259", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812623450, "dur": 212, "ph": "X", "name": "ReadAsync 259", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812623777, "dur": 12, "ph": "X", "name": "ProcessMessages 20579", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812623790, "dur": 63, "ph": "X", "name": "ReadAsync 20579", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812623855, "dur": 1, "ph": "X", "name": "ProcessMessages 1796", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812623857, "dur": 97, "ph": "X", "name": "ReadAsync 1796", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812624001, "dur": 1, "ph": "X", "name": "ProcessMessages 1283", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812624003, "dur": 60, "ph": "X", "name": "ReadAsync 1283", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812624065, "dur": 2, "ph": "X", "name": "ProcessMessages 1276", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812624068, "dur": 99, "ph": "X", "name": "ReadAsync 1276", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812624203, "dur": 55, "ph": "X", "name": "ReadAsync 671", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812624259, "dur": 1, "ph": "X", "name": "ProcessMessages 1575", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812624260, "dur": 38, "ph": "X", "name": "ReadAsync 1575", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812624300, "dur": 39, "ph": "X", "name": "ProcessMessages 855", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812624340, "dur": 52, "ph": "X", "name": "ReadAsync 855", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812624394, "dur": 1, "ph": "X", "name": "ProcessMessages 1512", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812624395, "dur": 71, "ph": "X", "name": "ReadAsync 1512", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812624468, "dur": 61, "ph": "X", "name": "ReadAsync 957", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812624532, "dur": 44, "ph": "X", "name": "ProcessMessages 335", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812624578, "dur": 94, "ph": "X", "name": "ReadAsync 335", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812624673, "dur": 1, "ph": "X", "name": "ProcessMessages 2523", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812624675, "dur": 55, "ph": "X", "name": "ReadAsync 2523", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812624775, "dur": 1, "ph": "X", "name": "ProcessMessages 269", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812624777, "dur": 41, "ph": "X", "name": "ReadAsync 269", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812624886, "dur": 1, "ph": "X", "name": "ProcessMessages 1274", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812624889, "dur": 41, "ph": "X", "name": "ReadAsync 1274", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812624931, "dur": 1, "ph": "X", "name": "ProcessMessages 904", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812624933, "dur": 32, "ph": "X", "name": "ReadAsync 904", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812624966, "dur": 1, "ph": "X", "name": "ProcessMessages 306", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812624968, "dur": 31, "ph": "X", "name": "ReadAsync 306", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812625002, "dur": 79, "ph": "X", "name": "ReadAsync 458", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812625130, "dur": 1, "ph": "X", "name": "ProcessMessages 320", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812625132, "dur": 50, "ph": "X", "name": "ReadAsync 320", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812625224, "dur": 1, "ph": "X", "name": "ProcessMessages 1879", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812625226, "dur": 58, "ph": "X", "name": "ReadAsync 1879", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812625286, "dur": 1, "ph": "X", "name": "ProcessMessages 847", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812625288, "dur": 64, "ph": "X", "name": "ReadAsync 847", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812625363, "dur": 1, "ph": "X", "name": "ProcessMessages 1379", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812625364, "dur": 27, "ph": "X", "name": "ReadAsync 1379", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812625394, "dur": 37, "ph": "X", "name": "ReadAsync 441", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812625448, "dur": 1, "ph": "X", "name": "ProcessMessages 256", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812625450, "dur": 70, "ph": "X", "name": "ReadAsync 256", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812625522, "dur": 1, "ph": "X", "name": "ProcessMessages 1304", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812625524, "dur": 18, "ph": "X", "name": "ReadAsync 1304", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812625545, "dur": 17, "ph": "X", "name": "ReadAsync 87", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812625565, "dur": 21, "ph": "X", "name": "ReadAsync 262", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812625587, "dur": 47, "ph": "X", "name": "ReadAsync 265", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812625636, "dur": 14, "ph": "X", "name": "ReadAsync 592", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812625652, "dur": 19, "ph": "X", "name": "ReadAsync 8", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812625697, "dur": 1, "ph": "X", "name": "ProcessMessages 222", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812625699, "dur": 29, "ph": "X", "name": "ReadAsync 222", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812625729, "dur": 1, "ph": "X", "name": "ProcessMessages 745", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812625746, "dur": 45, "ph": "X", "name": "ReadAsync 745", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812625806, "dur": 1, "ph": "X", "name": "ProcessMessages 478", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812625809, "dur": 27, "ph": "X", "name": "ReadAsync 478", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812625837, "dur": 1, "ph": "X", "name": "ProcessMessages 760", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812625838, "dur": 27, "ph": "X", "name": "ReadAsync 760", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812625880, "dur": 1, "ph": "X", "name": "ProcessMessages 255", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812625882, "dur": 24, "ph": "X", "name": "ReadAsync 255", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812625907, "dur": 1, "ph": "X", "name": "ProcessMessages 585", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812625908, "dur": 78, "ph": "X", "name": "ReadAsync 585", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812625988, "dur": 82, "ph": "X", "name": "ReadAsync 249", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812626108, "dur": 1, "ph": "X", "name": "ProcessMessages 1240", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812626110, "dur": 48, "ph": "X", "name": "ReadAsync 1240", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812626159, "dur": 1, "ph": "X", "name": "ProcessMessages 1611", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812626161, "dur": 40, "ph": "X", "name": "ReadAsync 1611", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812626204, "dur": 44, "ph": "X", "name": "ReadAsync 387", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812626250, "dur": 20, "ph": "X", "name": "ReadAsync 531", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812626295, "dur": 1, "ph": "X", "name": "ProcessMessages 273", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812626297, "dur": 56, "ph": "X", "name": "ReadAsync 273", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812626357, "dur": 104, "ph": "X", "name": "ReadAsync 215", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812626463, "dur": 297, "ph": "X", "name": "ProcessMessages 144", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812626785, "dur": 94, "ph": "X", "name": "ReadAsync 144", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812626881, "dur": 4, "ph": "X", "name": "ProcessMessages 912", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812626908, "dur": 83, "ph": "X", "name": "ReadAsync 912", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812626994, "dur": 59, "ph": "X", "name": "ReadAsync 32", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812627055, "dur": 1, "ph": "X", "name": "ProcessMessages 160", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812627057, "dur": 317, "ph": "X", "name": "ReadAsync 160", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812627394, "dur": 1, "ph": "X", "name": "ProcessMessages 76", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812627396, "dur": 140, "ph": "X", "name": "ReadAsync 76", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812627583, "dur": 5, "ph": "X", "name": "ProcessMessages 1140", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812627589, "dur": 83, "ph": "X", "name": "ReadAsync 1140", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812627706, "dur": 2, "ph": "X", "name": "ProcessMessages 432", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812627709, "dur": 285, "ph": "X", "name": "ReadAsync 432", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812628010, "dur": 1, "ph": "X", "name": "ProcessMessages 208", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812628012, "dur": 109, "ph": "X", "name": "ReadAsync 208", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812628138, "dur": 23, "ph": "X", "name": "ProcessMessages 32", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812628162, "dur": 147, "ph": "X", "name": "ReadAsync 32", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812628324, "dur": 1, "ph": "X", "name": "ProcessMessages 96", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812628326, "dur": 69, "ph": "X", "name": "ReadAsync 96", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812628398, "dur": 2087, "ph": "X", "name": "ReadAsync 32", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812630520, "dur": 21, "ph": "X", "name": "ProcessMessages 12", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812630543, "dur": 22, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812630596, "dur": 458, "ph": "X", "name": "ReadAsync 68", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812631058, "dur": 117, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812631180, "dur": 1373, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812632557, "dur": 27, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812632612, "dur": 1, "ph": "X", "name": "ProcessMessages 20", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812632614, "dur": 143, "ph": "X", "name": "ReadAsync 20", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812632759, "dur": 95, "ph": "X", "name": "ReadAsync 48", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812632858, "dur": 57, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812632996, "dur": 184, "ph": "X", "name": "ReadAsync 68", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812633185, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812633187, "dur": 1684, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812634879, "dur": 1, "ph": "X", "name": "ProcessMessages 100", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812634882, "dur": 50, "ph": "X", "name": "ReadAsync 100", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812634934, "dur": 5, "ph": "X", "name": "ProcessMessages 976", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812634940, "dur": 37, "ph": "X", "name": "ReadAsync 976", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812634982, "dur": 21, "ph": "X", "name": "ReadAsync 16", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812635006, "dur": 15, "ph": "X", "name": "ReadAsync 32", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812635024, "dur": 14, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812635040, "dur": 21, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812635062, "dur": 58, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812635123, "dur": 26, "ph": "X", "name": "ReadAsync 20", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812635151, "dur": 21, "ph": "X", "name": "ReadAsync 48", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812635173, "dur": 16, "ph": "X", "name": "ReadAsync 16", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812635191, "dur": 15, "ph": "X", "name": "ReadAsync 44", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812635208, "dur": 184, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812635394, "dur": 72, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812635468, "dur": 17, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812635486, "dur": 1, "ph": "X", "name": "ProcessMessages 64", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812635488, "dur": 14, "ph": "X", "name": "ReadAsync 64", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812635503, "dur": 14, "ph": "X", "name": "ReadAsync 32", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812635519, "dur": 34, "ph": "X", "name": "ReadAsync 16", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812635555, "dur": 71, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812635630, "dur": 1, "ph": "X", "name": "ProcessMessages 20", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812635632, "dur": 22, "ph": "X", "name": "ReadAsync 20", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812635656, "dur": 1, "ph": "X", "name": "ProcessMessages 64", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812635658, "dur": 149, "ph": "X", "name": "ReadAsync 64", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812635810, "dur": 58, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812635871, "dur": 1, "ph": "X", "name": "ProcessMessages 4", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812635873, "dur": 21, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812635896, "dur": 170, "ph": "X", "name": "ReadAsync 48", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812636068, "dur": 94, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812636163, "dur": 26, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812636191, "dur": 14, "ph": "X", "name": "ReadAsync 48", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812636208, "dur": 202, "ph": "X", "name": "ReadAsync 32", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812636412, "dur": 108, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812636522, "dur": 16, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812636540, "dur": 169, "ph": "X", "name": "ReadAsync 128", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812636711, "dur": 49, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812636762, "dur": 17, "ph": "X", "name": "ReadAsync 4", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812636781, "dur": 12, "ph": "X", "name": "ReadAsync 48", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812636798, "dur": 771, "ph": "X", "name": "ReadAsync 16", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812637575, "dur": 63, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812637641, "dur": 574, "ph": "X", "name": "ProcessMessages 8", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812638219, "dur": 277555, "ph": "X", "name": "ReadAsync 8", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812915783, "dur": 2, "ph": "X", "name": "ProcessMessages 12", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812915787, "dur": 27, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812915814, "dur": 4676, "ph": "X", "name": "ProcessMessages 351", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812920495, "dur": 101, "ph": "X", "name": "ReadAsync 351", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812920600, "dur": 12, "ph": "X", "name": "ProcessMessages 66", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812920613, "dur": 60583, "ph": "X", "name": "ReadAsync 66", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812981217, "dur": 2, "ph": "X", "name": "ProcessMessages 12", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812981221, "dur": 43, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812981267, "dur": 3, "ph": "X", "name": "ProcessMessages 8", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812981272, "dur": 607, "ph": "X", "name": "ReadAsync 8", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812981883, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812981885, "dur": 166, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812982054, "dur": 17, "ph": "X", "name": "ProcessMessages 50", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812982072, "dur": 232, "ph": "X", "name": "ReadAsync 50", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812982308, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812982313, "dur": 34, "ph": "X", "name": "ReadAsync 12", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812982350, "dur": 378, "ph": "X", "name": "ProcessMessages 13", "args": {} }, -{ "pid": 23580, "tid": 12884901888, "ts": 1689873812982730, "dur": 6227, "ph": "X", "name": "ReadAsync 13", "args": {} }, -{ "pid": 23580, "tid": 40, "ts": 1689873813000191, "dur": 411, "ph": "X", "name": "ReadEntireBinlogFromIpcAsync", "args": {} }, -{ "pid": 23580, "tid": 8589934592, "ph": "M", "name": "thread_name", "args": { "name": "WaitForBuildProgramInputDataBeingWrittenAndSendDagReadyMessageAsync" } }, -{ "pid": 23580, "tid": 8589934592, "ts": 1689873812602606, "dur": 51396, "ph": "X", "name": "await writeBuildProgramInputDataTask", "args": {} }, -{ "pid": 23580, "tid": 8589934592, "ts": 1689873812654005, "dur": 6, "ph": "X", "name": "WritePipe.WaitConnectionAsync", "args": {} }, -{ "pid": 23580, "tid": 8589934592, "ts": 1689873812654012, "dur": 1020, "ph": "X", "name": "WriteDagReadyMessage", "args": {} }, -{ "pid": 23580, "tid": 40, "ts": 1689873813000604, "dur": 5, "ph": "X", "name": "WaitForBuildProgramInputDataBeingWrittenAndSendDagReadyMessageAsync", "args": {} }, -{ "pid": 23580, "tid": 4294967296, "ph": "M", "name": "thread_name", "args": { "name": "BuildAsync" } }, -{ "pid": 23580, "tid": 4294967296, "ts": 1689873812588133, "dur": 401731, "ph": "X", "name": "RunBackend", "args": {} }, -{ "pid": 23580, "tid": 4294967296, "ts": 1689873812591998, "dur": 6119, "ph": "X", "name": "BackendProgram.Start", "args": {} }, -{ "pid": 23580, "tid": 4294967296, "ts": 1689873812989876, "dur": 4054, "ph": "X", "name": "await WaitForAndApplyScriptUpdaters", "args": {} }, -{ "pid": 23580, "tid": 4294967296, "ts": 1689873812992125, "dur": 94, "ph": "X", "name": "await ScriptUpdaters", "args": {} }, -{ "pid": 23580, "tid": 4294967296, "ts": 1689873812994009, "dur": 33, "ph": "X", "name": "await taskToReadBuildProgramOutput", "args": {} }, -{ "pid": 23580, "tid": 40, "ts": 1689873813000612, "dur": 7, "ph": "X", "name": "BuildAsync", "args": {} }, +{ "pid": 2180, "tid": -1, "ph": "M", "name": "process_name", "args": { "name": "BeeDriver" } }, +{ "pid": 2180, "tid": -1, "ph": "M", "name": "process_sort_index", "args": { "sort_index": "-2" } }, +{ "pid": 2180, "tid": 1233, "ph": "M", "name": "thread_name", "args": { "name": "Thread Pool Worker" } }, +{ "pid": 2180, "tid": 1233, "ts": 1689907455663235, "dur": 531, "ph": "X", "name": "ChromeTraceHeader", "args": {} }, +{ "pid": 2180, "tid": 1233, "ts": 1689907455666833, "dur": 807, "ph": "X", "name": "Thread Pool Worker", "args": {} }, +{ "pid": 2180, "tid": 1, "ph": "M", "name": "thread_name", "args": { "name": "" } }, +{ "pid": 2180, "tid": 1, "ts": 1689907455381738, "dur": 3722, "ph": "X", "name": "b__0", "args": {} }, +{ "pid": 2180, "tid": 1, "ts": 1689907455385463, "dur": 21159, "ph": "X", "name": "b__0", "args": {} }, +{ "pid": 2180, "tid": 1, "ts": 1689907455406633, "dur": 18758, "ph": "X", "name": "WriteJson", "args": {} }, +{ "pid": 2180, "tid": 1233, "ts": 1689907455667645, "dur": 13, "ph": "X", "name": "", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ph": "M", "name": "thread_name", "args": { "name": "ReadEntireBinlogFromIpcAsync" } }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455380214, "dur": 9882, "ph": "X", "name": "WaitForConnectionAsync", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455390097, "dur": 266179, "ph": "X", "name": "UpdateFromStreamAsync", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455390987, "dur": 2169, "ph": "X", "name": "ReadAsync 0", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455393162, "dur": 1333, "ph": "X", "name": "ProcessMessages 20485", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455394498, "dur": 232, "ph": "X", "name": "ReadAsync 20485", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455394734, "dur": 16, "ph": "X", "name": "ProcessMessages 20512", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455394751, "dur": 111, "ph": "X", "name": "ReadAsync 20512", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455394868, "dur": 1, "ph": "X", "name": "ProcessMessages 1", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455394870, "dur": 49, "ph": "X", "name": "ReadAsync 1", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455394921, "dur": 14, "ph": "X", "name": "ReadAsync 60", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455394937, "dur": 65, "ph": "X", "name": "ReadAsync 211", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395005, "dur": 1, "ph": "X", "name": "ProcessMessages 8", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395007, "dur": 36, "ph": "X", "name": "ReadAsync 8", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395045, "dur": 1, "ph": "X", "name": "ProcessMessages 835", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395047, "dur": 109, "ph": "X", "name": "ReadAsync 835", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395159, "dur": 1, "ph": "X", "name": "ProcessMessages 397", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395161, "dur": 92, "ph": "X", "name": "ReadAsync 397", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395256, "dur": 31, "ph": "X", "name": "ReadAsync 271", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395290, "dur": 18, "ph": "X", "name": "ReadAsync 1336", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395310, "dur": 14, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395326, "dur": 13, "ph": "X", "name": "ReadAsync 64", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395341, "dur": 16, "ph": "X", "name": "ReadAsync 155", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395359, "dur": 16, "ph": "X", "name": "ReadAsync 263", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395377, "dur": 15, "ph": "X", "name": "ReadAsync 358", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395395, "dur": 15, "ph": "X", "name": "ReadAsync 241", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395412, "dur": 16, "ph": "X", "name": "ReadAsync 287", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395429, "dur": 15, "ph": "X", "name": "ReadAsync 299", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395446, "dur": 14, "ph": "X", "name": "ReadAsync 261", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395462, "dur": 14, "ph": "X", "name": "ReadAsync 357", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395478, "dur": 15, "ph": "X", "name": "ReadAsync 117", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395496, "dur": 13, "ph": "X", "name": "ReadAsync 265", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395512, "dur": 16, "ph": "X", "name": "ReadAsync 108", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395530, "dur": 14, "ph": "X", "name": "ReadAsync 320", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395546, "dur": 15, "ph": "X", "name": "ReadAsync 281", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395562, "dur": 15, "ph": "X", "name": "ReadAsync 326", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395579, "dur": 14, "ph": "X", "name": "ReadAsync 319", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395596, "dur": 15, "ph": "X", "name": "ReadAsync 378", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395614, "dur": 15, "ph": "X", "name": "ReadAsync 254", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395630, "dur": 15, "ph": "X", "name": "ReadAsync 231", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395647, "dur": 15, "ph": "X", "name": "ReadAsync 398", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395664, "dur": 13, "ph": "X", "name": "ReadAsync 306", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395680, "dur": 15, "ph": "X", "name": "ReadAsync 118", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395697, "dur": 17, "ph": "X", "name": "ReadAsync 227", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395714, "dur": 1, "ph": "X", "name": "ProcessMessages 198", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395716, "dur": 15, "ph": "X", "name": "ReadAsync 198", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395734, "dur": 14, "ph": "X", "name": "ReadAsync 194", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395751, "dur": 14, "ph": "X", "name": "ReadAsync 280", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395767, "dur": 15, "ph": "X", "name": "ReadAsync 198", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395784, "dur": 15, "ph": "X", "name": "ReadAsync 64", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395800, "dur": 15, "ph": "X", "name": "ReadAsync 223", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395818, "dur": 16, "ph": "X", "name": "ReadAsync 226", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395836, "dur": 14, "ph": "X", "name": "ReadAsync 197", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395851, "dur": 14, "ph": "X", "name": "ReadAsync 156", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395867, "dur": 16, "ph": "X", "name": "ReadAsync 44", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395885, "dur": 14, "ph": "X", "name": "ReadAsync 271", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395902, "dur": 15, "ph": "X", "name": "ReadAsync 240", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395918, "dur": 15, "ph": "X", "name": "ReadAsync 170", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395936, "dur": 16, "ph": "X", "name": "ReadAsync 209", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395954, "dur": 18, "ph": "X", "name": "ReadAsync 188", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455395974, "dur": 17, "ph": "X", "name": "ReadAsync 99", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455399032, "dur": 1, "ph": "X", "name": "ProcessMessages 148", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455399034, "dur": 359, "ph": "X", "name": "ReadAsync 148", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455399395, "dur": 11, "ph": "X", "name": "ProcessMessages 20540", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455399408, "dur": 20, "ph": "X", "name": "ReadAsync 20540", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455399430, "dur": 15, "ph": "X", "name": "ReadAsync 163", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455399447, "dur": 22, "ph": "X", "name": "ReadAsync 357", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455399471, "dur": 15, "ph": "X", "name": "ReadAsync 240", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455399489, "dur": 20, "ph": "X", "name": "ReadAsync 291", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455399511, "dur": 1, "ph": "X", "name": "ProcessMessages 252", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455399513, "dur": 36, "ph": "X", "name": "ReadAsync 252", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455399552, "dur": 19, "ph": "X", "name": "ReadAsync 553", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455399574, "dur": 15, "ph": "X", "name": "ReadAsync 341", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455399591, "dur": 11, "ph": "X", "name": "ReadAsync 304", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455399604, "dur": 13, "ph": "X", "name": "ReadAsync 21", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455399619, "dur": 15, "ph": "X", "name": "ReadAsync 242", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455399641, "dur": 15, "ph": "X", "name": "ReadAsync 147", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455399659, "dur": 16, "ph": "X", "name": "ReadAsync 279", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455399677, "dur": 13, "ph": "X", "name": "ReadAsync 302", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455399693, "dur": 14, "ph": "X", "name": "ReadAsync 20", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455399708, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455399710, "dur": 17, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455399730, "dur": 15, "ph": "X", "name": "ReadAsync 230", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455399746, "dur": 21, "ph": "X", "name": "ReadAsync 218", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455399785, "dur": 57, "ph": "X", "name": "ReadAsync 185", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455399844, "dur": 49, "ph": "X", "name": "ReadAsync 723", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455399923, "dur": 49, "ph": "X", "name": "ReadAsync 719", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455399974, "dur": 26, "ph": "X", "name": "ReadAsync 787", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455400003, "dur": 24, "ph": "X", "name": "ReadAsync 428", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455400029, "dur": 30, "ph": "X", "name": "ReadAsync 465", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455400061, "dur": 31, "ph": "X", "name": "ReadAsync 264", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455400094, "dur": 85, "ph": "X", "name": "ReadAsync 282", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455400205, "dur": 1, "ph": "X", "name": "ProcessMessages 1022", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455400207, "dur": 23, "ph": "X", "name": "ReadAsync 1022", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455400232, "dur": 40, "ph": "X", "name": "ReadAsync 819", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455400274, "dur": 24, "ph": "X", "name": "ReadAsync 790", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455402323, "dur": 1, "ph": "X", "name": "ProcessMessages 233", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455402326, "dur": 266, "ph": "X", "name": "ReadAsync 233", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455402593, "dur": 12, "ph": "X", "name": "ProcessMessages 20483", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455402606, "dur": 25, "ph": "X", "name": "ReadAsync 20483", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455402632, "dur": 1, "ph": "X", "name": "ProcessMessages 979", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455402634, "dur": 14, "ph": "X", "name": "ReadAsync 979", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455402650, "dur": 13, "ph": "X", "name": "ReadAsync 131", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455402665, "dur": 14, "ph": "X", "name": "ReadAsync 184", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455402681, "dur": 13, "ph": "X", "name": "ReadAsync 163", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455402696, "dur": 16, "ph": "X", "name": "ReadAsync 172", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455402715, "dur": 12, "ph": "X", "name": "ReadAsync 245", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455402729, "dur": 16, "ph": "X", "name": "ReadAsync 20", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455402747, "dur": 57, "ph": "X", "name": "ReadAsync 153", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455402807, "dur": 1, "ph": "X", "name": "ProcessMessages 62", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455402809, "dur": 115, "ph": "X", "name": "ReadAsync 62", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455402927, "dur": 15, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455402943, "dur": 236, "ph": "X", "name": "ProcessMessages 148", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403181, "dur": 37, "ph": "X", "name": "ReadAsync 148", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403221, "dur": 4, "ph": "X", "name": "ProcessMessages 752", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403226, "dur": 22, "ph": "X", "name": "ReadAsync 752", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403251, "dur": 18, "ph": "X", "name": "ReadAsync 48", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403272, "dur": 10, "ph": "X", "name": "ReadAsync 48", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403286, "dur": 12, "ph": "X", "name": "ReadAsync 64", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403299, "dur": 10, "ph": "X", "name": "ReadAsync 60", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403312, "dur": 11, "ph": "X", "name": "ReadAsync 36", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403325, "dur": 16, "ph": "X", "name": "ReadAsync 16", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403343, "dur": 12, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403357, "dur": 13, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403373, "dur": 12, "ph": "X", "name": "ReadAsync 44", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403387, "dur": 10, "ph": "X", "name": "ReadAsync 52", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403398, "dur": 9, "ph": "X", "name": "ReadAsync 32", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403410, "dur": 12, "ph": "X", "name": "ReadAsync 44", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403424, "dur": 10, "ph": "X", "name": "ReadAsync 64", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403435, "dur": 11, "ph": "X", "name": "ReadAsync 36", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403448, "dur": 19, "ph": "X", "name": "ReadAsync 48", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403470, "dur": 11, "ph": "X", "name": "ReadAsync 64", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403483, "dur": 10, "ph": "X", "name": "ReadAsync 64", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403495, "dur": 17, "ph": "X", "name": "ReadAsync 32", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403513, "dur": 9, "ph": "X", "name": "ReadAsync 64", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403524, "dur": 9, "ph": "X", "name": "ReadAsync 48", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403539, "dur": 10, "ph": "X", "name": "ReadAsync 32", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403551, "dur": 11, "ph": "X", "name": "ReadAsync 48", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403564, "dur": 10, "ph": "X", "name": "ReadAsync 64", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403576, "dur": 12, "ph": "X", "name": "ReadAsync 64", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403589, "dur": 9, "ph": "X", "name": "ReadAsync 64", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403601, "dur": 9, "ph": "X", "name": "ReadAsync 48", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403612, "dur": 12, "ph": "X", "name": "ReadAsync 32", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403626, "dur": 10, "ph": "X", "name": "ReadAsync 48", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403637, "dur": 10, "ph": "X", "name": "ReadAsync 32", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403648, "dur": 10, "ph": "X", "name": "ReadAsync 44", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403660, "dur": 11, "ph": "X", "name": "ReadAsync 52", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403673, "dur": 12, "ph": "X", "name": "ReadAsync 64", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403686, "dur": 10, "ph": "X", "name": "ReadAsync 76", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403698, "dur": 12, "ph": "X", "name": "ReadAsync 52", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403713, "dur": 10, "ph": "X", "name": "ReadAsync 76", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403725, "dur": 10, "ph": "X", "name": "ReadAsync 64", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403736, "dur": 10, "ph": "X", "name": "ReadAsync 36", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403748, "dur": 11, "ph": "X", "name": "ReadAsync 48", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403760, "dur": 9, "ph": "X", "name": "ReadAsync 64", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403772, "dur": 10, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403784, "dur": 9, "ph": "X", "name": "ReadAsync 36", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403795, "dur": 10, "ph": "X", "name": "ReadAsync 16", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403807, "dur": 10, "ph": "X", "name": "ReadAsync 48", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403818, "dur": 10, "ph": "X", "name": "ReadAsync 32", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403830, "dur": 9, "ph": "X", "name": "ReadAsync 60", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403841, "dur": 9, "ph": "X", "name": "ReadAsync 52", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403851, "dur": 11, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403864, "dur": 13, "ph": "X", "name": "ReadAsync 20", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403879, "dur": 15, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455403896, "dur": 169, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455404069, "dur": 34, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455404107, "dur": 212, "ph": "X", "name": "ReadAsync 20", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455404322, "dur": 22, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455404347, "dur": 491, "ph": "X", "name": "ReadAsync 20", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455404842, "dur": 23, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455404869, "dur": 381, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455405254, "dur": 14, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455405271, "dur": 50, "ph": "X", "name": "ReadAsync 20", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455405324, "dur": 20, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455405348, "dur": 52, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455405404, "dur": 23, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455405430, "dur": 37, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455405470, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455405473, "dur": 27, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455405503, "dur": 112, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455405618, "dur": 22, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455405643, "dur": 1, "ph": "X", "name": "ProcessMessages 4", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455405647, "dur": 330, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455405981, "dur": 23, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455406007, "dur": 2125, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455408138, "dur": 32, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455408174, "dur": 665, "ph": "X", "name": "ReadAsync 52", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455408845, "dur": 37, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455408885, "dur": 1, "ph": "X", "name": "ProcessMessages 52", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455408887, "dur": 18, "ph": "X", "name": "ReadAsync 52", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455408908, "dur": 429, "ph": "X", "name": "ReadAsync 16", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455409343, "dur": 18, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455409363, "dur": 208, "ph": "X", "name": "ReadAsync 68", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455409576, "dur": 24, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455409603, "dur": 27, "ph": "X", "name": "ReadAsync 52", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455409632, "dur": 150, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455409785, "dur": 1, "ph": "X", "name": "ProcessMessages 4", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455409787, "dur": 19, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455409809, "dur": 182, "ph": "X", "name": "ReadAsync 64", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455409995, "dur": 27, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455410025, "dur": 13, "ph": "X", "name": "ReadAsync 36", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455410040, "dur": 22, "ph": "X", "name": "ReadAsync 48", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455410066, "dur": 14, "ph": "X", "name": "ReadAsync 32", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455410085, "dur": 15, "ph": "X", "name": "ReadAsync 16", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455410104, "dur": 14, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455410119, "dur": 18, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455410141, "dur": 12, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455410156, "dur": 208, "ph": "X", "name": "ReadAsync 20", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455410367, "dur": 13, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455410383, "dur": 30, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455410416, "dur": 377, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455410796, "dur": 1, "ph": "X", "name": "ProcessMessages 68", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455410798, "dur": 21, "ph": "X", "name": "ReadAsync 68", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455410820, "dur": 1, "ph": "X", "name": "ProcessMessages 236", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455410822, "dur": 49, "ph": "X", "name": "ReadAsync 236", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455410875, "dur": 18, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455410896, "dur": 17, "ph": "X", "name": "ReadAsync 44", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455410917, "dur": 1, "ph": "X", "name": "ProcessMessages 4", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455410919, "dur": 48, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455410970, "dur": 12, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455410984, "dur": 31, "ph": "X", "name": "ReadAsync 20", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455411018, "dur": 14, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455411035, "dur": 20, "ph": "X", "name": "ReadAsync 52", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455411058, "dur": 1, "ph": "X", "name": "ProcessMessages 32", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455411060, "dur": 16, "ph": "X", "name": "ReadAsync 32", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455411078, "dur": 27, "ph": "X", "name": "ReadAsync 32", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455411110, "dur": 16, "ph": "X", "name": "ReadAsync 16", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455411129, "dur": 34, "ph": "X", "name": "ReadAsync 32", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455411164, "dur": 89, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455411256, "dur": 1, "ph": "X", "name": "ProcessMessages 4", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455411258, "dur": 24, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455411284, "dur": 1, "ph": "X", "name": "ProcessMessages 144", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455411286, "dur": 14, "ph": "X", "name": "ReadAsync 144", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455411303, "dur": 13, "ph": "X", "name": "ReadAsync 44", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455411318, "dur": 13, "ph": "X", "name": "ReadAsync 20", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455411334, "dur": 15, "ph": "X", "name": "ReadAsync 16", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455411351, "dur": 12, "ph": "X", "name": "ReadAsync 16", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455411367, "dur": 23, "ph": "X", "name": "ReadAsync 16", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455411394, "dur": 16, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455411413, "dur": 77, "ph": "X", "name": "ReadAsync 20", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455411493, "dur": 20, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455411515, "dur": 121, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455411641, "dur": 26, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455411669, "dur": 33, "ph": "X", "name": "ReadAsync 20", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455411709, "dur": 19, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455411730, "dur": 48, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455411782, "dur": 33, "ph": "X", "name": "ReadAsync 16", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455411818, "dur": 1, "ph": "X", "name": "ProcessMessages 48", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455411819, "dur": 389, "ph": "X", "name": "ReadAsync 48", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455412225, "dur": 28, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455412256, "dur": 93, "ph": "X", "name": "ReadAsync 68", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455412360, "dur": 24, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455412386, "dur": 117, "ph": "X", "name": "ReadAsync 68", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455412508, "dur": 25, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455412535, "dur": 209, "ph": "X", "name": "ReadAsync 52", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455412749, "dur": 22, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455412773, "dur": 40, "ph": "X", "name": "ReadAsync 52", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455412815, "dur": 11, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455412829, "dur": 219, "ph": "X", "name": "ReadAsync 20", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455413049, "dur": 11, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455413062, "dur": 12, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455413075, "dur": 9, "ph": "X", "name": "ReadAsync 32", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455413085, "dur": 19, "ph": "X", "name": "ReadAsync 16", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455413105, "dur": 10, "ph": "X", "name": "ReadAsync 16", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455413117, "dur": 43, "ph": "X", "name": "ReadAsync 48", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455413165, "dur": 15, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455413182, "dur": 164, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455413347, "dur": 11, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455413360, "dur": 9, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455413371, "dur": 10, "ph": "X", "name": "ReadAsync 32", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455413383, "dur": 37, "ph": "X", "name": "ReadAsync 16", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455413422, "dur": 12, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455413436, "dur": 656, "ph": "X", "name": "ReadAsync 4", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455414096, "dur": 23, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455414120, "dur": 434, "ph": "X", "name": "ProcessMessages 8", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455414559, "dur": 192832, "ph": "X", "name": "ReadAsync 8", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455607400, "dur": 2, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455607403, "dur": 37, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455607444, "dur": 5351, "ph": "X", "name": "ProcessMessages 351", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455612799, "dur": 48, "ph": "X", "name": "ReadAsync 351", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455612851, "dur": 12, "ph": "X", "name": "ProcessMessages 66", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455612865, "dur": 37882, "ph": "X", "name": "ReadAsync 66", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455650756, "dur": 2, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455650760, "dur": 34, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455650796, "dur": 2, "ph": "X", "name": "ProcessMessages 8", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455650799, "dur": 522, "ph": "X", "name": "ReadAsync 8", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455651328, "dur": 1, "ph": "X", "name": "ProcessMessages 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455651331, "dur": 106, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455651442, "dur": 28, "ph": "X", "name": "ProcessMessages 50", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455651472, "dur": 539, "ph": "X", "name": "ReadAsync 50", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455652016, "dur": 34, "ph": "X", "name": "ReadAsync 12", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455652054, "dur": 386, "ph": "X", "name": "ProcessMessages 13", "args": {} }, +{ "pid": 2180, "tid": 12884901888, "ts": 1689907455652443, "dur": 3626, "ph": "X", "name": "ReadAsync 13", "args": {} }, +{ "pid": 2180, "tid": 1233, "ts": 1689907455667659, "dur": 375, "ph": "X", "name": "ReadEntireBinlogFromIpcAsync", "args": {} }, +{ "pid": 2180, "tid": 8589934592, "ph": "M", "name": "thread_name", "args": { "name": "WaitForBuildProgramInputDataBeingWrittenAndSendDagReadyMessageAsync" } }, +{ "pid": 2180, "tid": 8589934592, "ts": 1689907455377563, "dur": 47894, "ph": "X", "name": "await writeBuildProgramInputDataTask", "args": {} }, +{ "pid": 2180, "tid": 8589934592, "ts": 1689907455425460, "dur": 4, "ph": "X", "name": "WritePipe.WaitConnectionAsync", "args": {} }, +{ "pid": 2180, "tid": 8589934592, "ts": 1689907455425465, "dur": 1132, "ph": "X", "name": "WriteDagReadyMessage", "args": {} }, +{ "pid": 2180, "tid": 1233, "ts": 1689907455668037, "dur": 4, "ph": "X", "name": "WaitForBuildProgramInputDataBeingWrittenAndSendDagReadyMessageAsync", "args": {} }, +{ "pid": 2180, "tid": 4294967296, "ph": "M", "name": "thread_name", "args": { "name": "BuildAsync" } }, +{ "pid": 2180, "tid": 4294967296, "ts": 1689907455362999, "dur": 294092, "ph": "X", "name": "RunBackend", "args": {} }, +{ "pid": 2180, "tid": 4294967296, "ts": 1689907455366493, "dur": 6065, "ph": "X", "name": "BackendProgram.Start", "args": {} }, +{ "pid": 2180, "tid": 4294967296, "ts": 1689907455657104, "dur": 4028, "ph": "X", "name": "await WaitForAndApplyScriptUpdaters", "args": {} }, +{ "pid": 2180, "tid": 4294967296, "ts": 1689907455659248, "dur": 106, "ph": "X", "name": "await ScriptUpdaters", "args": {} }, +{ "pid": 2180, "tid": 4294967296, "ts": 1689907455661204, "dur": 11, "ph": "X", "name": "await taskToReadBuildProgramOutput", "args": {} }, +{ "pid": 2180, "tid": 1233, "ts": 1689907455668042, "dur": 8, "ph": "X", "name": "BuildAsync", "args": {} }, { "cat":"", "pid":12345, "tid":0, "ts":0, "ph":"M", "name":"process_name", "args": { "name":"bee_backend" } } -,{ "pid":12345, "tid":0, "ts":1689873812613693, "dur":63, "ph":"X", "name": "IPC_Client_InitializeAndConnectToParent", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1689873812613784, "dur":1251, "ph":"X", "name": "DriverInitData", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1689873812615045, "dur":218, "ph":"X", "name": "RemoveStaleOutputs", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1689873812615316, "dur":476, "ph":"X", "name": "BuildQueueInit", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1689873812616938, "dur":1485, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_004BBCEE2ACB5C09.mvfrm" }} -,{ "pid":12345, "tid":0, "ts":1689873812619742, "dur":553, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.UnityAdditionalFile.txt" }} -,{ "pid":12345, "tid":0, "ts":1689873812620733, "dur":63, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll (+2 others)" }} -,{ "pid":12345, "tid":0, "ts":1689873812622828, "dur":2153, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":0, "ts":1689873812615808, "dur":11799, "ph":"X", "name": "EnqueueRequestedNodes", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1689873812627614, "dur":355601, "ph":"X", "name": "WaitForBuildFinished", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1689873812983216, "dur":227, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1689873812983614, "dur":746, "ph":"X", "name": "Tundra", "args": { "detail":"Write AllBuiltNodes" }} -,{ "pid":12345, "tid":1, "ts":1689873812615734, "dur":11888, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812627632, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_271602979908EEDE.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1689873812627722, "dur":95, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812627825, "dur":626, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.QuickSearchModule.dll" }} -,{ "pid":12345, "tid":1, "ts":1689873812627824, "dur":629, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.QuickSearchModule.dll_6B8CD4EEF346666D.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1689873812628537, "dur":145, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812628963, "dur":107, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812629070, "dur":186, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812629256, "dur":151, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812629440, "dur":1328, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.textmeshpro@3.0.6\\Scripts\\Editor\\TMP_PackageUtilities.cs" }} -,{ "pid":12345, "tid":1, "ts":1689873812629407, "dur":1450, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812630858, "dur":133, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812630992, "dur":129, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812631121, "dur":118, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812631239, "dur":176, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812631415, "dur":498, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812631914, "dur":215, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812632129, "dur":147, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812632294, "dur":1136, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Runtime\\Audio\\AudioClipProperties.cs" }} -,{ "pid":12345, "tid":1, "ts":1689873812632276, "dur":1297, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812633573, "dur":213, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812633786, "dur":154, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812633940, "dur":229, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812634169, "dur":308, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812634478, "dur":145, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1689873812634646, "dur":878, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":1, "ts":1689873812635525, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812635664, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":1, "ts":1689873812635747, "dur":297, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":1, "ts":1689873812636087, "dur":184, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812636275, "dur":67, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812636350, "dur":64, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812636427, "dur":85, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812636512, "dur":223, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812636735, "dur":125, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812636908, "dur":256, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812637165, "dur":264, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812637429, "dur":343, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812637782, "dur":304, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":1, "ts":1689873812638087, "dur":345176, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689873812616105, "dur":13295, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689873812629403, "dur":247, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1689873812629803, "dur":2558, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Windows.dll" }} -,{ "pid":12345, "tid":2, "ts":1689873812632376, "dur":367, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Collections.dll" }} -,{ "pid":12345, "tid":2, "ts":1689873812633434, "dur":399, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.ugui@1.0.0\\Runtime\\UI\\Core\\SetPropertyUtility.cs" }} -,{ "pid":12345, "tid":2, "ts":1689873812629660, "dur":4202, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1689873812633944, "dur":225, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689873812634169, "dur":260, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689873812634445, "dur":81, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":2, "ts":1689873812634540, "dur":334, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1689873812634874, "dur":57, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689873812634947, "dur":333, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":2, "ts":1689873812635280, "dur":484, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689873812635825, "dur":246, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689873812636084, "dur":221, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689873812636305, "dur":134, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689873812636439, "dur":62, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689873812636502, "dur":250, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689873812636752, "dur":92, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689873812636844, "dur":62, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689873812636906, "dur":266, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689873812637173, "dur":255, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689873812637428, "dur":345, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689873812637793, "dur":288, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":2, "ts":1689873812638081, "dur":345253, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812615760, "dur":11870, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812627643, "dur":54, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.VFXModule.dll" }} -,{ "pid":12345, "tid":3, "ts":1689873812627633, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_86360A61E634AB35.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1689873812628175, "dur":139, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreTextEngineModule.dll_5C53BD3BA9493272.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1689873812628316, "dur":227, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\PlaybackEngines\\WindowsStandaloneSupport\\UnityEditor.WindowsStandalone.Extensions.dll" }} -,{ "pid":12345, "tid":3, "ts":1689873812628315, "dur":230, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_5EE56773EE903DE5.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1689873812628668, "dur":133, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.rsp" }} -,{ "pid":12345, "tid":3, "ts":1689873812628846, "dur":150, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.rsp" }} -,{ "pid":12345, "tid":3, "ts":1689873812628997, "dur":86, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812629153, "dur":3144, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Editor\\Utilities\\Scopes\\IndentLevelScope.cs" }} -,{ "pid":12345, "tid":3, "ts":1689873812629092, "dur":3747, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812632839, "dur":132, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812632971, "dur":134, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812633105, "dur":111, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812633216, "dur":119, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812633335, "dur":50, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812633414, "dur":137, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812633551, "dur":209, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812633761, "dur":184, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812633945, "dur":222, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812634168, "dur":1383, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812635552, "dur":226, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":3, "ts":1689873812635809, "dur":881, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":3, "ts":1689873812636737, "dur":122, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812636903, "dur":273, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812637176, "dur":300, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812637477, "dur":318, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812637796, "dur":276, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":3, "ts":1689873812638072, "dur":345269, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812615807, "dur":11862, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812627835, "dur":101, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.TextCoreFontEngineModule.dll" }} -,{ "pid":12345, "tid":4, "ts":1689873812627834, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_960C0B7706C7BA89.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1689873812628185, "dur":157, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainModule.dll_8093C800563DD6E2.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1689873812628750, "dur":74, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.rsp2" }} -,{ "pid":12345, "tid":4, "ts":1689873812628916, "dur":3315, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812632296, "dur":908, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Runtime\\Properties\\AssemblyInfo.cs" }} -,{ "pid":12345, "tid":4, "ts":1689873812632242, "dur":1069, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812633311, "dur":168, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812633480, "dur":175, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812633751, "dur":212, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812633964, "dur":201, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812634165, "dur":266, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812634431, "dur":217, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812634648, "dur":103, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1689873812634792, "dur":114, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":4, "ts":1689873812634906, "dur":360, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812635275, "dur":488, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":4, "ts":1689873812635862, "dur":449, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812636311, "dur":134, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812636445, "dur":60, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812636505, "dur":264, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812636835, "dur":91, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812636926, "dur":269, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812637195, "dur":211, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812637419, "dur":390, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812637809, "dur":282, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":4, "ts":1689873812638091, "dur":345059, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689873812616150, "dur":13394, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689873812629545, "dur":2823, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\Plugin\\Migrations\\Migration_1_5_1_to_1_5_2.cs" }} -,{ "pid":12345, "tid":5, "ts":1689873812632369, "dur":1425, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\Plugin\\Changelogs\\Changelog_1_4_1.cs" }} -,{ "pid":12345, "tid":5, "ts":1689873812629545, "dur":4379, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689873812633924, "dur":204, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689873812634129, "dur":432, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689873812634562, "dur":1337, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":5, "ts":1689873812635917, "dur":439, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":5, "ts":1689873812636434, "dur":77, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689873812636511, "dur":255, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689873812636766, "dur":52, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689873812636819, "dur":114, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689873812636933, "dur":210, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689873812637156, "dur":330, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689873812637486, "dur":261, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689873812637764, "dur":50, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689873812637814, "dur":277, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":5, "ts":1689873812638091, "dur":345060, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812615851, "dur":11874, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812627891, "dur":819, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.UIElementsSamplesModule.dll_A0BBDD3723FC9816.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1689873812628736, "dur":741, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.rsp2" }} -,{ "pid":12345, "tid":6, "ts":1689873812629479, "dur":324, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812629804, "dur":168, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812629972, "dur":332, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812630305, "dur":164, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812630469, "dur":165, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812630634, "dur":165, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812630799, "dur":174, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812630973, "dur":261, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812631235, "dur":168, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812631404, "dur":658, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812632218, "dur":1594, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\EditorBinding\\TypeIconPriorityAttribute.cs" }} -,{ "pid":12345, "tid":6, "ts":1689873812632062, "dur":1839, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812633913, "dur":222, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812634135, "dur":302, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812634443, "dur":169, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1689873812634612, "dur":367, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812635043, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.AndroidJNIModule.dll" }} -,{ "pid":12345, "tid":6, "ts":1689873812635546, "dur":61, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.textmeshpro@3.0.6\\Scripts\\Runtime\\TMP_SubMesh.cs" }} -,{ "pid":12345, "tid":6, "ts":1689873812634987, "dur":641, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll (+2 others)" }} -,{ "pid":12345, "tid":6, "ts":1689873812635629, "dur":137, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812635796, "dur":104, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":6, "ts":1689873812635912, "dur":356, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":6, "ts":1689873812636268, "dur":208, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812636501, "dur":270, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812636772, "dur":80, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812636852, "dur":71, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812636923, "dur":258, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812637181, "dur":238, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812637419, "dur":392, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812637811, "dur":277, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":6, "ts":1689873812638088, "dur":345068, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812615873, "dur":11973, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812628167, "dur":62, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_004BBCEE2ACB5C09.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1689873812628268, "dur":77, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityAnalyticsModule.dll" }} -,{ "pid":12345, "tid":7, "ts":1689873812628267, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_1F7084E4BDAFB378.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1689873812628524, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.rsp" }} -,{ "pid":12345, "tid":7, "ts":1689873812628657, "dur":858, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.rsp" }} -,{ "pid":12345, "tid":7, "ts":1689873812629515, "dur":2811, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.performance.profile-analyzer@1.2.2\\Editor\\ProfileAnalysis.cs" }} -,{ "pid":12345, "tid":7, "ts":1689873812629515, "dur":3336, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812632852, "dur":131, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812632983, "dur":129, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812633112, "dur":127, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812633240, "dur":125, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812633401, "dur":123, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812633524, "dur":249, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812633773, "dur":141, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812633914, "dur":268, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812634183, "dur":246, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812634442, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll.mvfrm" }} -,{ "pid":12345, "tid":7, "ts":1689873812634526, "dur":319, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll (+2 others)" }} -,{ "pid":12345, "tid":7, "ts":1689873812634882, "dur":315, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":7, "ts":1689873812635297, "dur":480, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812635853, "dur":463, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812636316, "dur":124, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812636440, "dur":83, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812636523, "dur":241, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812636764, "dur":61, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812636825, "dur":111, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812636936, "dur":217, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812637154, "dur":307, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812637461, "dur":305, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812637810, "dur":270, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":7, "ts":1689873812638080, "dur":345080, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812615888, "dur":12267, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812628188, "dur":770, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TextCoreFontEngineModule.dll_146B86CA19C57954.mvfrm" }} -,{ "pid":12345, "tid":8, "ts":1689873812629441, "dur":1057, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.ide.visualstudio@2.0.18\\Editor\\Messaging\\Deserializer.cs" }} -,{ "pid":12345, "tid":8, "ts":1689873812628987, "dur":1562, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812630550, "dur":133, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812630684, "dur":120, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812630804, "dur":123, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812630927, "dur":122, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812631049, "dur":115, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812631164, "dur":128, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812631304, "dur":517, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Serialization\\Converters\\UnityObjectConverter.cs" }} -,{ "pid":12345, "tid":8, "ts":1689873812631292, "dur":625, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812631918, "dur":163, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812632081, "dur":120, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812632295, "dur":1627, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Cloning\\ISpecifiesCloner.cs" }} -,{ "pid":12345, "tid":8, "ts":1689873812632201, "dur":1784, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812633986, "dur":141, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812634140, "dur":1481, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812635621, "dur":97, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812635718, "dur":148, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812635866, "dur":457, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812636323, "dur":133, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812636456, "dur":61, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812636518, "dur":229, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812636747, "dur":101, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812636848, "dur":70, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812636918, "dur":251, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812637169, "dur":247, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812637416, "dur":385, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812637801, "dur":247, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812638060, "dur":280196, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":8, "ts":1689873812918261, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp.pdb" }} -,{ "pid":12345, "tid":8, "ts":1689873812918261, "dur":112, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb" }} -,{ "pid":12345, "tid":8, "ts":1689873812918392, "dur":1201, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.pdb" }} -,{ "pid":12345, "tid":8, "ts":1689873812919596, "dur":63621, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689873812615910, "dur":12295, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689873812628271, "dur":406, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689873812628677, "dur":700, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_2557678B45BA51B3.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1689873812629380, "dur":102, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1689873812629499, "dur":123, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.EditorToolbarModule.dll" }} -,{ "pid":12345, "tid":9, "ts":1689873812629490, "dur":1929, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll (+2 others)" }} -,{ "pid":12345, "tid":9, "ts":1689873812631419, "dur":244, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689873812631663, "dur":116, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll (+2 others)" }} -,{ "pid":12345, "tid":9, "ts":1689873812631797, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1689873812632287, "dur":619, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Net.Security.dll" }} -,{ "pid":12345, "tid":9, "ts":1689873812633667, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\System.Numerics.Vectors.dll" }} -,{ "pid":12345, "tid":9, "ts":1689873812631864, "dur":2225, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll (+2 others)" }} -,{ "pid":12345, "tid":9, "ts":1689873812634195, "dur":204, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll (+2 others)" }} -,{ "pid":12345, "tid":9, "ts":1689873812634441, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1689873812634514, "dur":858, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll (+2 others)" }} -,{ "pid":12345, "tid":9, "ts":1689873812635372, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689873812635504, "dur":107, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1689873812635638, "dur":1129, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll (+2 others)" }} -,{ "pid":12345, "tid":9, "ts":1689873812636816, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll.mvfrm" }} -,{ "pid":12345, "tid":9, "ts":1689873812636891, "dur":219, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll (+2 others)" }} -,{ "pid":12345, "tid":9, "ts":1689873812637153, "dur":308, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689873812637461, "dur":421, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689873812637882, "dur":170, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689873812638052, "dur":18304, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689873812656358, "dur":542, "ph":"X", "name": "CheckDagSignatures", "args": { "detail":"" }} -,{ "pid":12345, "tid":9, "ts":1689873812656900, "dur":326235, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812615925, "dur":12302, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812628274, "dur":403, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityConnectModule.dll" }} -,{ "pid":12345, "tid":10, "ts":1689873812628273, "dur":405, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_55AA3D446BBB024C.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1689873812628740, "dur":252, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":10, "ts":1689873812628993, "dur":152, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812629145, "dur":116, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812629367, "dur":2944, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Editor\\inspectors\\TimelineInspectorUtility.cs" }} -,{ "pid":12345, "tid":10, "ts":1689873812629262, "dur":3074, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812632375, "dur":618, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.textmeshpro@3.0.6\\Scripts\\Runtime\\TMP_TextElement_Legacy.cs" }} -,{ "pid":12345, "tid":10, "ts":1689873812632336, "dur":731, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812633068, "dur":116, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812633184, "dur":122, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812633337, "dur":560, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.ugui@1.0.0\\Editor\\UI\\SelfControllerEditor.cs" }} -,{ "pid":12345, "tid":10, "ts":1689873812633306, "dur":698, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812634005, "dur":121, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812634159, "dur":456, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812634617, "dur":97, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1689873812634733, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":10, "ts":1689873812634816, "dur":298, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":10, "ts":1689873812635138, "dur":110, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812635299, "dur":340, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812635699, "dur":174, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812635873, "dur":444, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812636318, "dur":148, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812636504, "dur":255, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812636759, "dur":70, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812636829, "dur":107, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812636936, "dur":253, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812637189, "dur":217, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812637406, "dur":52, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812637458, "dur":311, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812637782, "dur":300, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":10, "ts":1689873812638082, "dur":345075, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689873812615950, "dur":12370, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689873812628327, "dur":376, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEditor.Graphs.dll" }} -,{ "pid":12345, "tid":11, "ts":1689873812628322, "dur":382, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.Graphs.dll_66864D9C2025FC9D.mvfrm" }} -,{ "pid":12345, "tid":11, "ts":1689873812628741, "dur":727, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.UnityAdditionalFile.txt" }} -,{ "pid":12345, "tid":11, "ts":1689873812629468, "dur":3890, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.testtools.codecoverage@1.2.3\\Editor\\AssemblyInfo.cs" }} -,{ "pid":12345, "tid":11, "ts":1689873812629468, "dur":4088, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689873812633556, "dur":236, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689873812633792, "dur":127, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689873812633919, "dur":249, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689873812634168, "dur":273, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689873812634442, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm" }} -,{ "pid":12345, "tid":11, "ts":1689873812634530, "dur":406, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll (+2 others)" }} -,{ "pid":12345, "tid":11, "ts":1689873812634936, "dur":379, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689873812635340, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":11, "ts":1689873812635417, "dur":320, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":11, "ts":1689873812635847, "dur":495, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689873812636342, "dur":107, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689873812636449, "dur":70, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689873812636519, "dur":262, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689873812636819, "dur":118, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689873812636937, "dur":207, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689873812637144, "dur":304, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689873812637448, "dur":328, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689873812637790, "dur":289, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":11, "ts":1689873812638079, "dur":345082, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689873812615971, "dur":12484, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689873812628530, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.rsp" }} -,{ "pid":12345, "tid":12, "ts":1689873812628651, "dur":873, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.dll.mvfrm.rsp" }} -,{ "pid":12345, "tid":12, "ts":1689873812629525, "dur":3926, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\Transitions\\TriggerStateTransitionWidget.cs" }} -,{ "pid":12345, "tid":12, "ts":1689873812629525, "dur":4057, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689873812633582, "dur":85, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689873812633752, "dur":174, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689873812633926, "dur":223, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689873812634149, "dur":1453, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689873812635603, "dur":134, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689873812635737, "dur":120, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689873812635857, "dur":476, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689873812636333, "dur":118, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689873812636451, "dur":68, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689873812636519, "dur":266, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":12, "ts":1689873812636817, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1689873812636929, "dur":441, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1689873812637423, "dur":76, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":12, "ts":1689873812637507, "dur":254, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1689873812637848, "dur":172, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1689873812638114, "dur":176, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1689873812638807, "dur":278274, "ph":"X", "name": "Csc", "args": { "detail":"Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)" }} -,{ "pid":12345, "tid":12, "ts":1689873812918136, "dur":64289, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp.dll" }} -,{ "pid":12345, "tid":12, "ts":1689873812918135, "dur":64292, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll" }} -,{ "pid":12345, "tid":12, "ts":1689873812982463, "dur":605, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.dll" }} -,{ "pid":12345, "tid":13, "ts":1689873812615989, "dur":12557, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812628662, "dur":140, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.rsp" }} -,{ "pid":12345, "tid":13, "ts":1689873812628865, "dur":53, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.rsp" }} -,{ "pid":12345, "tid":13, "ts":1689873812628965, "dur":182, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812629148, "dur":131, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812629279, "dur":171, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812629450, "dur":1597, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.testtools.codecoverage@1.2.3\\Editor\\Logging\\ResultsLogger.cs" }} -,{ "pid":12345, "tid":13, "ts":1689873812629450, "dur":1710, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812631160, "dur":128, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812631288, "dur":138, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812631426, "dur":779, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812632292, "dur":1474, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Runtime\\Utilities\\TimelineUndo.cs" }} -,{ "pid":12345, "tid":13, "ts":1689873812632206, "dur":1660, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812633866, "dur":70, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812633936, "dur":244, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812634180, "dur":250, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812634430, "dur":1165, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812635596, "dur":168, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812635834, "dur":461, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812636295, "dur":151, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812636446, "dur":50, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812636496, "dur":258, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812636754, "dur":89, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812636843, "dur":70, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812636913, "dur":250, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812637163, "dur":275, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812637438, "dur":324, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812637801, "dur":271, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":13, "ts":1689873812638072, "dur":345273, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812616006, "dur":12681, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812628689, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.rsp" }} -,{ "pid":12345, "tid":14, "ts":1689873812628834, "dur":248, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812629090, "dur":194, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812629284, "dur":420, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812629704, "dur":133, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812629837, "dur":133, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812629970, "dur":126, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812630096, "dur":123, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812630219, "dur":120, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812630339, "dur":146, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812630485, "dur":128, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812630613, "dur":122, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812630755, "dur":1559, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Core\\Utilities\\AssetBundleUtility.cs" }} -,{ "pid":12345, "tid":14, "ts":1689873812630736, "dur":2089, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812632826, "dur":125, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812632951, "dur":181, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812633132, "dur":135, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812633268, "dur":122, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812633390, "dur":63, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812633453, "dur":133, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812633751, "dur":195, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812633946, "dur":212, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812634158, "dur":1395, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812635589, "dur":255, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812635844, "dur":428, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812636306, "dur":131, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812636437, "dur":72, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812636510, "dur":235, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812636745, "dur":104, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812636897, "dur":282, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812637179, "dur":299, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812637478, "dur":269, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812637803, "dur":259, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":14, "ts":1689873812638062, "dur":345292, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689873812616023, "dur":12743, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689873812628943, "dur":4865, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689873812633817, "dur":95, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689873812633955, "dur":193, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689873812634148, "dur":1414, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689873812635592, "dur":243, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689873812635835, "dur":451, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689873812636286, "dur":162, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689873812636493, "dur":269, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689873812636810, "dur":106, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689873812636916, "dur":239, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689873812637155, "dur":284, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689873812637439, "dur":314, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689873812637753, "dur":50, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689873812637803, "dur":260, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":15, "ts":1689873812638063, "dur":345289, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812616041, "dur":12799, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812628984, "dur":124, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812629109, "dur":121, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812629230, "dur":131, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812629361, "dur":480, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812629842, "dur":135, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812629977, "dur":131, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812630109, "dur":128, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812630238, "dur":129, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812630459, "dur":3300, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Flow\\Framework\\Events\\GUI\\OnSelect.cs" }} -,{ "pid":12345, "tid":16, "ts":1689873812630367, "dur":3417, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812633784, "dur":139, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812633923, "dur":236, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812634159, "dur":1403, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812635584, "dur":171, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812635755, "dur":88, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812635843, "dur":502, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812636345, "dur":96, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812636441, "dur":82, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812636524, "dur":205, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812636743, "dur":111, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812636854, "dur":62, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812636917, "dur":255, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812637172, "dur":233, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812637416, "dur":393, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812637809, "dur":239, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":16, "ts":1689873812638063, "dur":345145, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812616063, "dur":13095, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812629159, "dur":129, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812629288, "dur":122, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812629410, "dur":291, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812629701, "dur":144, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812629845, "dur":130, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812629975, "dur":163, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812630138, "dur":155, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812630293, "dur":121, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812630415, "dur":124, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812630539, "dur":114, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812630653, "dur":109, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812630763, "dur":119, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812630882, "dur":113, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812630995, "dur":311, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812631307, "dur":466, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812631775, "dur":175, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812631950, "dur":172, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812632217, "dur":1546, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Dependencies\\FullSerializer\\Converters\\fsReflectedConverter.cs" }} -,{ "pid":12345, "tid":17, "ts":1689873812632123, "dur":1756, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812633879, "dur":53, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812633932, "dur":216, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812634148, "dur":1464, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812635612, "dur":115, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812635727, "dur":135, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812635862, "dur":468, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812636330, "dur":132, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812636510, "dur":246, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812636756, "dur":82, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812636838, "dur":89, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812636927, "dur":215, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812637159, "dur":278, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812637438, "dur":353, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812637791, "dur":281, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":17, "ts":1689873812638072, "dur":345093, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812615791, "dur":11845, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812627679, "dur":168, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Tools\\ScriptUpdater\\ApiUpdater.MovedFromExtractor.exe" }} -,{ "pid":12345, "tid":18, "ts":1689873812627638, "dur":210, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_09A1B70C885E7868.mvfrm" }} -,{ "pid":12345, "tid":18, "ts":1689873812627849, "dur":362, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812628212, "dur":222, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_09A1B70C885E7868.mvfrm" }} -,{ "pid":12345, "tid":18, "ts":1689873812628677, "dur":787, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.rsp" }} -,{ "pid":12345, "tid":18, "ts":1689873812629464, "dur":2514, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.testtools.codecoverage@1.2.3\\Editor\\CoverageStats\\ICoverageStatsProvider.cs" }} -,{ "pid":12345, "tid":18, "ts":1689873812629464, "dur":3288, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812632753, "dur":154, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812632986, "dur":876, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Editor\\PlasticSCM\\Views\\PendingChanges\\PendingChangesTab_Operations.cs" }} -,{ "pid":12345, "tid":18, "ts":1689873812632908, "dur":1041, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812633950, "dur":188, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812634139, "dur":1491, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812635630, "dur":79, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812635709, "dur":162, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812635871, "dur":450, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812636321, "dur":144, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812636513, "dur":237, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812636750, "dur":90, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812636840, "dur":86, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812636926, "dur":240, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812637166, "dur":259, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812637426, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":18, "ts":1689873812637509, "dur":211, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":18, "ts":1689873812637756, "dur":63, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812637819, "dur":234, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812638053, "dur":18851, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":18, "ts":1689873812656905, "dur":326227, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812616121, "dur":13353, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812629481, "dur":368, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812629850, "dur":152, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812630002, "dur":114, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812630116, "dur":118, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812630234, "dur":125, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812630359, "dur":125, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812630484, "dur":129, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812630613, "dur":126, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812630739, "dur":117, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812630856, "dur":113, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812630969, "dur":113, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812631083, "dur":117, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812631201, "dur":157, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812631359, "dur":481, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812631870, "dur":121, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812631991, "dur":127, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812632118, "dur":146, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812632294, "dur":1540, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Runtime\\Events\\MarkerTrack.cs" }} -,{ "pid":12345, "tid":19, "ts":1689873812632264, "dur":1645, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812633926, "dur":232, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812634158, "dur":1435, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812635593, "dur":153, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812635746, "dur":106, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812635853, "dur":483, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812636336, "dur":79, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812636430, "dur":95, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812636525, "dur":202, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812636740, "dur":117, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812636857, "dur":76, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812636934, "dur":228, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812637162, "dur":264, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812637426, "dur":374, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812637800, "dur":269, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":19, "ts":1689873812638069, "dur":345124, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689873812616135, "dur":13399, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689873812629537, "dur":2782, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\States\\StateEditor.cs" }} -,{ "pid":12345, "tid":20, "ts":1689873812632375, "dur":524, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\States\\FlowStateEditor.cs" }} -,{ "pid":12345, "tid":20, "ts":1689873812629537, "dur":3444, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689873812632981, "dur":171, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689873812633153, "dur":160, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689873812633414, "dur":537, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.ugui@1.0.0\\Runtime\\UI\\Core\\SetPropertyUtility.cs" }} -,{ "pid":12345, "tid":20, "ts":1689873812633313, "dur":642, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689873812633955, "dur":226, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689873812634181, "dur":250, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689873812634444, "dur":161, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll.mvfrm" }} -,{ "pid":12345, "tid":20, "ts":1689873812634605, "dur":1233, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689873812635845, "dur":378, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll (+2 others)" }} -,{ "pid":12345, "tid":20, "ts":1689873812636292, "dur":82, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll.mvfrm" }} -,{ "pid":12345, "tid":20, "ts":1689873812636386, "dur":472, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll (+2 others)" }} -,{ "pid":12345, "tid":20, "ts":1689873812636906, "dur":268, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689873812637174, "dur":235, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689873812637409, "dur":383, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689873812637792, "dur":290, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":20, "ts":1689873812638082, "dur":345235, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} -,{ "pid":12345, "tid":0, "ts":1689873812986084, "dur":1263, "ph":"X", "name": "ProfilerWriteOutput" } -,{ "pid": 23580, "tid": 40, "ts": 1689873813001229, "dur": 1824, "ph": "X", "name": "Wait for external events", "args": {"First to finish": "backend1.traceevents"} }, -{ "pid": 23580, "tid": 40, "ts": 1689873813003086, "dur": 1553, "ph": "X", "name": "backend1.traceevents", "args": {} }, -{ "pid": 23580, "tid": 40, "ts": 1689873812998205, "dur": 7009, "ph": "X", "name": "Write chrome-trace events", "args": {} }, +,{ "pid":12345, "tid":0, "ts":1689907455388681, "dur":63, "ph":"X", "name": "IPC_Client_InitializeAndConnectToParent", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689907455388770, "dur":1338, "ph":"X", "name": "DriverInitData", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689907455390116, "dur":222, "ph":"X", "name": "RemoveStaleOutputs", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689907455390394, "dur":457, "ph":"X", "name": "BuildQueueInit", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689907455391634, "dur":119, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ImageConversionModule.dll_709CCE00E64FBEBE.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1689907455392159, "dur":1010, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TerrainPhysicsModule.dll_004BBCEE2ACB5C09.mvfrm" }} +,{ "pid":12345, "tid":0, "ts":1689907455394493, "dur":944, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.UnityAdditionalFile.txt" }} +,{ "pid":12345, "tid":0, "ts":1689907455395441, "dur":103, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.rsp" }} +,{ "pid":12345, "tid":0, "ts":1689907455395587, "dur":53, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":0, "ts":1689907455395844, "dur":51, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":0, "ts":1689907455398144, "dur":1846, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll.mvfrm.rsp" }} +,{ "pid":12345, "tid":0, "ts":1689907455402359, "dur":781, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualScripting.Shared.Editor.pdb" }} +,{ "pid":12345, "tid":0, "ts":1689907455390874, "dur":12467, "ph":"X", "name": "EnqueueRequestedNodes", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689907455403348, "dur":248637, "ph":"X", "name": "WaitForBuildFinished", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689907455651986, "dur":289, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689907455652301, "dur":54, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689907455652416, "dur":91, "ph":"X", "name": "JoinBuildThread", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689907455652590, "dur":666, "ph":"X", "name": "Tundra", "args": { "detail":"Write AllBuiltNodes" }} +,{ "pid":12345, "tid":1, "ts":1689907455390912, "dur":12458, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455403497, "dur":409, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestModule.dll_823BD5AAF144593D.mvfrm" }} +,{ "pid":12345, "tid":1, "ts":1689907455404443, "dur":144, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455404587, "dur":116, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455404703, "dur":110, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455404813, "dur":228, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455405041, "dur":136, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455405177, "dur":131, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455405308, "dur":114, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455405422, "dur":109, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455405531, "dur":123, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455405654, "dur":121, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455405775, "dur":107, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455405883, "dur":105, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455405989, "dur":118, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455406107, "dur":114, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455406221, "dur":124, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455406345, "dur":116, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455406461, "dur":182, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455406643, "dur":147, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455406790, "dur":131, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455406921, "dur":122, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455407118, "dur":847, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Editor\\PlasticSCM\\Views\\IncomingChanges\\Gluon\\IncomingChangesTreeHeaderState.cs" }} +,{ "pid":12345, "tid":1, "ts":1689907455407043, "dur":953, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455407996, "dur":123, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455408119, "dur":108, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455408247, "dur":169, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455408417, "dur":110, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455408527, "dur":106, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455408633, "dur":108, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455408742, "dur":157, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455408936, "dur":509, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455409445, "dur":471, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455409916, "dur":1064, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455410982, "dur":192, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.EditorCoroutines.Editor.dll" }} +,{ "pid":12345, "tid":1, "ts":1689907455410981, "dur":193, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.EditorCoroutines.Editor.dll" }} +,{ "pid":12345, "tid":1, "ts":1689907455411180, "dur":255, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455411462, "dur":125, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455411587, "dur":67, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455411654, "dur":453, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455412107, "dur":267, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455412374, "dur":409, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455412783, "dur":135, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455412918, "dur":168, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455413087, "dur":280, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455413367, "dur":307, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455413693, "dur":282, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":1, "ts":1689907455413975, "dur":238015, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455390881, "dur":12483, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455403380, "dur":133, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.VFXModule.dll" }} +,{ "pid":12345, "tid":2, "ts":1689907455403367, "dur":147, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_86360A61E634AB35.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1689907455403795, "dur":1126, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteMaskModule.dll_CDD7AA2F334AE808.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1689907455404923, "dur":1150, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.ide.rider@3.0.21\\Rider\\Editor\\LoggingLevel.cs" }} +,{ "pid":12345, "tid":2, "ts":1689907455404923, "dur":1417, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455406340, "dur":184, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455406524, "dur":185, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455406709, "dur":178, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455406888, "dur":161, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455407115, "dur":846, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Editor\\PlasticSCM\\Views\\IncomingChanges\\Developer\\IncomingChangesTab.cs" }} +,{ "pid":12345, "tid":2, "ts":1689907455407049, "dur":1016, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455408066, "dur":159, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455408225, "dur":262, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455408488, "dur":122, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455408610, "dur":514, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455409124, "dur":297, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455409421, "dur":495, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455409916, "dur":291, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455410208, "dur":79, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1689907455410297, "dur":306, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1689907455410632, "dur":67, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1689907455410704, "dur":299, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":2, "ts":1689907455411004, "dur":536, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Timeline.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":2, "ts":1689907455411633, "dur":447, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455412082, "dur":195, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455412287, "dur":109, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455412396, "dur":435, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455412831, "dur":55, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455412899, "dur":228, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455413127, "dur":206, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455413345, "dur":383, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455413728, "dur":217, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455413945, "dur":13242, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455427189, "dur":518, "ph":"X", "name": "CheckDagSignatures", "args": { "detail":"" }} +,{ "pid":12345, "tid":2, "ts":1689907455427708, "dur":224255, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455390916, "dur":12479, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455403488, "dur":387, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.SceneViewModule.dll_F0ECB9E16DE6E079.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1689907455403893, "dur":708, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityAnalyticsModule.dll" }} +,{ "pid":12345, "tid":3, "ts":1689907455403892, "dur":711, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsModule.dll_1F7084E4BDAFB378.mvfrm" }} +,{ "pid":12345, "tid":3, "ts":1689907455404613, "dur":112, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455404725, "dur":120, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455405039, "dur":1567, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.textmeshpro@3.0.6\\Scripts\\Editor\\GlyphInfoDrawer.cs" }} +,{ "pid":12345, "tid":3, "ts":1689907455404845, "dur":1841, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455406686, "dur":178, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455406865, "dur":165, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455407117, "dur":895, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Editor\\PlasticSCM\\Views\\PendingChanges\\PendingChangesTreeView.cs" }} +,{ "pid":12345, "tid":3, "ts":1689907455407030, "dur":1079, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455408110, "dur":268, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455408378, "dur":100, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455408478, "dur":108, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455408586, "dur":479, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455409065, "dur":385, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455409450, "dur":437, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455409887, "dur":1094, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455410982, "dur":227, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.EditorCoroutines.Editor.pdb" }} +,{ "pid":12345, "tid":3, "ts":1689907455410981, "dur":228, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.EditorCoroutines.Editor.pdb" }} +,{ "pid":12345, "tid":3, "ts":1689907455411221, "dur":283, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455411505, "dur":110, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455411635, "dur":435, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455412070, "dur":370, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455412440, "dur":363, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455412803, "dur":143, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455412946, "dur":157, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455413103, "dur":282, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455413385, "dur":332, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455413717, "dur":276, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":3, "ts":1689907455413993, "dur":237982, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455390953, "dur":12563, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455403786, "dur":151, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SharedInternalsModule.dll_F4AE0CD65D7DBA0E.mvfrm" }} +,{ "pid":12345, "tid":4, "ts":1689907455404149, "dur":2400, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455406555, "dur":157, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455406713, "dur":154, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455406867, "dur":118, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455406986, "dur":126, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455407112, "dur":845, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Editor\\PlasticSCM\\VCSPlugin.cs" }} +,{ "pid":12345, "tid":4, "ts":1689907455407112, "dur":949, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455408061, "dur":114, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455408175, "dur":309, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455408484, "dur":119, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455408603, "dur":615, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455409219, "dur":182, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455409402, "dur":536, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455409938, "dur":188, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455410126, "dur":893, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455411019, "dur":212, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455411231, "dur":268, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455411499, "dur":141, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455411640, "dur":410, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455412050, "dur":400, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455412450, "dur":339, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455412789, "dur":166, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455412955, "dur":138, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455413093, "dur":301, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455413394, "dur":315, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455413709, "dur":286, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":4, "ts":1689907455413995, "dur":237977, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689907455391210, "dur":13724, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689907455404934, "dur":3755, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.State\\Transitions\\TriggerStateTransitionWidget.cs" }} +,{ "pid":12345, "tid":5, "ts":1689907455404934, "dur":3861, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689907455408795, "dur":224, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689907455409019, "dur":443, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689907455409462, "dur":382, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689907455409898, "dur":826, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689907455410966, "dur":550, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.ide.visualstudio@2.0.18\\Editor\\Messaging\\ExceptionEventArgs.cs" }} +,{ "pid":12345, "tid":5, "ts":1689907455410725, "dur":865, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":5, "ts":1689907455411653, "dur":377, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689907455412030, "dur":429, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689907455412459, "dur":311, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689907455412770, "dur":195, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689907455412965, "dur":110, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689907455413075, "dur":323, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689907455413398, "dur":293, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689907455413691, "dur":311, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":5, "ts":1689907455414002, "dur":237965, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689907455390880, "dur":12475, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689907455403364, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestWWWModule.dll_271602979908EEDE.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1689907455403557, "dur":243, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEditor.PresetsUIModule.dll" }} +,{ "pid":12345, "tid":6, "ts":1689907455403556, "dur":246, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.PresetsUIModule.dll_6DA30FBB7B1C6B70.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1689907455403858, "dur":2030, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.TilemapModule.dll" }} +,{ "pid":12345, "tid":6, "ts":1689907455403858, "dur":2033, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.TilemapModule.dll_1F902F816DFAB7EB.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1689907455405908, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1689907455406182, "dur":2773, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netfx\\System.Web.dll" }} +,{ "pid":12345, "tid":6, "ts":1689907455405986, "dur":3377, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.TestRunner.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1689907455409461, "dur":336, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.TestRunner.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1689907455409902, "dur":197, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEditor.UI.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1689907455410136, "dur":71, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1689907455410219, "dur":811, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEditor.Graphs.dll" }} +,{ "pid":12345, "tid":6, "ts":1689907455410218, "dur":1634, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1689907455411905, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1689907455412082, "dur":98, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\NetStandard\\compat\\2.1.0\\shims\\netstandard\\System.Diagnostics.StackTrace.dll" }} +,{ "pid":12345, "tid":6, "ts":1689907455411972, "dur":741, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1689907455412758, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll.mvfrm" }} +,{ "pid":12345, "tid":6, "ts":1689907455412817, "dur":213, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.dll (+2 others)" }} +,{ "pid":12345, "tid":6, "ts":1689907455413070, "dur":334, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689907455413404, "dur":270, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689907455413681, "dur":323, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":6, "ts":1689907455414004, "dur":237962, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455390928, "dur":12493, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455403493, "dur":1009, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityTestProtocolModule.dll_5C7E93297DF7ED6C.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1689907455404504, "dur":161, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455404666, "dur":114, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455404781, "dur":229, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455405010, "dur":118, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455405128, "dur":118, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455405246, "dur":127, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455405373, "dur":116, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455405489, "dur":116, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455405605, "dur":133, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455405810, "dur":3234, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Core\\Windows\\WebWindow.cs" }} +,{ "pid":12345, "tid":7, "ts":1689907455405738, "dur":3363, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455409101, "dur":329, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455409431, "dur":475, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455409907, "dur":332, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455410240, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1689907455410968, "dur":548, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Editor\\PlasticSCM\\Views\\Diff\\DiffTreeViewMenu.cs" }} +,{ "pid":12345, "tid":7, "ts":1689907455411568, "dur":91, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Editor\\PlasticSCM\\Views\\PendingChanges\\ChangeCategoryTreeViewItem.cs" }} +,{ "pid":12345, "tid":7, "ts":1689907455410351, "dur":1377, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.PlasticSCM.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":7, "ts":1689907455411772, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":7, "ts":1689907455411834, "dur":223, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.CollabProxy.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":7, "ts":1689907455412077, "dur":87, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455412168, "dur":240, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455412409, "dur":421, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455412830, "dur":76, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455412906, "dur":215, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455413121, "dur":211, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455413348, "dur":379, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455413727, "dur":246, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":7, "ts":1689907455413973, "dur":238008, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689907455390968, "dur":12604, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689907455403895, "dur":1511, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.UnityConnectModule.dll" }} +,{ "pid":12345, "tid":8, "ts":1689907455403894, "dur":1514, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityConnectModule.dll_55AA3D446BBB024C.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1689907455405420, "dur":106, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689907455405526, "dur":118, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689907455405644, "dur":117, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689907455405761, "dur":112, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689907455405879, "dur":3192, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Core\\Plugins\\ProjectSettingAttribute.cs" }} +,{ "pid":12345, "tid":8, "ts":1689907455405873, "dur":3433, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689907455409306, "dur":94, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689907455409413, "dur":512, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689907455409925, "dur":200, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689907455410138, "dur":72, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1689907455410210, "dur":812, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689907455411025, "dur":267, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Model.dll (+2 others)" }} +,{ "pid":12345, "tid":8, "ts":1689907455411292, "dur":558, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689907455411885, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1689907455412082, "dur":93, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Reflection.Emit.ILGeneration.dll" }} +,{ "pid":12345, "tid":8, "ts":1689907455411948, "dur":354, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":8, "ts":1689907455412351, "dur":489, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689907455412896, "dur":229, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689907455413125, "dur":208, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689907455413342, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":8, "ts":1689907455413409, "dur":207, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.SettingsProvider.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":8, "ts":1689907455413655, "dur":82, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689907455413737, "dur":224, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":8, "ts":1689907455413961, "dur":238023, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689907455390988, "dur":12649, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689907455403787, "dur":1117, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.RuntimeInitializeOnLoadManagerInitializerModule.dll_F21F01A360D39C6F.mvfrm" }} +,{ "pid":12345, "tid":9, "ts":1689907455404906, "dur":3997, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.testtools.codecoverage@1.2.3\\Editor\\CoverageStats\\ICoverageStatsProvider.cs" }} +,{ "pid":12345, "tid":9, "ts":1689907455404906, "dur":4125, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689907455409031, "dur":428, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689907455409459, "dur":409, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689907455409869, "dur":1123, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689907455411011, "dur":577, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689907455411588, "dur":81, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689907455411669, "dur":307, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689907455411991, "dur":111, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689907455412102, "dur":318, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689907455412421, "dur":401, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689907455412822, "dur":93, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689907455412915, "dur":200, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689907455413116, "dur":238, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689907455413354, "dur":372, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689907455413726, "dur":257, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":9, "ts":1689907455413983, "dur":237998, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455391005, "dur":12801, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455403887, "dur":55, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455404046, "dur":2142, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455406195, "dur":136, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455406331, "dur":119, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455406543, "dur":2526, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Core\\Reflection\\Optimization\\ReflectionFieldAccessor.cs" }} +,{ "pid":12345, "tid":10, "ts":1689907455406451, "dur":2632, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455409083, "dur":359, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455409442, "dur":448, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455409890, "dur":1089, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455410980, "dur":610, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.TextMeshPro.dll" }} +,{ "pid":12345, "tid":10, "ts":1689907455410979, "dur":611, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.dll" }} +,{ "pid":12345, "tid":10, "ts":1689907455411608, "dur":51, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455411659, "dur":361, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455412020, "dur":441, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455412461, "dur":282, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455412755, "dur":219, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455412974, "dur":81, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455413065, "dur":352, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455413417, "dur":229, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455413658, "dur":78, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455413736, "dur":207, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455413961, "dur":194954, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":10, "ts":1689907455608927, "dur":111, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp.pdb" }} +,{ "pid":12345, "tid":10, "ts":1689907455608922, "dur":117, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb" }} +,{ "pid":12345, "tid":10, "ts":1689907455609058, "dur":1388, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.pdb" }} +,{ "pid":12345, "tid":10, "ts":1689907455610449, "dur":41537, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455391027, "dur":12792, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455403892, "dur":698, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Tools\\ScriptUpdater\\ApiUpdater.MovedFromExtractor.exe" }} +,{ "pid":12345, "tid":11, "ts":1689907455403886, "dur":705, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityAnalyticsCommonModule.dll_2557678B45BA51B3.mvfrm" }} +,{ "pid":12345, "tid":11, "ts":1689907455404604, "dur":112, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455404716, "dur":102, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455404818, "dur":283, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455405101, "dur":125, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455405227, "dur":122, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455405349, "dur":150, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455405499, "dur":119, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455405619, "dur":120, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455405739, "dur":138, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455405877, "dur":145, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455406022, "dur":115, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455406137, "dur":135, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455406272, "dur":130, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455406402, "dur":119, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455406522, "dur":133, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455406655, "dur":124, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455406779, "dur":126, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455406905, "dur":124, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455407116, "dur":842, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Editor\\PlasticSCM\\WebApi\\CurrentUserAdminCheckResponse.cs" }} +,{ "pid":12345, "tid":11, "ts":1689907455407029, "dur":955, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455407984, "dur":108, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455408092, "dur":116, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455408469, "dur":626, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.ugui@1.0.0\\Runtime\\UI\\Core\\ScrollRect.cs" }} +,{ "pid":12345, "tid":11, "ts":1689907455408208, "dur":889, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455409097, "dur":343, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455409440, "dur":457, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455409897, "dur":1081, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455410979, "dur":554, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Timeline.dll" }} +,{ "pid":12345, "tid":11, "ts":1689907455410978, "dur":556, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Timeline.dll" }} +,{ "pid":12345, "tid":11, "ts":1689907455411572, "dur":88, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\Bee\\artifacts\\1900b0aE.dag\\Unity.Timeline.Editor.dll" }} +,{ "pid":12345, "tid":11, "ts":1689907455411571, "dur":89, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Timeline.Editor.dll" }} +,{ "pid":12345, "tid":11, "ts":1689907455411677, "dur":160, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455411837, "dur":255, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455412092, "dur":348, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455412440, "dur":371, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455412811, "dur":134, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455412945, "dur":161, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455413106, "dur":272, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455413379, "dur":338, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455413718, "dur":271, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":11, "ts":1689907455413989, "dur":237987, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455391040, "dur":12863, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455403911, "dur":1924, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\PlaybackEngines\\WindowsStandaloneSupport\\UnityEditor.WindowsStandalone.Extensions.dll" }} +,{ "pid":12345, "tid":12, "ts":1689907455403905, "dur":1932, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.WindowsStandalone.Extensions.dll_5EE56773EE903DE5.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1689907455405849, "dur":106, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455405955, "dur":106, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455406061, "dur":116, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455406177, "dur":108, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455406285, "dur":115, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455406400, "dur":130, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455406530, "dur":127, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455406657, "dur":129, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455406786, "dur":123, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455406951, "dur":2109, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.textmeshpro@3.0.6\\Scripts\\Runtime\\TMP_Text.cs" }} +,{ "pid":12345, "tid":12, "ts":1689907455406909, "dur":2212, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455409121, "dur":302, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455409423, "dur":488, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455409911, "dur":319, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455410230, "dur":60, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1689907455410300, "dur":264, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Settings.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":12, "ts":1689907455410614, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":12, "ts":1689907455410687, "dur":244, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.EditorCoroutines.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":12, "ts":1689907455410966, "dur":432, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\Managed\\UnityEngine\\UnityEngine.AccessibilityModule.dll" }} +,{ "pid":12345, "tid":12, "ts":1689907455411567, "dur":83, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Threading.Timer.dll" }} +,{ "pid":12345, "tid":12, "ts":1689907455410950, "dur":786, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":12, "ts":1689907455411817, "dur":284, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455412101, "dur":329, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455412430, "dur":391, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455412821, "dur":105, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455412926, "dur":186, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455413112, "dur":252, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455413364, "dur":360, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455413724, "dur":261, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":12, "ts":1689907455413985, "dur":237995, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455391064, "dur":12854, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455403922, "dur":240, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455404424, "dur":120, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455404545, "dur":119, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455404665, "dur":109, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455404774, "dur":242, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455405016, "dur":134, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455405150, "dur":120, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455405270, "dur":171, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455405441, "dur":109, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455405550, "dur":115, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455405665, "dur":108, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455405811, "dur":2645, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Editor\\VisualScripting.Core\\Utilities\\VSUsageUtility.cs" }} +,{ "pid":12345, "tid":13, "ts":1689907455405774, "dur":2794, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455408568, "dur":255, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455408935, "dur":519, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455409455, "dur":452, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455409907, "dur":1079, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455411006, "dur":192, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455411198, "dur":199, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455411406, "dur":289, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.Editor.pdb" }} +,{ "pid":12345, "tid":13, "ts":1689907455411695, "dur":401, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455412096, "dur":355, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455412451, "dur":314, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455412765, "dur":171, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455412936, "dur":141, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455413077, "dur":309, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455413386, "dur":279, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455413702, "dur":264, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":13, "ts":1689907455413966, "dur":238028, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455391079, "dur":12842, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455403926, "dur":1902, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455405834, "dur":117, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455405952, "dur":83, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll.mvfrm" }} +,{ "pid":12345, "tid":14, "ts":1689907455407113, "dur":885, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.ugui@1.0.0\\Runtime\\EventSystem\\InputModules\\PointerInputModule.cs" }} +,{ "pid":12345, "tid":14, "ts":1689907455408267, "dur":113, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.ugui@1.0.0\\Runtime\\UI\\Core\\Layout\\ContentSizeFitter.cs" }} +,{ "pid":12345, "tid":14, "ts":1689907455408463, "dur":195, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\PackageCache\\com.unity.ugui@1.0.0\\Runtime\\UI\\Core\\ScrollRect.cs" }} +,{ "pid":12345, "tid":14, "ts":1689907455406045, "dur":2635, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/UnityEngine.UI.dll (+2 others)" }} +,{ "pid":12345, "tid":14, "ts":1689907455408734, "dur":236, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455408971, "dur":464, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455409435, "dur":491, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455409926, "dur":1050, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455411028, "dur":161, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455411189, "dur":234, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455411423, "dur":67, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455411490, "dur":87, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455411644, "dur":468, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455412112, "dur":221, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455412364, "dur":429, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455412793, "dur":116, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455412909, "dur":181, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455413090, "dur":268, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455413358, "dur":342, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455413700, "dur":270, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":14, "ts":1689907455413970, "dur":238020, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455391096, "dur":12832, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455404426, "dur":133, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455404560, "dur":486, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455405047, "dur":141, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455405188, "dur":128, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455405392, "dur":3225, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.visualscripting@1.8.0\\Runtime\\VisualScripting.Flow\\Framework\\Variables\\Obsolete\\SetVariableUnit.cs" }} +,{ "pid":12345, "tid":15, "ts":1689907455405316, "dur":3335, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455408652, "dur":120, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455408772, "dur":274, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455409047, "dur":416, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455409463, "dur":376, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455409877, "dur":1112, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455411009, "dur":231, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455411240, "dur":189, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455411429, "dur":64, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455411493, "dur":96, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455411639, "dur":422, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455412061, "dur":388, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455412450, "dur":352, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455412802, "dur":152, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455412954, "dur":142, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455413096, "dur":292, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455413389, "dur":325, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455413715, "dur":279, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":15, "ts":1689907455413994, "dur":237980, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689907455391115, "dur":12939, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689907455404445, "dur":133, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689907455404589, "dur":4475, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.timeline@1.7.4\\Editor\\Utilities\\StyleManager.cs" }} +,{ "pid":12345, "tid":16, "ts":1689907455404578, "dur":4624, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689907455409202, "dur":209, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689907455409412, "dur":518, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689907455409930, "dur":195, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689907455410140, "dur":116, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll.mvfrm" }} +,{ "pid":12345, "tid":16, "ts":1689907455410265, "dur":298, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.dll (+2 others)" }} +,{ "pid":12345, "tid":16, "ts":1689907455410593, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":16, "ts":1689907455410664, "dur":297, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TextMeshPro.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":16, "ts":1689907455410961, "dur":406, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689907455411379, "dur":307, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.TextMeshPro.Editor.ref.dll_159E061D77A10B86.mvfrm" }} +,{ "pid":12345, "tid":16, "ts":1689907455411687, "dur":140, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689907455411827, "dur":265, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689907455412093, "dur":337, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689907455412431, "dur":381, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689907455412812, "dur":123, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689907455412935, "dur":172, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689907455413107, "dur":269, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689907455413376, "dur":343, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689907455413719, "dur":266, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":16, "ts":1689907455413985, "dur":237993, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455391139, "dur":13755, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455404897, "dur":2069, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.testtools.codecoverage@1.2.3\\Editor\\Logging\\ResultsLogger.cs" }} +,{ "pid":12345, "tid":17, "ts":1689907455404897, "dur":2189, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455407114, "dur":855, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Editor\\PlasticSCM\\Views\\Diff\\GetClientDiffInfos.cs" }} +,{ "pid":12345, "tid":17, "ts":1689907455407086, "dur":961, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455408047, "dur":116, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455408163, "dur":228, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455408391, "dur":109, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455408500, "dur":106, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455408606, "dur":645, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455409251, "dur":150, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455409416, "dur":504, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455409920, "dur":216, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455410137, "dur":916, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll.mvfrm" }} +,{ "pid":12345, "tid":17, "ts":1689907455411061, "dur":254, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.TestTools.CodeCoverage.Editor.OpenCover.Mono.Reflection.dll (+2 others)" }} +,{ "pid":12345, "tid":17, "ts":1689907455411379, "dur":246, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.Editor.dll" }} +,{ "pid":12345, "tid":17, "ts":1689907455411663, "dur":347, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455412010, "dur":459, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455412469, "dur":275, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455412761, "dur":212, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455412973, "dur":83, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455413068, "dur":348, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455413416, "dur":229, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455413663, "dur":70, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455413733, "dur":211, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455413956, "dur":13756, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":17, "ts":1689907455427713, "dur":224280, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689907455391156, "dur":13751, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689907455404909, "dur":3993, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.testtools.codecoverage@1.2.3\\Editor\\AssemblyInfo.cs" }} +,{ "pid":12345, "tid":18, "ts":1689907455404909, "dur":4149, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689907455409058, "dur":394, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689907455409452, "dur":429, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689907455409881, "dur":1107, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689907455411014, "dur":563, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689907455411578, "dur":95, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689907455411673, "dur":173, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":18, "ts":1689907455411932, "dur":242, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":18, "ts":1689907455412182, "dur":674, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Core.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":18, "ts":1689907455412902, "dur":52, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":18, "ts":1689907455412961, "dur":342, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Flow.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":18, "ts":1689907455413342, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":18, "ts":1689907455413404, "dur":257, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.State.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":18, "ts":1689907455413746, "dur":171, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.VisualScripting.Shared.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":18, "ts":1689907455414007, "dur":181, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)" }} +,{ "pid":12345, "tid":18, "ts":1689907455414700, "dur":193176, "ph":"X", "name": "Csc", "args": { "detail":"Library/Bee/artifacts/1900b0aE.dag/Assembly-CSharp.dll (+2 others)" }} +,{ "pid":12345, "tid":18, "ts":1689907455608891, "dur":42363, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library\\Bee\\artifacts\\1900b0aE.dag\\Assembly-CSharp.dll" }} +,{ "pid":12345, "tid":18, "ts":1689907455608890, "dur":42366, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll" }} +,{ "pid":12345, "tid":18, "ts":1689907455651290, "dur":618, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.dll" }} +,{ "pid":12345, "tid":19, "ts":1689907455391172, "dur":13747, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455404921, "dur":306, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455405228, "dur":184, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455405412, "dur":240, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455405652, "dur":234, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455405887, "dur":392, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455406280, "dur":179, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455406459, "dur":292, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455406751, "dur":189, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455406940, "dur":155, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455407113, "dur":1999, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.collab-proxy@2.0.4\\Editor\\PlasticSCM\\Views\\ConfirmContinueWithPendingChangesDialog.cs" }} +,{ "pid":12345, "tid":19, "ts":1689907455407095, "dur":2170, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455409265, "dur":168, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455409433, "dur":467, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455409900, "dur":561, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455410462, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":19, "ts":1689907455410568, "dur":119, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455410687, "dur":79, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":19, "ts":1689907455411000, "dur":97, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.IO.Compression.ZipFile.dll" }} +,{ "pid":12345, "tid":19, "ts":1689907455410767, "dur":581, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":19, "ts":1689907455411377, "dur":55, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Performance.Profile-Analyzer.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":19, "ts":1689907455411479, "dur":167, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455411646, "dur":394, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455412040, "dur":419, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455412459, "dur":320, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455412779, "dur":184, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455412963, "dur":121, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455413084, "dur":311, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455413395, "dur":308, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455413703, "dur":296, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":19, "ts":1689907455413999, "dur":237969, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455391191, "dur":13736, "ph":"X", "name": "FirstLock", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455404929, "dur":3690, "ph":"X", "name": "File", "args": { "detail":"Library\\PackageCache\\com.unity.performance.profile-analyzer@1.2.2\\Editor\\ProfileAnalysis.cs" }} +,{ "pid":12345, "tid":20, "ts":1689907455404929, "dur":3794, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455408740, "dur":260, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455409001, "dur":425, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455409426, "dur":509, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455409935, "dur":561, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455410497, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VSCode.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":20, "ts":1689907455410573, "dur":55, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.VisualStudio.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":20, "ts":1689907455410638, "dur":93, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractorCombine Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll.mvfrm" }} +,{ "pid":12345, "tid":20, "ts":1689907455410966, "dur":73, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"D:\\Duong-Desktop\\Unity\\Hub\\Editor\\2022.3.0f1\\Editor\\Data\\UnityReferenceAssemblies\\unity-4.8-api\\Facades\\System.Xml.XmlDocument.dll" }} +,{ "pid":12345, "tid":20, "ts":1689907455410739, "dur":369, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/1900b0aE.dag/Unity.Rider.Editor.dll (+2 others)" }} +,{ "pid":12345, "tid":20, "ts":1689907455411162, "dur":310, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455411472, "dur":108, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455411580, "dur":83, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455411664, "dur":443, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455412107, "dur":335, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455412442, "dur":332, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455412774, "dur":153, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455412927, "dur":153, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455413080, "dur":296, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455413376, "dur":296, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455413690, "dur":290, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":20, "ts":1689907455413980, "dur":237966, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }} +,{ "pid":12345, "tid":0, "ts":1689907455655062, "dur":1255, "ph":"X", "name": "ProfilerWriteOutput" } +,{ "pid": 2180, "tid": 1233, "ts": 1689907455668443, "dur": 2560, "ph": "X", "name": "Wait for external events", "args": {"First to finish": "backend1.traceevents"} }, +{ "pid": 2180, "tid": 1233, "ts": 1689907455671043, "dur": 1663, "ph": "X", "name": "backend1.traceevents", "args": {} }, +{ "pid": 2180, "tid": 1233, "ts": 1689907455665473, "dur": 7884, "ph": "X", "name": "Write chrome-trace events", "args": {} }, {} ] diff --git a/LMC/Library/Bee/tundra.digestcache b/LMC/Library/Bee/tundra.digestcache index 3470a971..2004c01f 100644 Binary files a/LMC/Library/Bee/tundra.digestcache and b/LMC/Library/Bee/tundra.digestcache differ diff --git a/LMC/Library/InspectorExpandedItems.asset b/LMC/Library/InspectorExpandedItems.asset index a0a624c0..f93a8f4d 100644 Binary files a/LMC/Library/InspectorExpandedItems.asset and b/LMC/Library/InspectorExpandedItems.asset differ diff --git a/LMC/Library/SceneVisibilityState.asset b/LMC/Library/SceneVisibilityState.asset index d6349146..022f874b 100644 Binary files a/LMC/Library/SceneVisibilityState.asset and b/LMC/Library/SceneVisibilityState.asset differ diff --git a/LMC/Library/ScriptAssemblies/Assembly-CSharp.dll b/LMC/Library/ScriptAssemblies/Assembly-CSharp.dll index 7f367489..7039217e 100644 Binary files a/LMC/Library/ScriptAssemblies/Assembly-CSharp.dll and b/LMC/Library/ScriptAssemblies/Assembly-CSharp.dll differ diff --git a/LMC/Library/ScriptAssemblies/Assembly-CSharp.pdb b/LMC/Library/ScriptAssemblies/Assembly-CSharp.pdb index 1005342f..bf7f90cf 100644 Binary files a/LMC/Library/ScriptAssemblies/Assembly-CSharp.pdb and b/LMC/Library/ScriptAssemblies/Assembly-CSharp.pdb differ diff --git a/LMC/Library/Search/transactions.db b/LMC/Library/Search/transactions.db index e2fdf065..a1b43f25 100644 Binary files a/LMC/Library/Search/transactions.db and b/LMC/Library/Search/transactions.db differ diff --git a/LMC/Library/SourceAssetDB b/LMC/Library/SourceAssetDB index 28f095b1..b9ee14bf 100644 Binary files a/LMC/Library/SourceAssetDB and b/LMC/Library/SourceAssetDB differ diff --git a/LMC/Library/StateCache/SceneView/8c/8cd7c613bf844de3b80696e27a479d5e.json b/LMC/Library/StateCache/SceneView/8c/8cd7c613bf844de3b80696e27a479d5e.json index bc4adba5..4be64ef4 100644 --- a/LMC/Library/StateCache/SceneView/8c/8cd7c613bf844de3b80696e27a479d5e.json +++ b/LMC/Library/StateCache/SceneView/8c/8cd7c613bf844de3b80696e27a479d5e.json @@ -1 +1 @@ -{"cameraMode":{"drawMode":0,"name":"Shaded","section":"Shading Mode"},"sceneLighting":true,"audioPlay":false,"sceneViewState":{"m_AlwaysRefresh":false,"showFog":true,"showSkybox":true,"showFlares":true,"showImageEffects":true,"showParticleSystems":true,"showVisualEffectGraphs":true,"m_FxEnabled":true},"in2DMode":false,"pivot":{"x":1974.822509765625,"y":996.4484252929688,"z":64.18412780761719},"rotation":{"x":0.03447769582271576,"y":-0.029977822676301004,"z":0.0010343323228880764,"w":0.9989559054374695},"size":1270.9102783203125,"orthographic":true} \ No newline at end of file +{"cameraMode":{"drawMode":0,"name":"Shaded","section":"Shading Mode"},"sceneLighting":true,"audioPlay":false,"sceneViewState":{"m_AlwaysRefresh":false,"showFog":true,"showSkybox":true,"showFlares":true,"showImageEffects":true,"showParticleSystems":true,"showVisualEffectGraphs":true,"m_FxEnabled":true},"in2DMode":false,"pivot":{"x":675.4541015625,"y":269.14300537109377,"z":-281.14569091796877},"rotation":{"x":0.0,"y":0.0,"z":0.0,"w":1.0},"size":536.6791381835938,"orthographic":true} \ No newline at end of file diff --git a/LMC/Library/ilpp.pid b/LMC/Library/ilpp.pid index 27fd65a2..106f34bf 100644 --- a/LMC/Library/ilpp.pid +++ b/LMC/Library/ilpp.pid @@ -1 +1 @@ -11108 \ No newline at end of file +25744 \ No newline at end of file diff --git a/LMC/Logs/AssetImportWorker0-prev.log b/LMC/Logs/AssetImportWorker0-prev.log index 3cf41c77..ba8e27ba 100644 --- a/LMC/Logs/AssetImportWorker0-prev.log +++ b/LMC/Logs/AssetImportWorker0-prev.log @@ -15,7 +15,7 @@ D:/Duong-Desktop/LittleManComputer/LMC -logFile Logs/AssetImportWorker0.log -srvPort -53688 +54541 Successfully changed project path to: D:/Duong-Desktop/LittleManComputer/LMC D:/Duong-Desktop/LittleManComputer/LMC [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -49,11 +49,11 @@ D:/Duong-Desktop/LittleManComputer/LMC "memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gfx=262144" -Player connection [32436] Host "[IP] 192.168.1.24 [Port] 0 [Flags] 2 [Guid] 1594671666 [EditorId] 1594671666 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... +Player connection [24940] Host "[IP] 192.168.1.24 [Port] 0 [Flags] 2 [Guid] 2824639831 [EditorId] 2824639831 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... -Player connection [32436] Host "[IP] 192.168.1.24 [Port] 0 [Flags] 2 [Guid] 1594671666 [EditorId] 1594671666 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... +Player connection [24940] Host "[IP] 192.168.1.24 [Port] 0 [Flags] 2 [Guid] 2824639831 [EditorId] 2824639831 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... -Refreshing native plugins compatible for Editor in 5.47 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1586.37 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2022.3.0f1 (fb119bb0b476) [Subsystems] Discovering subsystems at path D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/Resources/UnitySubsystems @@ -69,99 +69,163 @@ Initialize mono Mono path[0] = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/Managed' Mono path[1] = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono config path = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56276 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56252 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.002981 seconds. -- Loaded All Assemblies, in 0.303 seconds +Registered in 0.006060 seconds. +- Loaded All Assemblies, in 6.681 seconds Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.218 seconds -Domain Reload Profiling: 521ms - BeginReloadAssembly (110ms) +- Finished resetting the current domain, in 0.331 seconds +Domain Reload Profiling: 7013ms + BeginReloadAssembly (5014ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (1ms) - RebuildCommonClasses (29ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (44ms) - LoadAllAssembliesAndSetupDomain (111ms) - LoadAssemblies (109ms) + CreateAndSetChildDomain (2ms) + RebuildCommonClasses (483ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (66ms) + LoadAllAssembliesAndSetupDomain (1106ms) + LoadAssemblies (5013ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (109ms) - TypeCache.Refresh (108ms) - TypeCache.ScanAssembly (97ms) + AnalyzeDomain (1100ms) + TypeCache.Refresh (1100ms) + TypeCache.ScanAssembly (796ms) ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (218ms) + ResolveRequiredComponents (1ms) + FinalizeReload (332ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (171ms) + SetupLoadedEditorAssemblies (256ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (7ms) - SetLoadedEditorAssemblies (7ms) + InitializePlatformSupportModulesInManaged (10ms) + SetLoadedEditorAssemblies (10ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (2ms) - ProcessInitializeOnLoadAttributes (117ms) - ProcessInitializeOnLoadMethodAttributes (38ms) + BeforeProcessingInitializeOnLoad (3ms) + ProcessInitializeOnLoadAttributes (172ms) + ProcessInitializeOnLoadMethodAttributes (62ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (0ms) ======================================================================== Worker process is ready to serve import requests +Script is not up to date after domain reload: guid(29531ca9764e72b40a7a272f03d8f99e) path("Assets/Initalize.cs") state(2) Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.541 seconds -Refreshing native plugins compatible for Editor in 1.82 ms, found 3 plugins. +- Loaded All Assemblies, in 1.853 seconds +Refreshing native plugins compatible for Editor in 1.34 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.406 seconds -Domain Reload Profiling: 947ms - BeginReloadAssembly (105ms) +- Finished resetting the current domain, in 0.348 seconds +Domain Reload Profiling: 2202ms + BeginReloadAssembly (141ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) + DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (18ms) - RebuildCommonClasses (27ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (31ms) - LoadAllAssembliesAndSetupDomain (370ms) - LoadAssemblies (192ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (28ms) + LoadAllAssembliesAndSetupDomain (1652ms) + LoadAssemblies (1547ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (232ms) - TypeCache.Refresh (216ms) - TypeCache.ScanAssembly (206ms) - ScanForSourceGeneratedMonoScriptInfo (13ms) + AnalyzeDomain (194ms) + TypeCache.Refresh (181ms) + TypeCache.ScanAssembly (173ms) + ScanForSourceGeneratedMonoScriptInfo (10ms) ResolveRequiredComponents (3ms) - FinalizeReload (406ms) + FinalizeReload (349ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (272ms) + SetupLoadedEditorAssemblies (237ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (4ms) - SetLoadedEditorAssemblies (4ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (42ms) - ProcessInitializeOnLoadAttributes (203ms) - ProcessInitializeOnLoadMethodAttributes (18ms) + BeforeProcessingInitializeOnLoad (38ms) + ProcessInitializeOnLoadAttributes (179ms) + ProcessInitializeOnLoadMethodAttributes (13ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (5ms) -Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds -Refreshing native plugins compatible for Editor in 1.95 ms, found 3 plugins. +Launched and connected shader compiler UnityShaderCompiler.exe after 0.05 seconds +Refreshing native plugins compatible for Editor in 1.50 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3115 Unused Serialized files (Serialized files now loaded: 0) -Unloading 31 unused Assets / (56.4 KB). Loaded Objects now: 3580. +Unloading 31 unused Assets / (58.4 KB). Loaded Objects now: 3580. Memory consumption went from 121.0 MB to 121.0 MB. -Total: 3.467500 ms (FindLiveObjects: 0.198100 ms CreateObjectMapping: 0.249900 ms MarkObjects: 2.914900 ms DeleteObjects: 0.103500 ms) +Total: 3.718500 ms (FindLiveObjects: 0.219600 ms CreateObjectMapping: 0.082200 ms MarkObjects: 3.264000 ms DeleteObjects: 0.152000 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.546 seconds +Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.755 seconds +Domain Reload Profiling: 1301ms + BeginReloadAssembly (146ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (350ms) + LoadAssemblies (256ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (184ms) + TypeCache.Refresh (177ms) + TypeCache.ScanAssembly (169ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (756ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (226ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (38ms) + ProcessInitializeOnLoadAttributes (163ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3583. +Memory consumption went from 117.0 MB to 117.0 MB. +Total: 3.028800 ms (FindLiveObjects: 0.170700 ms CreateObjectMapping: 0.077400 ms MarkObjects: 2.742600 ms DeleteObjects: 0.037600 ms) +Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> @@ -176,61 +240,61 @@ AssetImportParameters requested are different than current active one (requested custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> ======================================================================== Received Import Request. - Time since last request: 508368.367545 seconds. - path: Assets/A.prefab - artifactKey: Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -Start importing Assets/A.prefab using Guid(9e0ac92152308394fbbcea4c4a625c7f) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '40d841f95b8096f3e3558ebb76b6cc9a') in 0.119614 seconds + Time since last request: 510600.756868 seconds. + path: Assets/Initalize.cs + artifactKey: Guid(29531ca9764e72b40a7a272f03d8f99e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Initalize.cs using Guid(29531ca9764e72b40a7a272f03d8f99e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '579cfa2c782b3ebdcfc8e0d4af86d405') in 0.008573 seconds Number of updated asset objects reloaded before import = 0 -Number of asset objects unloaded after import = 61 +Number of asset objects unloaded after import = 0 ======================================================================== Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.659 seconds -Refreshing native plugins compatible for Editor in 2.87 ms, found 3 plugins. +- Loaded All Assemblies, in 0.722 seconds +Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.876 seconds -Domain Reload Profiling: 1535ms - BeginReloadAssembly (128ms) +- Finished resetting the current domain, in 0.962 seconds +Domain Reload Profiling: 1684ms + BeginReloadAssembly (152ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (5ms) + DisableScriptedObjects (6ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (35ms) - RebuildCommonClasses (35ms) - RebuildNativeTypeToScriptingClass (12ms) - initialDomainReloadingComplete (27ms) - LoadAllAssembliesAndSetupDomain (456ms) - LoadAssemblies (230ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (28ms) + LoadAllAssembliesAndSetupDomain (494ms) + LoadAssemblies (273ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (293ms) + AnalyzeDomain (295ms) TypeCache.Refresh (287ms) TypeCache.ScanAssembly (275ms) - ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (6ms) - FinalizeReload (876ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (7ms) + FinalizeReload (963ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (405ms) + SetupLoadedEditorAssemblies (363ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) - SetLoadedEditorAssemblies (6ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (72ms) - ProcessInitializeOnLoadAttributes (291ms) - ProcessInitializeOnLoadMethodAttributes (27ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (264ms) + ProcessInitializeOnLoadMethodAttributes (29ms) AfterProcessingInitializeOnLoad (3ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 2.81 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (14ms) +Refreshing native plugins compatible for Editor in 3.58 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3592. -Memory consumption went from 121.4 MB to 121.3 MB. -Total: 3.795200 ms (FindLiveObjects: 0.469000 ms CreateObjectMapping: 0.126000 ms MarkObjects: 3.147100 ms DeleteObjects: 0.052000 ms) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3586. +Memory consumption went from 116.8 MB to 116.8 MB. +Total: 8.686500 ms (FindLiveObjects: 0.251800 ms CreateObjectMapping: 0.085800 ms MarkObjects: 8.307500 ms DeleteObjects: 0.040200 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -250,50 +314,176 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.509 seconds -Refreshing native plugins compatible for Editor in 1.54 ms, found 3 plugins. +- Loaded All Assemblies, in 0.461 seconds +Refreshing native plugins compatible for Editor in 1.40 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.513 seconds -Domain Reload Profiling: 1022ms - BeginReloadAssembly (111ms) +- Finished resetting the current domain, in 0.460 seconds +Domain Reload Profiling: 921ms + BeginReloadAssembly (102ms) ExecutionOrderSort (0ms) DisableScriptedObjects (4ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (31ms) - RebuildCommonClasses (27ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (21ms) - LoadAllAssembliesAndSetupDomain (341ms) - LoadAssemblies (179ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (309ms) + LoadAssemblies (171ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (214ms) - TypeCache.Refresh (211ms) - TypeCache.ScanAssembly (201ms) + AnalyzeDomain (182ms) + TypeCache.Refresh (179ms) + TypeCache.ScanAssembly (162ms) ScanForSourceGeneratedMonoScriptInfo (0ms) ResolveRequiredComponents (3ms) - FinalizeReload (514ms) + FinalizeReload (460ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (232ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (166ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.22 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3589. +Memory consumption went from 117.0 MB to 117.0 MB. +Total: 2.455300 ms (FindLiveObjects: 0.172700 ms CreateObjectMapping: 0.080700 ms MarkObjects: 2.153200 ms DeleteObjects: 0.048000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.815 seconds +Refreshing native plugins compatible for Editor in 2.89 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.954 seconds +Domain Reload Profiling: 1768ms + BeginReloadAssembly (183ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (43ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (36ms) + LoadAllAssembliesAndSetupDomain (538ms) + LoadAssemblies (328ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (312ms) + TypeCache.Refresh (303ms) + TypeCache.ScanAssembly (290ms) + ScanForSourceGeneratedMonoScriptInfo (4ms) + ResolveRequiredComponents (6ms) + FinalizeReload (954ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) SetupLoadedEditorAssemblies (268ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (184ms) + ProcessInitializeOnLoadMethodAttributes (14ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.56 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3592. +Memory consumption went from 117.0 MB to 117.0 MB. +Total: 2.669000 ms (FindLiveObjects: 0.215200 ms CreateObjectMapping: 0.091600 ms MarkObjects: 2.317100 ms DeleteObjects: 0.044100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.522 seconds +Refreshing native plugins compatible for Editor in 1.38 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.590 seconds +Domain Reload Profiling: 1112ms + BeginReloadAssembly (114ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (30ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (347ms) + LoadAssemblies (194ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (206ms) + TypeCache.Refresh (202ms) + TypeCache.ScanAssembly (192ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (590ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (292ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) BeforeProcessingInitializeOnLoad (50ms) - ProcessInitializeOnLoadAttributes (191ms) - ProcessInitializeOnLoadMethodAttributes (17ms) + ProcessInitializeOnLoadAttributes (214ms) + ProcessInitializeOnLoadMethodAttributes (18ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Refreshing native plugins compatible for Editor in 1.58 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 2.11 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3595. -Memory consumption went from 121.6 MB to 121.6 MB. -Total: 2.592600 ms (FindLiveObjects: 0.347400 ms CreateObjectMapping: 0.105100 ms MarkObjects: 2.099300 ms DeleteObjects: 0.037800 ms) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3595. +Memory consumption went from 117.0 MB to 117.0 MB. +Total: 2.911800 ms (FindLiveObjects: 0.201700 ms CreateObjectMapping: 0.085500 ms MarkObjects: 2.537300 ms DeleteObjects: 0.086300 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): diff --git a/LMC/Logs/AssetImportWorker0.log b/LMC/Logs/AssetImportWorker0.log new file mode 100644 index 00000000..641ae2f4 --- /dev/null +++ b/LMC/Logs/AssetImportWorker0.log @@ -0,0 +1,4988 @@ +Using pre-set license +Built from '2022.3/release' branch; Version is '2022.3.0f1 (fb119bb0b476) revision 16454043'; Using compiler version '192829333'; Build Type 'Release' +OS: 'Windows 11 (10.0.22621) 64bit CoreSingleLanguage' Language: 'en' Physical Memory: 7812 MB +BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1 + +COMMAND LINE ARGUMENTS: +D:\Duong-Desktop\Unity\Hub\Editor\2022.3.0f1\Editor\Unity.exe +-adb2 +-batchMode +-noUpm +-name +AssetImportWorker0 +-projectPath +D:/Duong-Desktop/LittleManComputer/LMC +-logFile +Logs/AssetImportWorker0.log +-srvPort +64814 +Successfully changed project path to: D:/Duong-Desktop/LittleManComputer/LMC +D:/Duong-Desktop/LittleManComputer/LMC +[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-allocator-temp-initial-block-size-main=262144" + "memorysetup-allocator-temp-initial-block-size-worker=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 [23932] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 3149514349 [EditorId] 3149514349 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... + +Player connection [23932] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 3149514349 [EditorId] 3149514349 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... + +Refreshing native plugins compatible for Editor in 13.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Initialize engine version: 2022.3.0f1 (fb119bb0b476) +[Subsystems] Discovering subsystems at path D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/Resources/UnitySubsystems +[Subsystems] Discovering subsystems at path D:/Duong-Desktop/LittleManComputer/LMC/Assets +GfxDevice: creating device client; threaded=0; jobified=0 +Direct3D: + Version: Direct3D 11.0 [level 11.1] + Renderer: NVIDIA GeForce RTX 3050 Laptop GPU (ID=0x25a2) + Vendor: NVIDIA + VRAM: 3991 MB + Driver: 31.0.15.1691 +Initialize mono +Mono path[0] = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/Managed' +Mono path[1] = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' +Mono config path = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/MonoBleedingEdge/etc' +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56000 +Begin MonoManager ReloadAssembly +Registering precompiled unity dll's ... +Register platform support module: D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll +Registered in 0.003843 seconds. +- Loaded All Assemblies, in 0.335 seconds +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.245 seconds +Domain Reload Profiling: 580ms + BeginReloadAssembly (122ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (0ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (1ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (46ms) + LoadAllAssembliesAndSetupDomain (129ms) + LoadAssemblies (121ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (126ms) + TypeCache.Refresh (125ms) + TypeCache.ScanAssembly (113ms) + ScanForSourceGeneratedMonoScriptInfo (1ms) + ResolveRequiredComponents (1ms) + FinalizeReload (245ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (192ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (8ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (2ms) + ProcessInitializeOnLoadAttributes (115ms) + ProcessInitializeOnLoadMethodAttributes (61ms) + AfterProcessingInitializeOnLoad (0ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (0ms) +======================================================================== +Worker process is ready to serve import requests +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.908 seconds +Refreshing native plugins compatible for Editor in 20.14 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.610 seconds +Domain Reload Profiling: 1520ms + BeginReloadAssembly (108ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (19ms) + RebuildCommonClasses (30ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (35ms) + LoadAllAssembliesAndSetupDomain (725ms) + LoadAssemblies (437ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (340ms) + TypeCache.Refresh (312ms) + TypeCache.ScanAssembly (294ms) + ScanForSourceGeneratedMonoScriptInfo (21ms) + ResolveRequiredComponents (8ms) + FinalizeReload (611ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (376ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (287ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Launched and connected shader compiler UnityShaderCompiler.exe after 0.05 seconds +Refreshing native plugins compatible for Editor in 1.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3115 Unused Serialized files (Serialized files now loaded: 0) +Unloading 31 unused Assets / (56.4 KB). Loaded Objects now: 3580. +Memory consumption went from 121.1 MB to 121.0 MB. +Total: 4.818800 ms (FindLiveObjects: 0.621400 ms CreateObjectMapping: 0.135400 ms MarkObjects: 3.951000 ms DeleteObjects: 0.109700 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 536977.513349 seconds. + path: Assets/NewTextModify.cs + artifactKey: Guid(09f35fbdab79d2f4d900478a7e2adf9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/NewTextModify.cs using Guid(09f35fbdab79d2f4d900478a7e2adf9e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '7ff15d4510a41471cf824d7dcc4f2101') in 0.011493 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.595 seconds +Refreshing native plugins compatible for Editor in 1.61 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.817 seconds +Domain Reload Profiling: 1412ms + BeginReloadAssembly (151ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (21ms) + LoadAllAssembliesAndSetupDomain (390ms) + LoadAssemblies (262ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (217ms) + TypeCache.Refresh (212ms) + TypeCache.ScanAssembly (203ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (4ms) + FinalizeReload (818ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (288ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (51ms) + ProcessInitializeOnLoadAttributes (208ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.58 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3583. +Memory consumption went from 116.8 MB to 116.8 MB. +Total: 3.648800 ms (FindLiveObjects: 0.215300 ms CreateObjectMapping: 0.093000 ms MarkObjects: 3.276500 ms DeleteObjects: 0.062700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 1161.954394 seconds. + path: Assets/Initalize.cs + artifactKey: Guid(29531ca9764e72b40a7a272f03d8f99e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Initalize.cs using Guid(29531ca9764e72b40a7a272f03d8f99e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: '882e18cefba2f04191d2e5caf5c75b53') in 0.081669 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 1.454 seconds +Refreshing native plugins compatible for Editor in 2.17 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.076 seconds +Domain Reload Profiling: 2531ms + BeginReloadAssembly (578ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (23ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (243ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (24ms) + LoadAllAssembliesAndSetupDomain (818ms) + LoadAssemblies (741ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (307ms) + TypeCache.Refresh (299ms) + TypeCache.ScanAssembly (231ms) + ScanForSourceGeneratedMonoScriptInfo (5ms) + ResolveRequiredComponents (3ms) + FinalizeReload (1076ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (247ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (46ms) + ProcessInitializeOnLoadAttributes (174ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.52 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3586. +Memory consumption went from 116.8 MB to 116.8 MB. +Total: 4.426600 ms (FindLiveObjects: 0.208000 ms CreateObjectMapping: 0.093200 ms MarkObjects: 3.967700 ms DeleteObjects: 0.157100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.489 seconds +Refreshing native plugins compatible for Editor in 1.50 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.479 seconds +Domain Reload Profiling: 968ms + BeginReloadAssembly (107ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (333ms) + LoadAssemblies (205ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (177ms) + TypeCache.Refresh (174ms) + TypeCache.ScanAssembly (166ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (479ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (246ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (43ms) + ProcessInitializeOnLoadAttributes (178ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.82 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3589. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.559600 ms (FindLiveObjects: 0.307600 ms CreateObjectMapping: 0.095100 ms MarkObjects: 2.113600 ms DeleteObjects: 0.042500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Import Request. + Time since last request: 287.462634 seconds. + path: Assets/Initalize.cs + artifactKey: Guid(29531ca9764e72b40a7a272f03d8f99e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) +Start importing Assets/Initalize.cs using Guid(29531ca9764e72b40a7a272f03d8f99e) Importer(815301076,1909f56bfc062723c751e8b465ee728b) -> (artifact id: 'bb96c3068d35ecc190439479a0ce05f3') in 0.002197 seconds +Number of updated asset objects reloaded before import = 0 +Number of asset objects unloaded after import = 0 +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.565 seconds +Refreshing native plugins compatible for Editor in 1.61 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.837 seconds +Domain Reload Profiling: 1401ms + BeginReloadAssembly (111ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (21ms) + LoadAllAssembliesAndSetupDomain (395ms) + LoadAssemblies (224ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (222ms) + TypeCache.Refresh (219ms) + TypeCache.ScanAssembly (210ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (837ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (292ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (210ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.95 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3094 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3592. +Memory consumption went from 116.8 MB to 116.8 MB. +Total: 3.036300 ms (FindLiveObjects: 0.219600 ms CreateObjectMapping: 0.122200 ms MarkObjects: 2.638000 ms DeleteObjects: 0.055000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.519 seconds +Refreshing native plugins compatible for Editor in 1.53 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.572 seconds +Domain Reload Profiling: 1091ms + BeginReloadAssembly (110ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (353ms) + LoadAssemblies (188ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (213ms) + TypeCache.Refresh (210ms) + TypeCache.ScanAssembly (201ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (572ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (298ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (215ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.27 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3595. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 3.282300 ms (FindLiveObjects: 0.292900 ms CreateObjectMapping: 0.119800 ms MarkObjects: 2.816000 ms DeleteObjects: 0.052100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.453 seconds +Refreshing native plugins compatible for Editor in 1.18 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.481 seconds +Domain Reload Profiling: 934ms + BeginReloadAssembly (102ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (300ms) + LoadAssemblies (162ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (182ms) + TypeCache.Refresh (177ms) + TypeCache.ScanAssembly (168ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (4ms) + FinalizeReload (481ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (231ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (163ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 0.98 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3598. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.330000 ms (FindLiveObjects: 0.177600 ms CreateObjectMapping: 0.102100 ms MarkObjects: 2.012800 ms DeleteObjects: 0.037100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.448 seconds +Refreshing native plugins compatible for Editor in 1.67 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.475 seconds +Domain Reload Profiling: 923ms + BeginReloadAssembly (102ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (297ms) + LoadAssemblies (163ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (177ms) + TypeCache.Refresh (173ms) + TypeCache.ScanAssembly (166ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (476ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (256ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (44ms) + ProcessInitializeOnLoadAttributes (187ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3601. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 3.012000 ms (FindLiveObjects: 0.455800 ms CreateObjectMapping: 0.146200 ms MarkObjects: 2.356700 ms DeleteObjects: 0.051700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.589 seconds +Refreshing native plugins compatible for Editor in 1.66 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.613 seconds +Domain Reload Profiling: 1202ms + BeginReloadAssembly (127ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (30ms) + LoadAllAssembliesAndSetupDomain (391ms) + LoadAssemblies (202ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (251ms) + TypeCache.Refresh (246ms) + TypeCache.ScanAssembly (237ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (4ms) + FinalizeReload (613ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (299ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (217ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3604. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.511000 ms (FindLiveObjects: 0.206300 ms CreateObjectMapping: 0.249000 ms MarkObjects: 2.017500 ms DeleteObjects: 0.037500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.730 seconds +Refreshing native plugins compatible for Editor in 2.20 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.851 seconds +Domain Reload Profiling: 1581ms + BeginReloadAssembly (137ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (42ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (29ms) + LoadAllAssembliesAndSetupDomain (517ms) + LoadAssemblies (292ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (289ms) + TypeCache.Refresh (282ms) + TypeCache.ScanAssembly (270ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (852ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (347ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (54ms) + ProcessInitializeOnLoadAttributes (261ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 1.80 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3607. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 3.356600 ms (FindLiveObjects: 0.227800 ms CreateObjectMapping: 0.082000 ms MarkObjects: 2.993300 ms DeleteObjects: 0.052500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.447 seconds +Refreshing native plugins compatible for Editor in 1.41 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.496 seconds +Domain Reload Profiling: 944ms + BeginReloadAssembly (99ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (300ms) + LoadAssemblies (174ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (170ms) + TypeCache.Refresh (167ms) + TypeCache.ScanAssembly (160ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (497ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (265ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (195ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.62 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3610. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.490900 ms (FindLiveObjects: 0.195700 ms CreateObjectMapping: 0.080100 ms MarkObjects: 2.174600 ms DeleteObjects: 0.039600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.485 seconds +Refreshing native plugins compatible for Editor in 1.46 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.795 seconds +Domain Reload Profiling: 1280ms + BeginReloadAssembly (102ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (331ms) + LoadAssemblies (189ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (187ms) + TypeCache.Refresh (184ms) + TypeCache.ScanAssembly (174ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (795ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (259ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (193ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.70 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3613. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.835900 ms (FindLiveObjects: 0.190600 ms CreateObjectMapping: 0.080500 ms MarkObjects: 2.523100 ms DeleteObjects: 0.040500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.448 seconds +Refreshing native plugins compatible for Editor in 1.51 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.478 seconds +Domain Reload Profiling: 927ms + BeginReloadAssembly (107ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (292ms) + LoadAssemblies (162ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (178ms) + TypeCache.Refresh (174ms) + TypeCache.ScanAssembly (166ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (479ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (232ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (44ms) + ProcessInitializeOnLoadAttributes (167ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (4ms) +Refreshing native plugins compatible for Editor in 1.10 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3616. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.283400 ms (FindLiveObjects: 0.188200 ms CreateObjectMapping: 0.075400 ms MarkObjects: 1.982700 ms DeleteObjects: 0.036400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.428 seconds +Refreshing native plugins compatible for Editor in 1.42 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.463 seconds +Domain Reload Profiling: 891ms + BeginReloadAssembly (99ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (280ms) + LoadAssemblies (148ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (175ms) + TypeCache.Refresh (171ms) + TypeCache.ScanAssembly (164ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (463ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (238ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (43ms) + ProcessInitializeOnLoadAttributes (171ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.75 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3619. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.849500 ms (FindLiveObjects: 0.263700 ms CreateObjectMapping: 0.089600 ms MarkObjects: 2.400400 ms DeleteObjects: 0.094700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.686 seconds +Refreshing native plugins compatible for Editor in 3.42 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.792 seconds +Domain Reload Profiling: 1478ms + BeginReloadAssembly (152ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + RebuildCommonClasses (38ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (31ms) + LoadAllAssembliesAndSetupDomain (449ms) + LoadAssemblies (257ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (266ms) + TypeCache.Refresh (258ms) + TypeCache.ScanAssembly (248ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (6ms) + FinalizeReload (793ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (341ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (250ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 2.89 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3622. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 3.197200 ms (FindLiveObjects: 0.249500 ms CreateObjectMapping: 0.083100 ms MarkObjects: 2.822000 ms DeleteObjects: 0.041700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.493 seconds +Refreshing native plugins compatible for Editor in 1.87 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.508 seconds +Domain Reload Profiling: 1001ms + BeginReloadAssembly (106ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (327ms) + LoadAssemblies (169ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (207ms) + TypeCache.Refresh (204ms) + TypeCache.ScanAssembly (196ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (508ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (257ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (189ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.61 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3625. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.998600 ms (FindLiveObjects: 0.380000 ms CreateObjectMapping: 0.114600 ms MarkObjects: 2.463900 ms DeleteObjects: 0.038800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.448 seconds +Refreshing native plugins compatible for Editor in 1.33 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.462 seconds +Domain Reload Profiling: 911ms + BeginReloadAssembly (111ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (289ms) + LoadAssemblies (172ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (172ms) + TypeCache.Refresh (168ms) + TypeCache.ScanAssembly (160ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (463ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (237ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (172ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3628. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.418900 ms (FindLiveObjects: 0.176100 ms CreateObjectMapping: 0.081600 ms MarkObjects: 2.123000 ms DeleteObjects: 0.037600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.439 seconds +Refreshing native plugins compatible for Editor in 2.26 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.443 seconds +Domain Reload Profiling: 882ms + BeginReloadAssembly (100ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (289ms) + LoadAssemblies (163ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (171ms) + TypeCache.Refresh (167ms) + TypeCache.ScanAssembly (160ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (444ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (226ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (40ms) + ProcessInitializeOnLoadAttributes (165ms) + ProcessInitializeOnLoadMethodAttributes (12ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (4ms) +Refreshing native plugins compatible for Editor in 1.48 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3631. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.226500 ms (FindLiveObjects: 0.171800 ms CreateObjectMapping: 0.068800 ms MarkObjects: 1.945600 ms DeleteObjects: 0.039300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.445 seconds +Refreshing native plugins compatible for Editor in 1.44 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.458 seconds +Domain Reload Profiling: 904ms + BeginReloadAssembly (101ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (296ms) + LoadAssemblies (168ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (172ms) + TypeCache.Refresh (167ms) + TypeCache.ScanAssembly (160ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (459ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (231ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (169ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.00 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3634. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.193300 ms (FindLiveObjects: 0.173200 ms CreateObjectMapping: 0.073700 ms MarkObjects: 1.909600 ms DeleteObjects: 0.035800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.426 seconds +Refreshing native plugins compatible for Editor in 2.49 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.471 seconds +Domain Reload Profiling: 897ms + BeginReloadAssembly (100ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (277ms) + LoadAssemblies (156ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (167ms) + TypeCache.Refresh (164ms) + TypeCache.ScanAssembly (157ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (471ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (243ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (40ms) + ProcessInitializeOnLoadAttributes (181ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 2.51 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3637. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.362700 ms (FindLiveObjects: 0.186200 ms CreateObjectMapping: 0.077100 ms MarkObjects: 2.060200 ms DeleteObjects: 0.038300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.700 seconds +Refreshing native plugins compatible for Editor in 2.44 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.787 seconds +Domain Reload Profiling: 1487ms + BeginReloadAssembly (172ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (41ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (29ms) + LoadAllAssembliesAndSetupDomain (443ms) + LoadAssemblies (243ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (283ms) + TypeCache.Refresh (275ms) + TypeCache.ScanAssembly (264ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (6ms) + FinalizeReload (788ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (349ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (258ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 2.29 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3640. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 3.788300 ms (FindLiveObjects: 0.270000 ms CreateObjectMapping: 0.105600 ms MarkObjects: 3.355500 ms DeleteObjects: 0.056000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.482 seconds +Refreshing native plugins compatible for Editor in 1.37 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.486 seconds +Domain Reload Profiling: 968ms + BeginReloadAssembly (108ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (318ms) + LoadAssemblies (165ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (203ms) + TypeCache.Refresh (199ms) + TypeCache.ScanAssembly (190ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (486ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (241ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (40ms) + ProcessInitializeOnLoadAttributes (178ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3643. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.603400 ms (FindLiveObjects: 0.189800 ms CreateObjectMapping: 0.080800 ms MarkObjects: 2.292300 ms DeleteObjects: 0.039500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.436 seconds +Refreshing native plugins compatible for Editor in 1.35 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.450 seconds +Domain Reload Profiling: 886ms + BeginReloadAssembly (103ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (282ms) + LoadAssemblies (154ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (173ms) + TypeCache.Refresh (170ms) + TypeCache.ScanAssembly (163ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (450ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (221ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (37ms) + ProcessInitializeOnLoadAttributes (162ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.55 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3646. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.870400 ms (FindLiveObjects: 0.179000 ms CreateObjectMapping: 0.077000 ms MarkObjects: 2.573100 ms DeleteObjects: 0.040400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.446 seconds +Refreshing native plugins compatible for Editor in 1.74 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.457 seconds +Domain Reload Profiling: 903ms + BeginReloadAssembly (101ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (295ms) + LoadAssemblies (154ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (187ms) + TypeCache.Refresh (183ms) + TypeCache.ScanAssembly (176ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (457ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (229ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (37ms) + ProcessInitializeOnLoadAttributes (168ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3649. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 3.895100 ms (FindLiveObjects: 0.342300 ms CreateObjectMapping: 0.117700 ms MarkObjects: 3.387300 ms DeleteObjects: 0.046100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.497 seconds +Refreshing native plugins compatible for Editor in 2.25 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.533 seconds +Domain Reload Profiling: 1031ms + BeginReloadAssembly (110ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (328ms) + LoadAssemblies (177ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (203ms) + TypeCache.Refresh (198ms) + TypeCache.ScanAssembly (190ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (534ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (270ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (40ms) + ProcessInitializeOnLoadAttributes (203ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3652. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.491600 ms (FindLiveObjects: 0.232200 ms CreateObjectMapping: 0.095200 ms MarkObjects: 2.122200 ms DeleteObjects: 0.039900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.486 seconds +Refreshing native plugins compatible for Editor in 2.15 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.533 seconds +Domain Reload Profiling: 1018ms + BeginReloadAssembly (113ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (316ms) + LoadAssemblies (169ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (200ms) + TypeCache.Refresh (196ms) + TypeCache.ScanAssembly (188ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (533ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (287ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (50ms) + ProcessInitializeOnLoadAttributes (211ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 2.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3655. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.701500 ms (FindLiveObjects: 0.208300 ms CreateObjectMapping: 0.093900 ms MarkObjects: 2.357300 ms DeleteObjects: 0.041300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.480 seconds +Refreshing native plugins compatible for Editor in 1.75 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.534 seconds +Domain Reload Profiling: 1014ms + BeginReloadAssembly (104ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (21ms) + LoadAllAssembliesAndSetupDomain (318ms) + LoadAssemblies (165ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (200ms) + TypeCache.Refresh (195ms) + TypeCache.ScanAssembly (186ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (534ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (275ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (40ms) + ProcessInitializeOnLoadAttributes (208ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.24 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3658. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.432900 ms (FindLiveObjects: 0.188900 ms CreateObjectMapping: 0.084300 ms MarkObjects: 2.123500 ms DeleteObjects: 0.035200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.463 seconds +Refreshing native plugins compatible for Editor in 1.61 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.545 seconds +Domain Reload Profiling: 1008ms + BeginReloadAssembly (104ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (21ms) + LoadAllAssembliesAndSetupDomain (304ms) + LoadAssemblies (158ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (193ms) + TypeCache.Refresh (190ms) + TypeCache.ScanAssembly (181ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (545ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (287ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (50ms) + ProcessInitializeOnLoadAttributes (210ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3661. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.651300 ms (FindLiveObjects: 0.199800 ms CreateObjectMapping: 0.085000 ms MarkObjects: 2.323600 ms DeleteObjects: 0.041900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.483 seconds +Refreshing native plugins compatible for Editor in 2.02 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.534 seconds +Domain Reload Profiling: 1017ms + BeginReloadAssembly (106ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (320ms) + LoadAssemblies (163ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (204ms) + TypeCache.Refresh (200ms) + TypeCache.ScanAssembly (192ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (535ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (258ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (44ms) + ProcessInitializeOnLoadAttributes (187ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.63 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3664. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.561200 ms (FindLiveObjects: 0.202100 ms CreateObjectMapping: 0.095300 ms MarkObjects: 2.222600 ms DeleteObjects: 0.040100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.507 seconds +Refreshing native plugins compatible for Editor in 1.91 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.496 seconds +Domain Reload Profiling: 1003ms + BeginReloadAssembly (113ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + RebuildCommonClasses (30ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (332ms) + LoadAssemblies (180ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (209ms) + TypeCache.Refresh (204ms) + TypeCache.ScanAssembly (196ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (496ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (234ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (50ms) + ProcessInitializeOnLoadAttributes (162ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.39 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3667. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.713400 ms (FindLiveObjects: 0.215300 ms CreateObjectMapping: 0.090500 ms MarkObjects: 2.370000 ms DeleteObjects: 0.036800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.491 seconds +Refreshing native plugins compatible for Editor in 1.92 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.505 seconds +Domain Reload Profiling: 997ms + BeginReloadAssembly (107ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (326ms) + LoadAssemblies (169ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (207ms) + TypeCache.Refresh (203ms) + TypeCache.ScanAssembly (194ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (506ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (251ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (183ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.51 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3670. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.740200 ms (FindLiveObjects: 0.215000 ms CreateObjectMapping: 0.096500 ms MarkObjects: 2.388700 ms DeleteObjects: 0.039400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.448 seconds +Refreshing native plugins compatible for Editor in 1.37 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.457 seconds +Domain Reload Profiling: 906ms + BeginReloadAssembly (104ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (294ms) + LoadAssemblies (164ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (176ms) + TypeCache.Refresh (171ms) + TypeCache.ScanAssembly (163ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (457ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (229ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (164ms) + ProcessInitializeOnLoadMethodAttributes (14ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 0.98 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (31.8 KB). Loaded Objects now: 3673. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.403100 ms (FindLiveObjects: 0.172400 ms CreateObjectMapping: 0.078200 ms MarkObjects: 2.103600 ms DeleteObjects: 0.048100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.430 seconds +Refreshing native plugins compatible for Editor in 1.15 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.475 seconds +Domain Reload Profiling: 906ms + BeginReloadAssembly (98ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (283ms) + LoadAssemblies (154ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (174ms) + TypeCache.Refresh (171ms) + TypeCache.ScanAssembly (164ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (476ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (247ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (180ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.51 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3676. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.386600 ms (FindLiveObjects: 0.278100 ms CreateObjectMapping: 0.090500 ms MarkObjects: 1.957500 ms DeleteObjects: 0.059300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.486 seconds +Refreshing native plugins compatible for Editor in 1.38 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.480 seconds +Domain Reload Profiling: 966ms + BeginReloadAssembly (112ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (322ms) + LoadAssemblies (177ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (196ms) + TypeCache.Refresh (193ms) + TypeCache.ScanAssembly (183ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (481ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (228ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (37ms) + ProcessInitializeOnLoadAttributes (165ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.29 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3679. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.413200 ms (FindLiveObjects: 0.176200 ms CreateObjectMapping: 0.070000 ms MarkObjects: 2.131200 ms DeleteObjects: 0.035200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.436 seconds +Refreshing native plugins compatible for Editor in 1.32 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.459 seconds +Domain Reload Profiling: 895ms + BeginReloadAssembly (98ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (286ms) + LoadAssemblies (153ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (177ms) + TypeCache.Refresh (173ms) + TypeCache.ScanAssembly (164ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (459ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (215ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (44ms) + ProcessInitializeOnLoadAttributes (150ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (4ms) +Refreshing native plugins compatible for Editor in 1.18 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3682. +Memory consumption went from 117.2 MB to 117.1 MB. +Total: 2.275100 ms (FindLiveObjects: 0.171400 ms CreateObjectMapping: 0.073000 ms MarkObjects: 1.992900 ms DeleteObjects: 0.037000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.484 seconds +Refreshing native plugins compatible for Editor in 1.52 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.726 seconds +Domain Reload Profiling: 1211ms + BeginReloadAssembly (104ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (328ms) + LoadAssemblies (191ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (183ms) + TypeCache.Refresh (178ms) + TypeCache.ScanAssembly (170ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (727ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (206ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (35ms) + ProcessInitializeOnLoadAttributes (150ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.34 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3685. +Memory consumption went from 117.2 MB to 117.1 MB. +Total: 2.301700 ms (FindLiveObjects: 0.226100 ms CreateObjectMapping: 0.075100 ms MarkObjects: 1.965000 ms DeleteObjects: 0.034900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.475 seconds +Refreshing native plugins compatible for Editor in 1.16 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.463 seconds +Domain Reload Profiling: 938ms + BeginReloadAssembly (108ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (315ms) + LoadAssemblies (173ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (190ms) + TypeCache.Refresh (187ms) + TypeCache.ScanAssembly (178ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (463ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (225ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (38ms) + ProcessInitializeOnLoadAttributes (164ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.54 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3688. +Memory consumption went from 117.2 MB to 117.1 MB. +Total: 2.738100 ms (FindLiveObjects: 0.271400 ms CreateObjectMapping: 0.115000 ms MarkObjects: 2.314200 ms DeleteObjects: 0.036600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.870 seconds +Refreshing native plugins compatible for Editor in 2.05 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.259 seconds +Domain Reload Profiling: 2129ms + BeginReloadAssembly (241ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (118ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (20ms) + initialDomainReloadingComplete (32ms) + LoadAllAssembliesAndSetupDomain (540ms) + LoadAssemblies (293ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (319ms) + TypeCache.Refresh (308ms) + TypeCache.ScanAssembly (289ms) + ScanForSourceGeneratedMonoScriptInfo (4ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1260ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (352ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (257ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3691. +Memory consumption went from 117.2 MB to 117.1 MB. +Total: 2.880800 ms (FindLiveObjects: 0.173900 ms CreateObjectMapping: 0.091300 ms MarkObjects: 2.573100 ms DeleteObjects: 0.041700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.441 seconds +Refreshing native plugins compatible for Editor in 1.54 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.467 seconds +Domain Reload Profiling: 908ms + BeginReloadAssembly (106ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (286ms) + LoadAssemblies (159ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (172ms) + TypeCache.Refresh (169ms) + TypeCache.ScanAssembly (161ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (467ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (240ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (175ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.56 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3694. +Memory consumption went from 117.2 MB to 117.1 MB. +Total: 2.460600 ms (FindLiveObjects: 0.199100 ms CreateObjectMapping: 0.079500 ms MarkObjects: 2.137900 ms DeleteObjects: 0.043000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.929 seconds +Refreshing native plugins compatible for Editor in 2.47 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.052 seconds +Domain Reload Profiling: 1981ms + BeginReloadAssembly (248ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (12ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (112ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (19ms) + initialDomainReloadingComplete (40ms) + LoadAllAssembliesAndSetupDomain (583ms) + LoadAssemblies (320ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (348ms) + TypeCache.Refresh (337ms) + TypeCache.ScanAssembly (322ms) + ScanForSourceGeneratedMonoScriptInfo (5ms) + ResolveRequiredComponents (6ms) + FinalizeReload (1052ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (273ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (44ms) + ProcessInitializeOnLoadAttributes (203ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.28 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3697. +Memory consumption went from 117.2 MB to 117.1 MB. +Total: 3.759100 ms (FindLiveObjects: 0.208300 ms CreateObjectMapping: 0.087600 ms MarkObjects: 3.418300 ms DeleteObjects: 0.043900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.516 seconds +Refreshing native plugins compatible for Editor in 1.73 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.559 seconds +Domain Reload Profiling: 1075ms + BeginReloadAssembly (113ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (346ms) + LoadAssemblies (175ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (221ms) + TypeCache.Refresh (217ms) + TypeCache.ScanAssembly (209ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (559ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (296ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (48ms) + ProcessInitializeOnLoadAttributes (217ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.64 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3700. +Memory consumption went from 117.2 MB to 117.1 MB. +Total: 2.964800 ms (FindLiveObjects: 0.292200 ms CreateObjectMapping: 0.090100 ms MarkObjects: 2.536100 ms DeleteObjects: 0.045100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.703 seconds +Refreshing native plugins compatible for Editor in 2.54 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.824 seconds +Domain Reload Profiling: 1527ms + BeginReloadAssembly (163ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (43ms) + RebuildCommonClasses (40ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (33ms) + LoadAllAssembliesAndSetupDomain (453ms) + LoadAssemblies (261ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (271ms) + TypeCache.Refresh (264ms) + TypeCache.ScanAssembly (254ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (825ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (356ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (266ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 2.14 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3703. +Memory consumption went from 117.2 MB to 117.1 MB. +Total: 3.424200 ms (FindLiveObjects: 0.269600 ms CreateObjectMapping: 0.100400 ms MarkObjects: 3.003900 ms DeleteObjects: 0.048800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.655 seconds +Refreshing native plugins compatible for Editor in 1.67 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.520 seconds +Domain Reload Profiling: 1174ms + BeginReloadAssembly (151ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (28ms) + LoadAllAssembliesAndSetupDomain (429ms) + LoadAssemblies (254ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (254ms) + TypeCache.Refresh (251ms) + TypeCache.ScanAssembly (242ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (520ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (267ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (44ms) + ProcessInitializeOnLoadAttributes (192ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.58 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3706. +Memory consumption went from 117.2 MB to 117.1 MB. +Total: 2.865100 ms (FindLiveObjects: 0.433100 ms CreateObjectMapping: 0.077000 ms MarkObjects: 2.302200 ms DeleteObjects: 0.051600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.522 seconds +Refreshing native plugins compatible for Editor in 1.65 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.588 seconds +Domain Reload Profiling: 1110ms + BeginReloadAssembly (110ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (21ms) + LoadAllAssembliesAndSetupDomain (356ms) + LoadAssemblies (181ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (225ms) + TypeCache.Refresh (220ms) + TypeCache.ScanAssembly (211ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (589ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (300ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (49ms) + ProcessInitializeOnLoadAttributes (221ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.62 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3709. +Memory consumption went from 117.2 MB to 117.1 MB. +Total: 2.727500 ms (FindLiveObjects: 0.299700 ms CreateObjectMapping: 0.082500 ms MarkObjects: 2.300500 ms DeleteObjects: 0.043500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.502 seconds +Refreshing native plugins compatible for Editor in 1.88 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.506 seconds +Domain Reload Profiling: 1008ms + BeginReloadAssembly (112ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (336ms) + LoadAssemblies (177ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (209ms) + TypeCache.Refresh (206ms) + TypeCache.ScanAssembly (197ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (506ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (246ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (44ms) + ProcessInitializeOnLoadAttributes (179ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.51 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3712. +Memory consumption went from 117.2 MB to 117.1 MB. +Total: 3.052200 ms (FindLiveObjects: 0.209200 ms CreateObjectMapping: 0.087000 ms MarkObjects: 2.709000 ms DeleteObjects: 0.045800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.446 seconds +Refreshing native plugins compatible for Editor in 1.68 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.486 seconds +Domain Reload Profiling: 931ms + BeginReloadAssembly (102ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (292ms) + LoadAssemblies (158ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (179ms) + TypeCache.Refresh (177ms) + TypeCache.ScanAssembly (169ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (486ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (244ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (39ms) + ProcessInitializeOnLoadAttributes (180ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.66 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3715. +Memory consumption went from 117.2 MB to 117.1 MB. +Total: 2.451700 ms (FindLiveObjects: 0.199000 ms CreateObjectMapping: 0.083500 ms MarkObjects: 2.128000 ms DeleteObjects: 0.039900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.727 seconds +Refreshing native plugins compatible for Editor in 2.23 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.765 seconds +Domain Reload Profiling: 1491ms + BeginReloadAssembly (150ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (27ms) + LoadAllAssembliesAndSetupDomain (501ms) + LoadAssemblies (250ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (318ms) + TypeCache.Refresh (311ms) + TypeCache.ScanAssembly (300ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (766ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (311ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (50ms) + ProcessInitializeOnLoadAttributes (231ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 2.82 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3718. +Memory consumption went from 117.2 MB to 117.1 MB. +Total: 3.885500 ms (FindLiveObjects: 0.272000 ms CreateObjectMapping: 0.115600 ms MarkObjects: 3.456500 ms DeleteObjects: 0.040200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.471 seconds +Refreshing native plugins compatible for Editor in 1.30 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.529 seconds +Domain Reload Profiling: 1000ms + BeginReloadAssembly (105ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (312ms) + LoadAssemblies (159ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (200ms) + TypeCache.Refresh (197ms) + TypeCache.ScanAssembly (189ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (529ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (278ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (206ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.54 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3721. +Memory consumption went from 117.2 MB to 117.1 MB. +Total: 2.700400 ms (FindLiveObjects: 0.211900 ms CreateObjectMapping: 0.086200 ms MarkObjects: 2.363700 ms DeleteObjects: 0.037800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.743 seconds +Refreshing native plugins compatible for Editor in 3.25 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.885 seconds +Domain Reload Profiling: 1628ms + BeginReloadAssembly (167ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (40ms) + RebuildCommonClasses (38ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (29ms) + LoadAllAssembliesAndSetupDomain (493ms) + LoadAssemblies (267ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (306ms) + TypeCache.Refresh (298ms) + TypeCache.ScanAssembly (288ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (6ms) + FinalizeReload (886ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (388ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (66ms) + ProcessInitializeOnLoadAttributes (283ms) + ProcessInitializeOnLoadMethodAttributes (26ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 2.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3724. +Memory consumption went from 117.2 MB to 117.1 MB. +Total: 2.599300 ms (FindLiveObjects: 0.189900 ms CreateObjectMapping: 0.085000 ms MarkObjects: 2.287800 ms DeleteObjects: 0.035900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.501 seconds +Refreshing native plugins compatible for Editor in 1.87 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.539 seconds +Domain Reload Profiling: 1040ms + BeginReloadAssembly (110ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (331ms) + LoadAssemblies (174ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (206ms) + TypeCache.Refresh (203ms) + TypeCache.ScanAssembly (194ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (540ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (283ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (44ms) + ProcessInitializeOnLoadAttributes (211ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.71 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3727. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.564600 ms (FindLiveObjects: 0.218500 ms CreateObjectMapping: 0.091500 ms MarkObjects: 2.212800 ms DeleteObjects: 0.041100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.464 seconds +Refreshing native plugins compatible for Editor in 1.15 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.457 seconds +Domain Reload Profiling: 921ms + BeginReloadAssembly (105ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (306ms) + LoadAssemblies (162ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (190ms) + TypeCache.Refresh (184ms) + TypeCache.ScanAssembly (176ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (4ms) + FinalizeReload (457ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (223ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (36ms) + ProcessInitializeOnLoadAttributes (164ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.68 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3730. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.567000 ms (FindLiveObjects: 0.306200 ms CreateObjectMapping: 0.081800 ms MarkObjects: 2.135300 ms DeleteObjects: 0.041000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.488 seconds +Refreshing native plugins compatible for Editor in 1.04 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.455 seconds +Domain Reload Profiling: 944ms + BeginReloadAssembly (111ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (322ms) + LoadAssemblies (171ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (202ms) + TypeCache.Refresh (199ms) + TypeCache.ScanAssembly (190ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (456ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (223ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (42ms) + ProcessInitializeOnLoadAttributes (159ms) + ProcessInitializeOnLoadMethodAttributes (14ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.67 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3733. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.535300 ms (FindLiveObjects: 0.295400 ms CreateObjectMapping: 0.092200 ms MarkObjects: 2.110400 ms DeleteObjects: 0.036100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.474 seconds +Refreshing native plugins compatible for Editor in 1.34 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.510 seconds +Domain Reload Profiling: 984ms + BeginReloadAssembly (110ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (312ms) + LoadAssemblies (167ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (194ms) + TypeCache.Refresh (191ms) + TypeCache.ScanAssembly (183ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (511ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (256ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (42ms) + ProcessInitializeOnLoadAttributes (190ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.82 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3736. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.854300 ms (FindLiveObjects: 0.333700 ms CreateObjectMapping: 0.102700 ms MarkObjects: 2.379900 ms DeleteObjects: 0.036800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.743 seconds +Refreshing native plugins compatible for Editor in 2.62 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.842 seconds +Domain Reload Profiling: 1585ms + BeginReloadAssembly (183ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (62ms) + RebuildCommonClasses (38ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (29ms) + LoadAllAssembliesAndSetupDomain (479ms) + LoadAssemblies (257ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (300ms) + TypeCache.Refresh (291ms) + TypeCache.ScanAssembly (281ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (6ms) + FinalizeReload (843ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (373ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (271ms) + ProcessInitializeOnLoadMethodAttributes (25ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 2.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3739. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 6.652000 ms (FindLiveObjects: 0.468800 ms CreateObjectMapping: 0.177600 ms MarkObjects: 5.962000 ms DeleteObjects: 0.042300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.522 seconds +Refreshing native plugins compatible for Editor in 1.39 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.554 seconds +Domain Reload Profiling: 1076ms + BeginReloadAssembly (115ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (21ms) + LoadAllAssembliesAndSetupDomain (348ms) + LoadAssemblies (168ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (234ms) + TypeCache.Refresh (231ms) + TypeCache.ScanAssembly (221ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (554ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (290ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (46ms) + ProcessInitializeOnLoadAttributes (215ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.69 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3742. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.758400 ms (FindLiveObjects: 0.237900 ms CreateObjectMapping: 0.129200 ms MarkObjects: 2.350500 ms DeleteObjects: 0.040000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.677 seconds +Refreshing native plugins compatible for Editor in 2.18 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.816 seconds +Domain Reload Profiling: 1493ms + BeginReloadAssembly (149ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (29ms) + LoadAllAssembliesAndSetupDomain (450ms) + LoadAssemblies (245ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (280ms) + TypeCache.Refresh (272ms) + TypeCache.ScanAssembly (262ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (5ms) + FinalizeReload (817ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (349ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (55ms) + ProcessInitializeOnLoadAttributes (258ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 2.90 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3745. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.400200 ms (FindLiveObjects: 0.379400 ms CreateObjectMapping: 0.125900 ms MarkObjects: 2.847000 ms DeleteObjects: 0.046800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.512 seconds +Refreshing native plugins compatible for Editor in 2.58 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.520 seconds +Domain Reload Profiling: 1033ms + BeginReloadAssembly (117ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (335ms) + LoadAssemblies (170ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (216ms) + TypeCache.Refresh (212ms) + TypeCache.ScanAssembly (203ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (521ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (260ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (42ms) + ProcessInitializeOnLoadAttributes (192ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.79 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3748. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.124200 ms (FindLiveObjects: 0.250000 ms CreateObjectMapping: 0.143600 ms MarkObjects: 2.675200 ms DeleteObjects: 0.054100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.443 seconds +Refreshing native plugins compatible for Editor in 1.51 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.423 seconds +Domain Reload Profiling: 866ms + BeginReloadAssembly (106ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (288ms) + LoadAssemblies (155ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (178ms) + TypeCache.Refresh (174ms) + TypeCache.ScanAssembly (166ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (424ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (202ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (35ms) + ProcessInitializeOnLoadAttributes (148ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.27 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3751. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.551300 ms (FindLiveObjects: 0.201000 ms CreateObjectMapping: 0.086700 ms MarkObjects: 2.221900 ms DeleteObjects: 0.040900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.438 seconds +Refreshing native plugins compatible for Editor in 1.90 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.450 seconds +Domain Reload Profiling: 889ms + BeginReloadAssembly (104ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (285ms) + LoadAssemblies (157ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (175ms) + TypeCache.Refresh (172ms) + TypeCache.ScanAssembly (165ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (451ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (228ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (36ms) + ProcessInitializeOnLoadAttributes (169ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.15 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3754. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.579100 ms (FindLiveObjects: 0.254000 ms CreateObjectMapping: 0.090000 ms MarkObjects: 2.194400 ms DeleteObjects: 0.039400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.451 seconds +Refreshing native plugins compatible for Editor in 1.31 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.491 seconds +Domain Reload Profiling: 942ms + BeginReloadAssembly (105ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (295ms) + LoadAssemblies (157ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (184ms) + TypeCache.Refresh (181ms) + TypeCache.ScanAssembly (173ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (491ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (252ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (185ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.48 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3757. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.990100 ms (FindLiveObjects: 0.380500 ms CreateObjectMapping: 0.098600 ms MarkObjects: 2.471500 ms DeleteObjects: 0.038400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.491 seconds +Refreshing native plugins compatible for Editor in 1.63 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.483 seconds +Domain Reload Profiling: 974ms + BeginReloadAssembly (110ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (326ms) + LoadAssemblies (178ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (200ms) + TypeCache.Refresh (196ms) + TypeCache.ScanAssembly (188ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (484ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (234ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (40ms) + ProcessInitializeOnLoadAttributes (168ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3760. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.648400 ms (FindLiveObjects: 0.194600 ms CreateObjectMapping: 0.088900 ms MarkObjects: 2.318600 ms DeleteObjects: 0.045500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.695 seconds +Refreshing native plugins compatible for Editor in 3.53 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.788 seconds +Domain Reload Profiling: 1484ms + BeginReloadAssembly (154ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (29ms) + LoadAllAssembliesAndSetupDomain (460ms) + LoadAssemblies (256ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (285ms) + TypeCache.Refresh (280ms) + TypeCache.ScanAssembly (269ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (789ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (347ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (261ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3763. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.123900 ms (FindLiveObjects: 0.243800 ms CreateObjectMapping: 0.093300 ms MarkObjects: 2.739600 ms DeleteObjects: 0.044700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.651 seconds +Refreshing native plugins compatible for Editor in 1.91 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.761 seconds +Domain Reload Profiling: 1412ms + BeginReloadAssembly (150ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (33ms) + LoadAllAssembliesAndSetupDomain (419ms) + LoadAssemblies (225ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (268ms) + TypeCache.Refresh (258ms) + TypeCache.ScanAssembly (249ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (8ms) + FinalizeReload (762ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (335ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (242ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.98 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3766. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.192600 ms (FindLiveObjects: 0.242900 ms CreateObjectMapping: 0.080600 ms MarkObjects: 2.830100 ms DeleteObjects: 0.038000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.512 seconds +Refreshing native plugins compatible for Editor in 1.44 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.454 seconds +Domain Reload Profiling: 966ms + BeginReloadAssembly (145ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (39ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (297ms) + LoadAssemblies (174ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (191ms) + TypeCache.Refresh (188ms) + TypeCache.ScanAssembly (179ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (454ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (223ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (35ms) + ProcessInitializeOnLoadAttributes (164ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 1.60 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3769. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.540500 ms (FindLiveObjects: 0.191400 ms CreateObjectMapping: 0.109800 ms MarkObjects: 2.201800 ms DeleteObjects: 0.036700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.627 seconds +Refreshing native plugins compatible for Editor in 2.98 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.736 seconds +Domain Reload Profiling: 1364ms + BeginReloadAssembly (130ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (426ms) + LoadAssemblies (223ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (269ms) + TypeCache.Refresh (263ms) + TypeCache.ScanAssembly (253ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (737ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (317ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (51ms) + ProcessInitializeOnLoadAttributes (233ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 2.98 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3772. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.078400 ms (FindLiveObjects: 0.288000 ms CreateObjectMapping: 0.095900 ms MarkObjects: 2.650100 ms DeleteObjects: 0.043000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.640 seconds +Refreshing native plugins compatible for Editor in 2.36 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.710 seconds +Domain Reload Profiling: 1350ms + BeginReloadAssembly (138ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (27ms) + LoadAllAssembliesAndSetupDomain (431ms) + LoadAssemblies (239ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (263ms) + TypeCache.Refresh (257ms) + TypeCache.ScanAssembly (247ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (711ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (294ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (203ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3775. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.271500 ms (FindLiveObjects: 0.199000 ms CreateObjectMapping: 0.092200 ms MarkObjects: 2.934200 ms DeleteObjects: 0.045300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.496 seconds +Refreshing native plugins compatible for Editor in 1.61 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.510 seconds +Domain Reload Profiling: 1006ms + BeginReloadAssembly (112ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (21ms) + LoadAllAssembliesAndSetupDomain (325ms) + LoadAssemblies (170ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (207ms) + TypeCache.Refresh (203ms) + TypeCache.ScanAssembly (194ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (510ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (256ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (42ms) + ProcessInitializeOnLoadAttributes (188ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.60 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3778. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.457200 ms (FindLiveObjects: 0.204300 ms CreateObjectMapping: 0.087900 ms MarkObjects: 2.127600 ms DeleteObjects: 0.036900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.470 seconds +Refreshing native plugins compatible for Editor in 1.51 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.502 seconds +Domain Reload Profiling: 972ms + BeginReloadAssembly (108ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (310ms) + LoadAssemblies (168ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (191ms) + TypeCache.Refresh (187ms) + TypeCache.ScanAssembly (180ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (502ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (253ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (42ms) + ProcessInitializeOnLoadAttributes (186ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3781. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.891900 ms (FindLiveObjects: 0.210100 ms CreateObjectMapping: 0.085900 ms MarkObjects: 2.554400 ms DeleteObjects: 0.040600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.488 seconds +Refreshing native plugins compatible for Editor in 1.74 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.513 seconds +Domain Reload Profiling: 1000ms + BeginReloadAssembly (109ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (324ms) + LoadAssemblies (164ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (209ms) + TypeCache.Refresh (205ms) + TypeCache.ScanAssembly (196ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (513ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (255ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (188ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.53 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3784. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.514400 ms (FindLiveObjects: 0.219700 ms CreateObjectMapping: 0.138000 ms MarkObjects: 2.117300 ms DeleteObjects: 0.038400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.514 seconds +Refreshing native plugins compatible for Editor in 1.52 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.508 seconds +Domain Reload Profiling: 1023ms + BeginReloadAssembly (114ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (341ms) + LoadAssemblies (180ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (213ms) + TypeCache.Refresh (210ms) + TypeCache.ScanAssembly (201ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (509ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (247ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (47ms) + ProcessInitializeOnLoadAttributes (178ms) + ProcessInitializeOnLoadMethodAttributes (14ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3787. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.823900 ms (FindLiveObjects: 0.280900 ms CreateObjectMapping: 0.136300 ms MarkObjects: 2.364900 ms DeleteObjects: 0.040800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.500 seconds +Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.512 seconds +Domain Reload Profiling: 1012ms + BeginReloadAssembly (112ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (332ms) + LoadAssemblies (174ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (207ms) + TypeCache.Refresh (203ms) + TypeCache.ScanAssembly (195ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (512ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (251ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (44ms) + ProcessInitializeOnLoadAttributes (181ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.80 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3790. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.607000 ms (FindLiveObjects: 0.245900 ms CreateObjectMapping: 0.091300 ms MarkObjects: 2.229300 ms DeleteObjects: 0.040000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.469 seconds +Refreshing native plugins compatible for Editor in 1.34 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.791 seconds +Domain Reload Profiling: 1260ms + BeginReloadAssembly (103ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (320ms) + LoadAssemblies (183ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (181ms) + TypeCache.Refresh (178ms) + TypeCache.ScanAssembly (170ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (791ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (254ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (46ms) + ProcessInitializeOnLoadAttributes (183ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.44 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3793. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.923500 ms (FindLiveObjects: 0.207000 ms CreateObjectMapping: 0.092900 ms MarkObjects: 2.584600 ms DeleteObjects: 0.038000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.493 seconds +Refreshing native plugins compatible for Editor in 1.45 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.789 seconds +Domain Reload Profiling: 1282ms + BeginReloadAssembly (108ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (332ms) + LoadAssemblies (191ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (187ms) + TypeCache.Refresh (183ms) + TypeCache.ScanAssembly (175ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (790ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (265ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (42ms) + ProcessInitializeOnLoadAttributes (195ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.52 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3796. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.168200 ms (FindLiveObjects: 0.321000 ms CreateObjectMapping: 0.139700 ms MarkObjects: 2.663700 ms DeleteObjects: 0.042500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.445 seconds +Refreshing native plugins compatible for Editor in 1.35 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.545 seconds +Domain Reload Profiling: 991ms + BeginReloadAssembly (103ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (291ms) + LoadAssemblies (154ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (184ms) + TypeCache.Refresh (181ms) + TypeCache.ScanAssembly (174ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (546ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (284ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (43ms) + ProcessInitializeOnLoadAttributes (213ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3799. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.373700 ms (FindLiveObjects: 0.228800 ms CreateObjectMapping: 0.100500 ms MarkObjects: 2.006900 ms DeleteObjects: 0.036700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.448 seconds +Refreshing native plugins compatible for Editor in 1.63 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.474 seconds +Domain Reload Profiling: 922ms + BeginReloadAssembly (107ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (289ms) + LoadAssemblies (167ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (171ms) + TypeCache.Refresh (167ms) + TypeCache.ScanAssembly (160ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (474ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (250ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (43ms) + ProcessInitializeOnLoadAttributes (181ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.20 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3802. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.609100 ms (FindLiveObjects: 0.188300 ms CreateObjectMapping: 0.083000 ms MarkObjects: 2.299600 ms DeleteObjects: 0.037500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.443 seconds +Refreshing native plugins compatible for Editor in 1.24 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.508 seconds +Domain Reload Profiling: 952ms + BeginReloadAssembly (99ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (297ms) + LoadAssemblies (172ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (169ms) + TypeCache.Refresh (166ms) + TypeCache.ScanAssembly (158ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (508ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (216ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (2ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (37ms) + ProcessInitializeOnLoadAttributes (158ms) + ProcessInitializeOnLoadMethodAttributes (14ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.95 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3805. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.677300 ms (FindLiveObjects: 0.321800 ms CreateObjectMapping: 0.101000 ms MarkObjects: 2.209800 ms DeleteObjects: 0.043500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.488 seconds +Refreshing native plugins compatible for Editor in 1.50 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.526 seconds +Domain Reload Profiling: 1015ms + BeginReloadAssembly (111ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (321ms) + LoadAssemblies (170ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (201ms) + TypeCache.Refresh (198ms) + TypeCache.ScanAssembly (189ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (527ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (266ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (44ms) + ProcessInitializeOnLoadAttributes (191ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.65 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3808. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.769000 ms (FindLiveObjects: 0.243100 ms CreateObjectMapping: 0.104000 ms MarkObjects: 2.377400 ms DeleteObjects: 0.043500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> diff --git a/LMC/Logs/AssetImportWorker1-prev.log b/LMC/Logs/AssetImportWorker1-prev.log index 121e76a2..fd69b58a 100644 --- a/LMC/Logs/AssetImportWorker1-prev.log +++ b/LMC/Logs/AssetImportWorker1-prev.log @@ -15,7 +15,7 @@ D:/Duong-Desktop/LittleManComputer/LMC -logFile Logs/AssetImportWorker1.log -srvPort -53688 +54541 Successfully changed project path to: D:/Duong-Desktop/LittleManComputer/LMC D:/Duong-Desktop/LittleManComputer/LMC [UnityMemory] Configuration Parameters - Can be set up in boot.config @@ -49,11 +49,11 @@ D:/Duong-Desktop/LittleManComputer/LMC "memorysetup-temp-allocator-size-cloud-worker=32768" "memorysetup-temp-allocator-size-gi-baking-worker=262144" "memorysetup-temp-allocator-size-gfx=262144" -Player connection [33492] Host "[IP] 192.168.1.24 [Port] 0 [Flags] 2 [Guid] 1900353775 [EditorId] 1900353775 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... +Player connection [3712] Host "[IP] 192.168.1.24 [Port] 0 [Flags] 2 [Guid] 1432537064 [EditorId] 1432537064 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... -Player connection [33492] Host "[IP] 192.168.1.24 [Port] 0 [Flags] 2 [Guid] 1900353775 [EditorId] 1900353775 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... +Player connection [3712] Host "[IP] 192.168.1.24 [Port] 0 [Flags] 2 [Guid] 1432537064 [EditorId] 1432537064 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... -Refreshing native plugins compatible for Editor in 4.90 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1586.48 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Initialize engine version: 2022.3.0f1 (fb119bb0b476) [Subsystems] Discovering subsystems at path D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/Resources/UnitySubsystems @@ -69,98 +69,99 @@ Initialize mono Mono path[0] = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/Managed' Mono path[1] = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' Mono config path = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/MonoBleedingEdge/etc' -Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56220 +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56492 Begin MonoManager ReloadAssembly Registering precompiled unity dll's ... Register platform support module: D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll -Registered in 0.002518 seconds. -- Loaded All Assemblies, in 0.255 seconds +Registered in 0.006083 seconds. +- Loaded All Assemblies, in 6.681 seconds Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.217 seconds -Domain Reload Profiling: 472ms - BeginReloadAssembly (67ms) +- Finished resetting the current domain, in 0.331 seconds +Domain Reload Profiling: 7013ms + BeginReloadAssembly (5013ms) ExecutionOrderSort (0ms) DisableScriptedObjects (0ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (1ms) - RebuildCommonClasses (28ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (43ms) - LoadAllAssembliesAndSetupDomain (108ms) - LoadAssemblies (67ms) + CreateAndSetChildDomain (2ms) + RebuildCommonClasses (482ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (68ms) + LoadAllAssembliesAndSetupDomain (1104ms) + LoadAssemblies (5011ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (105ms) - TypeCache.Refresh (105ms) - TypeCache.ScanAssembly (95ms) + AnalyzeDomain (1100ms) + TypeCache.Refresh (1099ms) + TypeCache.ScanAssembly (794ms) ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (0ms) - FinalizeReload (217ms) + ResolveRequiredComponents (1ms) + FinalizeReload (332ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (170ms) + SetupLoadedEditorAssemblies (256ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) - SetLoadedEditorAssemblies (7ms) + InitializePlatformSupportModulesInManaged (9ms) + SetLoadedEditorAssemblies (9ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (2ms) - ProcessInitializeOnLoadAttributes (117ms) - ProcessInitializeOnLoadMethodAttributes (39ms) + BeforeProcessingInitializeOnLoad (3ms) + ProcessInitializeOnLoadAttributes (176ms) + ProcessInitializeOnLoadMethodAttributes (58ms) AfterProcessingInitializeOnLoad (0ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (0ms) ======================================================================== Worker process is ready to serve import requests +Script is not up to date after domain reload: guid(29531ca9764e72b40a7a272f03d8f99e) path("Assets/Initalize.cs") state(2) Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.543 seconds -Refreshing native plugins compatible for Editor in 1.13 ms, found 3 plugins. +- Loaded All Assemblies, in 1.854 seconds +Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.405 seconds -Domain Reload Profiling: 948ms - BeginReloadAssembly (105ms) +- Finished resetting the current domain, in 0.348 seconds +Domain Reload Profiling: 2202ms + BeginReloadAssembly (143ms) ExecutionOrderSort (0ms) - DisableScriptedObjects (4ms) + DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) - CreateAndSetChildDomain (18ms) - RebuildCommonClasses (27ms) - RebuildNativeTypeToScriptingClass (8ms) - initialDomainReloadingComplete (30ms) - LoadAllAssembliesAndSetupDomain (372ms) - LoadAssemblies (193ms) + CreateAndSetChildDomain (19ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (28ms) + LoadAllAssembliesAndSetupDomain (1653ms) + LoadAssemblies (1549ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (234ms) - TypeCache.Refresh (217ms) - TypeCache.ScanAssembly (207ms) - ScanForSourceGeneratedMonoScriptInfo (12ms) - ResolveRequiredComponents (4ms) - FinalizeReload (405ms) + AnalyzeDomain (195ms) + TypeCache.Refresh (182ms) + TypeCache.ScanAssembly (172ms) + ScanForSourceGeneratedMonoScriptInfo (11ms) + ResolveRequiredComponents (3ms) + FinalizeReload (348ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (270ms) + SetupLoadedEditorAssemblies (241ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (3ms) - SetLoadedEditorAssemblies (4ms) + SetLoadedEditorAssemblies (3ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (43ms) - ProcessInitializeOnLoadAttributes (202ms) - ProcessInitializeOnLoadMethodAttributes (16ms) + BeforeProcessingInitializeOnLoad (38ms) + ProcessInitializeOnLoadAttributes (182ms) + ProcessInitializeOnLoadMethodAttributes (13ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (6ms) -Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds -Refreshing native plugins compatible for Editor in 1.28 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (5ms) +Launched and connected shader compiler UnityShaderCompiler.exe after 0.05 seconds +Refreshing native plugins compatible for Editor in 1.48 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3115 Unused Serialized files (Serialized files now loaded: 0) -Unloading 31 unused Assets / (56.4 KB). Loaded Objects now: 3580. +Unloading 31 unused Assets / (58.5 KB). Loaded Objects now: 3580. Memory consumption went from 121.0 MB to 121.0 MB. -Total: 3.426600 ms (FindLiveObjects: 0.248200 ms CreateObjectMapping: 0.190600 ms MarkObjects: 2.897800 ms DeleteObjects: 0.089000 ms) +Total: 4.237200 ms (FindLiveObjects: 0.209900 ms CreateObjectMapping: 0.089100 ms MarkObjects: 3.781700 ms DeleteObjects: 0.155400 ms) AssetImportParameters requested are different than current active one (requested -> active): custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> @@ -179,13 +180,76 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.679 seconds -Refreshing native plugins compatible for Editor in 2.84 ms, found 3 plugins. +- Loaded All Assemblies, in 0.544 seconds +Refreshing native plugins compatible for Editor in 1.54 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.877 seconds -Domain Reload Profiling: 1557ms - BeginReloadAssembly (143ms) +- Finished resetting the current domain, in 0.742 seconds +Domain Reload Profiling: 1287ms + BeginReloadAssembly (145ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (348ms) + LoadAssemblies (256ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (183ms) + TypeCache.Refresh (180ms) + TypeCache.ScanAssembly (171ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (743ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (223ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (38ms) + ProcessInitializeOnLoadAttributes (160ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3583. +Memory consumption went from 117.0 MB to 117.0 MB. +Total: 2.631900 ms (FindLiveObjects: 0.217300 ms CreateObjectMapping: 0.070400 ms MarkObjects: 2.308200 ms DeleteObjects: 0.035700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.721 seconds +Refreshing native plugins compatible for Editor in 1.16 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.906 seconds +Domain Reload Profiling: 1627ms + BeginReloadAssembly (141ms) ExecutionOrderSort (0ms) DisableScriptedObjects (6ms) BackupInstance (0ms) @@ -193,36 +257,162 @@ Domain Reload Profiling: 1557ms CreateAndSetChildDomain (36ms) RebuildCommonClasses (33ms) RebuildNativeTypeToScriptingClass (12ms) - initialDomainReloadingComplete (28ms) - LoadAllAssembliesAndSetupDomain (463ms) - LoadAssemblies (236ms) + initialDomainReloadingComplete (27ms) + LoadAllAssembliesAndSetupDomain (507ms) + LoadAssemblies (287ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (286ms) + TypeCache.Refresh (281ms) + TypeCache.ScanAssembly (269ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (907ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (347ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (52ms) + ProcessInitializeOnLoadAttributes (259ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 2.88 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3586. +Memory consumption went from 117.0 MB to 117.0 MB. +Total: 3.460400 ms (FindLiveObjects: 0.222600 ms CreateObjectMapping: 0.079400 ms MarkObjects: 3.111700 ms DeleteObjects: 0.045900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.460 seconds +Refreshing native plugins compatible for Editor in 1.55 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.461 seconds +Domain Reload Profiling: 921ms + BeginReloadAssembly (103ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (309ms) + LoadAssemblies (173ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (294ms) - TypeCache.Refresh (288ms) - TypeCache.ScanAssembly (278ms) + AnalyzeDomain (181ms) + TypeCache.Refresh (178ms) + TypeCache.ScanAssembly (163ms) ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (461ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (231ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (40ms) + ProcessInitializeOnLoadAttributes (167ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.56 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3589. +Memory consumption went from 117.0 MB to 117.0 MB. +Total: 2.720300 ms (FindLiveObjects: 0.175000 ms CreateObjectMapping: 0.078400 ms MarkObjects: 2.422200 ms DeleteObjects: 0.043900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.846 seconds +Refreshing native plugins compatible for Editor in 2.72 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.798 seconds +Domain Reload Profiling: 1644ms + BeginReloadAssembly (199ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (45ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (42ms) + LoadAllAssembliesAndSetupDomain (545ms) + LoadAssemblies (301ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (356ms) + TypeCache.Refresh (345ms) + TypeCache.ScanAssembly (328ms) + ScanForSourceGeneratedMonoScriptInfo (5ms) ResolveRequiredComponents (6ms) - FinalizeReload (878ms) + FinalizeReload (799ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (410ms) + SetupLoadedEditorAssemblies (268ms) LogAssemblyErrors (0ms) - InitializePlatformSupportModulesInManaged (6ms) - SetLoadedEditorAssemblies (6ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (77ms) - ProcessInitializeOnLoadAttributes (292ms) - ProcessInitializeOnLoadMethodAttributes (26ms) - AfterProcessingInitializeOnLoad (3ms) + BeforeProcessingInitializeOnLoad (59ms) + ProcessInitializeOnLoadAttributes (184ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (1ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) - AwakeInstancesAfterBackupRestoration (9ms) -Refreshing native plugins compatible for Editor in 2.64 ms, found 3 plugins. + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.36 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3583. +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3592. Memory consumption went from 117.0 MB to 117.0 MB. -Total: 3.692500 ms (FindLiveObjects: 0.299600 ms CreateObjectMapping: 0.104200 ms MarkObjects: 3.227400 ms DeleteObjects: 0.059900 ms) +Total: 2.671300 ms (FindLiveObjects: 0.207800 ms CreateObjectMapping: 0.082300 ms MarkObjects: 2.329300 ms DeleteObjects: 0.051000 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): @@ -242,50 +432,50 @@ Received Prepare Begin MonoManager ReloadAssembly Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll -- Loaded All Assemblies, in 0.510 seconds -Refreshing native plugins compatible for Editor in 1.44 ms, found 3 plugins. +- Loaded All Assemblies, in 0.522 seconds +Refreshing native plugins compatible for Editor in 1.75 ms, found 3 plugins. Native extension for WindowsStandalone target not found Mono: successfully reloaded assembly -- Finished resetting the current domain, in 0.512 seconds -Domain Reload Profiling: 1023ms - BeginReloadAssembly (111ms) +- Finished resetting the current domain, in 0.590 seconds +Domain Reload Profiling: 1112ms + BeginReloadAssembly (114ms) ExecutionOrderSort (0ms) DisableScriptedObjects (5ms) BackupInstance (0ms) ReleaseScriptingObjects (0ms) CreateAndSetChildDomain (31ms) - RebuildCommonClasses (26ms) - RebuildNativeTypeToScriptingClass (9ms) - initialDomainReloadingComplete (21ms) - LoadAllAssembliesAndSetupDomain (342ms) - LoadAssemblies (179ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (23ms) + LoadAllAssembliesAndSetupDomain (346ms) + LoadAssemblies (193ms) RebuildTransferFunctionScriptingTraits (0ms) - AnalyzeDomain (214ms) - TypeCache.Refresh (211ms) - TypeCache.ScanAssembly (201ms) + AnalyzeDomain (205ms) + TypeCache.Refresh (202ms) + TypeCache.ScanAssembly (192ms) ScanForSourceGeneratedMonoScriptInfo (0ms) - ResolveRequiredComponents (3ms) - FinalizeReload (514ms) + ResolveRequiredComponents (4ms) + FinalizeReload (590ms) ReleaseScriptCaches (0ms) RebuildScriptCaches (0ms) - SetupLoadedEditorAssemblies (267ms) + SetupLoadedEditorAssemblies (291ms) LogAssemblyErrors (0ms) InitializePlatformSupportModulesInManaged (4ms) SetLoadedEditorAssemblies (4ms) RefreshPlugins (0ms) - BeforeProcessingInitializeOnLoad (48ms) - ProcessInitializeOnLoadAttributes (193ms) - ProcessInitializeOnLoadMethodAttributes (17ms) + BeforeProcessingInitializeOnLoad (51ms) + ProcessInitializeOnLoadAttributes (211ms) + ProcessInitializeOnLoadMethodAttributes (18ms) AfterProcessingInitializeOnLoad (2ms) EditorAssembliesLoaded (0ms) ExecutionOrderSort2 (0ms) AwakeInstancesAfterBackupRestoration (6ms) -Refreshing native plugins compatible for Editor in 1.38 ms, found 3 plugins. +Refreshing native plugins compatible for Editor in 1.53 ms, found 3 plugins. Preloading 0 native plugins for Editor in 0.00 ms. Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) -Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3586. +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3595. Memory consumption went from 117.0 MB to 117.0 MB. -Total: 2.754400 ms (FindLiveObjects: 0.188100 ms CreateObjectMapping: 0.083600 ms MarkObjects: 2.442700 ms DeleteObjects: 0.038900 ms) +Total: 3.542700 ms (FindLiveObjects: 0.207000 ms CreateObjectMapping: 0.090900 ms MarkObjects: 3.182000 ms DeleteObjects: 0.061400 ms) Prepare: number of updated asset objects reloaded= 0 AssetImportParameters requested are different than current active one (requested -> active): diff --git a/LMC/Logs/AssetImportWorker1.log b/LMC/Logs/AssetImportWorker1.log new file mode 100644 index 00000000..df347bc8 --- /dev/null +++ b/LMC/Logs/AssetImportWorker1.log @@ -0,0 +1,4964 @@ +Using pre-set license +Built from '2022.3/release' branch; Version is '2022.3.0f1 (fb119bb0b476) revision 16454043'; Using compiler version '192829333'; Build Type 'Release' +OS: 'Windows 11 (10.0.22621) 64bit CoreSingleLanguage' Language: 'en' Physical Memory: 7812 MB +BatchMode: 1, IsHumanControllingUs: 0, StartBugReporterOnCrash: 0, Is64bit: 1, IsPro: 1 + +COMMAND LINE ARGUMENTS: +D:\Duong-Desktop\Unity\Hub\Editor\2022.3.0f1\Editor\Unity.exe +-adb2 +-batchMode +-noUpm +-name +AssetImportWorker1 +-projectPath +D:/Duong-Desktop/LittleManComputer/LMC +-logFile +Logs/AssetImportWorker1.log +-srvPort +64814 +Successfully changed project path to: D:/Duong-Desktop/LittleManComputer/LMC +D:/Duong-Desktop/LittleManComputer/LMC +[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-allocator-temp-initial-block-size-main=262144" + "memorysetup-allocator-temp-initial-block-size-worker=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 [33260] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 3402406960 [EditorId] 3402406960 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined multi-casting on [225.0.0.222:54997]... + +Player connection [33260] Host "[IP] 192.168.86.27 [Port] 0 [Flags] 2 [Guid] 3402406960 [EditorId] 3402406960 [Version] 1048832 [Id] WindowsEditor(7,LAPTOP-P0OO9OAS) [Debug] 1 [PackageName] WindowsEditor [ProjectName] Editor" joined alternative multi-casting on [225.0.0.222:34997]... + +Refreshing native plugins compatible for Editor in 13.51 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Initialize engine version: 2022.3.0f1 (fb119bb0b476) +[Subsystems] Discovering subsystems at path D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/Resources/UnitySubsystems +[Subsystems] Discovering subsystems at path D:/Duong-Desktop/LittleManComputer/LMC/Assets +GfxDevice: creating device client; threaded=0; jobified=0 +Direct3D: + Version: Direct3D 11.0 [level 11.1] + Renderer: NVIDIA GeForce RTX 3050 Laptop GPU (ID=0x25a2) + Vendor: NVIDIA + VRAM: 3991 MB + Driver: 31.0.15.1691 +Initialize mono +Mono path[0] = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/Managed' +Mono path[1] = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/MonoBleedingEdge/lib/mono/unityjit-win32' +Mono config path = 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/MonoBleedingEdge/etc' +Using monoOptions --debugger-agent=transport=dt_socket,embedding=1,server=y,suspend=n,address=127.0.0.1:56024 +Begin MonoManager ReloadAssembly +Registering precompiled unity dll's ... +Register platform support module: D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/PlaybackEngines/WindowsStandaloneSupport/UnityEditor.WindowsStandalone.Extensions.dll +Registered in 0.003576 seconds. +- Loaded All Assemblies, in 0.334 seconds +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.246 seconds +Domain Reload Profiling: 581ms + BeginReloadAssembly (121ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (0ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (1ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (48ms) + LoadAllAssembliesAndSetupDomain (128ms) + LoadAssemblies (120ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (126ms) + TypeCache.Refresh (125ms) + TypeCache.ScanAssembly (113ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (1ms) + FinalizeReload (247ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (194ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (7ms) + SetLoadedEditorAssemblies (7ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (2ms) + ProcessInitializeOnLoadAttributes (120ms) + ProcessInitializeOnLoadMethodAttributes (58ms) + AfterProcessingInitializeOnLoad (0ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (0ms) +======================================================================== +Worker process is ready to serve import requests +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.910 seconds +Refreshing native plugins compatible for Editor in 17.33 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.612 seconds +Domain Reload Profiling: 1524ms + BeginReloadAssembly (108ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (18ms) + RebuildCommonClasses (30ms) + RebuildNativeTypeToScriptingClass (11ms) + initialDomainReloadingComplete (35ms) + LoadAllAssembliesAndSetupDomain (727ms) + LoadAssemblies (438ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (343ms) + TypeCache.Refresh (313ms) + TypeCache.ScanAssembly (298ms) + ScanForSourceGeneratedMonoScriptInfo (25ms) + ResolveRequiredComponents (5ms) + FinalizeReload (613ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (378ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (58ms) + ProcessInitializeOnLoadAttributes (289ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Launched and connected shader compiler UnityShaderCompiler.exe after 0.04 seconds +Refreshing native plugins compatible for Editor in 3.62 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3115 Unused Serialized files (Serialized files now loaded: 0) +Unloading 31 unused Assets / (56.3 KB). Loaded Objects now: 3580. +Memory consumption went from 121.1 MB to 121.0 MB. +Total: 2.619800 ms (FindLiveObjects: 0.193700 ms CreateObjectMapping: 0.119400 ms MarkObjects: 2.207700 ms DeleteObjects: 0.097900 ms) + +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.593 seconds +Refreshing native plugins compatible for Editor in 1.99 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.818 seconds +Domain Reload Profiling: 1412ms + BeginReloadAssembly (151ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (388ms) + LoadAssemblies (263ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (215ms) + TypeCache.Refresh (210ms) + TypeCache.ScanAssembly (201ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (819ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (288ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (50ms) + ProcessInitializeOnLoadAttributes (208ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 1.58 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3583. +Memory consumption went from 117.1 MB to 117.0 MB. +Total: 3.460200 ms (FindLiveObjects: 0.310700 ms CreateObjectMapping: 0.092100 ms MarkObjects: 2.997200 ms DeleteObjects: 0.059200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 1.339 seconds +Refreshing native plugins compatible for Editor in 1.20 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.050 seconds +Domain Reload Profiling: 2391ms + BeginReloadAssembly (509ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (19ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (325ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (24ms) + LoadAllAssembliesAndSetupDomain (773ms) + LoadAssemblies (515ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (338ms) + TypeCache.Refresh (330ms) + TypeCache.ScanAssembly (252ms) + ScanForSourceGeneratedMonoScriptInfo (6ms) + ResolveRequiredComponents (3ms) + FinalizeReload (1051ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (250ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (48ms) + ProcessInitializeOnLoadAttributes (176ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.65 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3586. +Memory consumption went from 117.1 MB to 117.0 MB. +Total: 4.051100 ms (FindLiveObjects: 0.173400 ms CreateObjectMapping: 0.076300 ms MarkObjects: 3.613100 ms DeleteObjects: 0.187300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.486 seconds +Refreshing native plugins compatible for Editor in 1.38 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.478 seconds +Domain Reload Profiling: 964ms + BeginReloadAssembly (106ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (330ms) + LoadAssemblies (204ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (174ms) + TypeCache.Refresh (170ms) + TypeCache.ScanAssembly (162ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (478ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (242ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (43ms) + ProcessInitializeOnLoadAttributes (176ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.89 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3589. +Memory consumption went from 117.1 MB to 117.0 MB. +Total: 2.653800 ms (FindLiveObjects: 0.187700 ms CreateObjectMapping: 0.078100 ms MarkObjects: 2.342300 ms DeleteObjects: 0.044500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.548 seconds +Refreshing native plugins compatible for Editor in 1.43 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.851 seconds +Domain Reload Profiling: 1399ms + BeginReloadAssembly (108ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (21ms) + LoadAllAssembliesAndSetupDomain (381ms) + LoadAssemblies (226ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (205ms) + TypeCache.Refresh (201ms) + TypeCache.ScanAssembly (192ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (852ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (288ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (51ms) + ProcessInitializeOnLoadAttributes (207ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.65 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3592. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 3.106300 ms (FindLiveObjects: 0.237800 ms CreateObjectMapping: 0.109200 ms MarkObjects: 2.707300 ms DeleteObjects: 0.050700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.523 seconds +Refreshing native plugins compatible for Editor in 1.49 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.577 seconds +Domain Reload Profiling: 1100ms + BeginReloadAssembly (110ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (21ms) + LoadAllAssembliesAndSetupDomain (356ms) + LoadAssemblies (190ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (214ms) + TypeCache.Refresh (209ms) + TypeCache.ScanAssembly (201ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (577ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (301ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (217ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 1.52 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3595. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 3.325200 ms (FindLiveObjects: 0.266800 ms CreateObjectMapping: 0.090000 ms MarkObjects: 2.898400 ms DeleteObjects: 0.068700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.456 seconds +Refreshing native plugins compatible for Editor in 1.55 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.485 seconds +Domain Reload Profiling: 941ms + BeginReloadAssembly (102ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (304ms) + LoadAssemblies (166ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (184ms) + TypeCache.Refresh (178ms) + TypeCache.ScanAssembly (169ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (3ms) + FinalizeReload (485ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (239ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (44ms) + ProcessInitializeOnLoadAttributes (170ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3598. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.482800 ms (FindLiveObjects: 0.167200 ms CreateObjectMapping: 0.065000 ms MarkObjects: 2.214000 ms DeleteObjects: 0.035700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.449 seconds +Refreshing native plugins compatible for Editor in 1.46 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.472 seconds +Domain Reload Profiling: 921ms + BeginReloadAssembly (99ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (299ms) + LoadAssemblies (167ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (177ms) + TypeCache.Refresh (174ms) + TypeCache.ScanAssembly (166ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (472ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (253ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (44ms) + ProcessInitializeOnLoadAttributes (183ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.82 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3601. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.824300 ms (FindLiveObjects: 0.196700 ms CreateObjectMapping: 0.094600 ms MarkObjects: 2.494300 ms DeleteObjects: 0.037900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.589 seconds +Refreshing native plugins compatible for Editor in 1.71 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.606 seconds +Domain Reload Profiling: 1194ms + BeginReloadAssembly (122ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (31ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (30ms) + LoadAllAssembliesAndSetupDomain (395ms) + LoadAssemblies (201ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (251ms) + TypeCache.Refresh (245ms) + TypeCache.ScanAssembly (236ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (4ms) + FinalizeReload (606ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (291ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (208ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.47 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3604. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.927300 ms (FindLiveObjects: 0.205400 ms CreateObjectMapping: 0.205500 ms MarkObjects: 2.477900 ms DeleteObjects: 0.037600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.720 seconds +Refreshing native plugins compatible for Editor in 2.21 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.822 seconds +Domain Reload Profiling: 1542ms + BeginReloadAssembly (137ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (28ms) + LoadAllAssembliesAndSetupDomain (508ms) + LoadAssemblies (291ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (289ms) + TypeCache.Refresh (281ms) + TypeCache.ScanAssembly (272ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (822ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (347ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (260ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 2.03 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3607. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.848100 ms (FindLiveObjects: 0.265100 ms CreateObjectMapping: 0.100100 ms MarkObjects: 2.445300 ms DeleteObjects: 0.036500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.438 seconds +Refreshing native plugins compatible for Editor in 1.83 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.514 seconds +Domain Reload Profiling: 953ms + BeginReloadAssembly (96ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (294ms) + LoadAssemblies (157ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (179ms) + TypeCache.Refresh (176ms) + TypeCache.ScanAssembly (168ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (515ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (268ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (49ms) + ProcessInitializeOnLoadAttributes (193ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.09 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3610. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.332700 ms (FindLiveObjects: 0.199300 ms CreateObjectMapping: 0.088200 ms MarkObjects: 1.997900 ms DeleteObjects: 0.046200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.483 seconds +Refreshing native plugins compatible for Editor in 1.57 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.802 seconds +Domain Reload Profiling: 1285ms + BeginReloadAssembly (105ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (326ms) + LoadAssemblies (184ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (186ms) + TypeCache.Refresh (183ms) + TypeCache.ScanAssembly (174ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (802ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (264ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (44ms) + ProcessInitializeOnLoadAttributes (194ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.58 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3613. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.769200 ms (FindLiveObjects: 0.204700 ms CreateObjectMapping: 0.092600 ms MarkObjects: 2.433000 ms DeleteObjects: 0.038000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.454 seconds +Refreshing native plugins compatible for Editor in 1.34 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.471 seconds +Domain Reload Profiling: 925ms + BeginReloadAssembly (105ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (300ms) + LoadAssemblies (168ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (177ms) + TypeCache.Refresh (173ms) + TypeCache.ScanAssembly (165ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (471ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (236ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (43ms) + ProcessInitializeOnLoadAttributes (169ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (4ms) +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3616. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.298200 ms (FindLiveObjects: 0.156500 ms CreateObjectMapping: 0.062600 ms MarkObjects: 2.042700 ms DeleteObjects: 0.035700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.433 seconds +Refreshing native plugins compatible for Editor in 1.61 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.461 seconds +Domain Reload Profiling: 894ms + BeginReloadAssembly (98ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (287ms) + LoadAssemblies (158ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (171ms) + TypeCache.Refresh (168ms) + TypeCache.ScanAssembly (161ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (461ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (243ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (173ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (4ms) +Refreshing native plugins compatible for Editor in 1.30 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3619. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.782200 ms (FindLiveObjects: 0.235200 ms CreateObjectMapping: 0.150900 ms MarkObjects: 2.359700 ms DeleteObjects: 0.035500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.675 seconds +Refreshing native plugins compatible for Editor in 3.97 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.799 seconds +Domain Reload Profiling: 1474ms + BeginReloadAssembly (143ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + RebuildCommonClasses (38ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (29ms) + LoadAllAssembliesAndSetupDomain (450ms) + LoadAssemblies (252ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (266ms) + TypeCache.Refresh (258ms) + TypeCache.ScanAssembly (248ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (5ms) + FinalizeReload (800ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (348ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (62ms) + ProcessInitializeOnLoadAttributes (250ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 2.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3622. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 4.482100 ms (FindLiveObjects: 0.277400 ms CreateObjectMapping: 0.092200 ms MarkObjects: 4.067200 ms DeleteObjects: 0.044000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.490 seconds +Refreshing native plugins compatible for Editor in 1.46 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.518 seconds +Domain Reload Profiling: 1008ms + BeginReloadAssembly (104ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (21ms) + LoadAllAssembliesAndSetupDomain (328ms) + LoadAssemblies (168ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (206ms) + TypeCache.Refresh (203ms) + TypeCache.ScanAssembly (194ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (518ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (257ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (187ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.26 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3625. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.603100 ms (FindLiveObjects: 0.231500 ms CreateObjectMapping: 0.094500 ms MarkObjects: 2.233000 ms DeleteObjects: 0.042800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.443 seconds +Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.473 seconds +Domain Reload Profiling: 915ms + BeginReloadAssembly (106ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (288ms) + LoadAssemblies (168ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (172ms) + TypeCache.Refresh (167ms) + TypeCache.ScanAssembly (159ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (473ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (241ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (44ms) + ProcessInitializeOnLoadAttributes (170ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.25 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3628. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.428600 ms (FindLiveObjects: 0.189900 ms CreateObjectMapping: 0.071600 ms MarkObjects: 2.121900 ms DeleteObjects: 0.044100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.433 seconds +Refreshing native plugins compatible for Editor in 1.49 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.446 seconds +Domain Reload Profiling: 879ms + BeginReloadAssembly (96ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (289ms) + LoadAssemblies (162ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (169ms) + TypeCache.Refresh (165ms) + TypeCache.ScanAssembly (158ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (446ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (228ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (42ms) + ProcessInitializeOnLoadAttributes (164ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (4ms) +Refreshing native plugins compatible for Editor in 1.30 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3631. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.359600 ms (FindLiveObjects: 0.179400 ms CreateObjectMapping: 0.071600 ms MarkObjects: 2.069600 ms DeleteObjects: 0.038200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.446 seconds +Refreshing native plugins compatible for Editor in 1.29 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.454 seconds +Domain Reload Profiling: 901ms + BeginReloadAssembly (98ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (24ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (301ms) + LoadAssemblies (174ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (171ms) + TypeCache.Refresh (167ms) + TypeCache.ScanAssembly (159ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (455ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (232ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (44ms) + ProcessInitializeOnLoadAttributes (167ms) + ProcessInitializeOnLoadMethodAttributes (14ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.08 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3634. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.160700 ms (FindLiveObjects: 0.175100 ms CreateObjectMapping: 0.065700 ms MarkObjects: 1.882800 ms DeleteObjects: 0.036400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.426 seconds +Refreshing native plugins compatible for Editor in 1.01 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.473 seconds +Domain Reload Profiling: 900ms + BeginReloadAssembly (99ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (25ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (278ms) + LoadAssemblies (156ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (168ms) + TypeCache.Refresh (164ms) + TypeCache.ScanAssembly (157ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (474ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (247ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (42ms) + ProcessInitializeOnLoadAttributes (182ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3637. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.497000 ms (FindLiveObjects: 0.214700 ms CreateObjectMapping: 0.091800 ms MarkObjects: 2.149300 ms DeleteObjects: 0.040300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.703 seconds +Refreshing native plugins compatible for Editor in 2.28 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.787 seconds +Domain Reload Profiling: 1490ms + BeginReloadAssembly (160ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (45ms) + RebuildCommonClasses (44ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (31ms) + LoadAllAssembliesAndSetupDomain (454ms) + LoadAssemblies (251ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (284ms) + TypeCache.Refresh (275ms) + TypeCache.ScanAssembly (265ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (5ms) + FinalizeReload (788ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (354ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (61ms) + ProcessInitializeOnLoadAttributes (260ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 2.26 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3640. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 3.591000 ms (FindLiveObjects: 0.303700 ms CreateObjectMapping: 0.097700 ms MarkObjects: 3.138600 ms DeleteObjects: 0.049600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.479 seconds +Refreshing native plugins compatible for Editor in 1.57 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.491 seconds +Domain Reload Profiling: 970ms + BeginReloadAssembly (105ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (317ms) + LoadAssemblies (164ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (201ms) + TypeCache.Refresh (197ms) + TypeCache.ScanAssembly (189ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (491ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (245ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (42ms) + ProcessInitializeOnLoadAttributes (179ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3643. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.577300 ms (FindLiveObjects: 0.201900 ms CreateObjectMapping: 0.086800 ms MarkObjects: 2.233900 ms DeleteObjects: 0.053800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.436 seconds +Refreshing native plugins compatible for Editor in 1.18 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.457 seconds +Domain Reload Profiling: 894ms + BeginReloadAssembly (99ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (287ms) + LoadAssemblies (159ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (174ms) + TypeCache.Refresh (170ms) + TypeCache.ScanAssembly (163ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (458ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (232ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (167ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.83 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3646. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.555700 ms (FindLiveObjects: 0.278600 ms CreateObjectMapping: 0.112600 ms MarkObjects: 2.129900 ms DeleteObjects: 0.033500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.447 seconds +Refreshing native plugins compatible for Editor in 1.42 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.459 seconds +Domain Reload Profiling: 907ms + BeginReloadAssembly (100ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (298ms) + LoadAssemblies (158ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (185ms) + TypeCache.Refresh (182ms) + TypeCache.ScanAssembly (174ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (460ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (234ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (168ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.50 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3649. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 3.647400 ms (FindLiveObjects: 0.224700 ms CreateObjectMapping: 0.098200 ms MarkObjects: 3.279700 ms DeleteObjects: 0.043200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.504 seconds +Refreshing native plugins compatible for Editor in 1.65 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.535 seconds +Domain Reload Profiling: 1039ms + BeginReloadAssembly (108ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (21ms) + LoadAllAssembliesAndSetupDomain (337ms) + LoadAssemblies (183ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (204ms) + TypeCache.Refresh (198ms) + TypeCache.ScanAssembly (191ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (535ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (275ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (42ms) + ProcessInitializeOnLoadAttributes (206ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.21 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3652. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.425000 ms (FindLiveObjects: 0.201700 ms CreateObjectMapping: 0.088000 ms MarkObjects: 2.096300 ms DeleteObjects: 0.038200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.488 seconds +Refreshing native plugins compatible for Editor in 1.58 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.527 seconds +Domain Reload Profiling: 1016ms + BeginReloadAssembly (108ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (323ms) + LoadAssemblies (174ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (200ms) + TypeCache.Refresh (196ms) + TypeCache.ScanAssembly (188ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (528ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (284ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (49ms) + ProcessInitializeOnLoadAttributes (208ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.53 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3655. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.632100 ms (FindLiveObjects: 0.351200 ms CreateObjectMapping: 0.085000 ms MarkObjects: 2.154300 ms DeleteObjects: 0.040800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.482 seconds +Refreshing native plugins compatible for Editor in 1.42 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.543 seconds +Domain Reload Profiling: 1025ms + BeginReloadAssembly (100ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (21ms) + LoadAllAssembliesAndSetupDomain (323ms) + LoadAssemblies (167ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (202ms) + TypeCache.Refresh (196ms) + TypeCache.ScanAssembly (188ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (4ms) + FinalizeReload (544ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (288ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (215ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.20 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3658. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.466200 ms (FindLiveObjects: 0.194500 ms CreateObjectMapping: 0.081700 ms MarkObjects: 2.151900 ms DeleteObjects: 0.037100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.467 seconds +Refreshing native plugins compatible for Editor in 1.66 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.543 seconds +Domain Reload Profiling: 1011ms + BeginReloadAssembly (104ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (21ms) + LoadAllAssembliesAndSetupDomain (308ms) + LoadAssemblies (160ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (193ms) + TypeCache.Refresh (190ms) + TypeCache.ScanAssembly (181ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (544ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (291ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (6ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (51ms) + ProcessInitializeOnLoadAttributes (211ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.58 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3661. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.627900 ms (FindLiveObjects: 0.233000 ms CreateObjectMapping: 0.083000 ms MarkObjects: 2.268200 ms DeleteObjects: 0.042700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.494 seconds +Refreshing native plugins compatible for Editor in 1.73 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.539 seconds +Domain Reload Profiling: 1034ms + BeginReloadAssembly (108ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (331ms) + LoadAssemblies (171ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (210ms) + TypeCache.Refresh (206ms) + TypeCache.ScanAssembly (197ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (540ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (264ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (191ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.33 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3664. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.515200 ms (FindLiveObjects: 0.194200 ms CreateObjectMapping: 0.088100 ms MarkObjects: 2.196400 ms DeleteObjects: 0.035600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.504 seconds +Refreshing native plugins compatible for Editor in 1.58 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.495 seconds +Domain Reload Profiling: 998ms + BeginReloadAssembly (107ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (337ms) + LoadAssemblies (179ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (208ms) + TypeCache.Refresh (203ms) + TypeCache.ScanAssembly (195ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (495ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (236ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (159ms) + ProcessInitializeOnLoadMethodAttributes (14ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.29 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3667. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.590400 ms (FindLiveObjects: 0.229000 ms CreateObjectMapping: 0.103500 ms MarkObjects: 2.220900 ms DeleteObjects: 0.036500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.487 seconds +Refreshing native plugins compatible for Editor in 1.80 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.509 seconds +Domain Reload Profiling: 996ms + BeginReloadAssembly (104ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (21ms) + LoadAllAssembliesAndSetupDomain (326ms) + LoadAssemblies (171ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (203ms) + TypeCache.Refresh (200ms) + TypeCache.ScanAssembly (191ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (509ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (254ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (180ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3670. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.628500 ms (FindLiveObjects: 0.233500 ms CreateObjectMapping: 0.099900 ms MarkObjects: 2.251700 ms DeleteObjects: 0.042500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.452 seconds +Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.453 seconds +Domain Reload Profiling: 905ms + BeginReloadAssembly (102ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (299ms) + LoadAssemblies (166ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (176ms) + TypeCache.Refresh (172ms) + TypeCache.ScanAssembly (164ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (453ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (226ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (43ms) + ProcessInitializeOnLoadAttributes (159ms) + ProcessInitializeOnLoadMethodAttributes (14ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3673. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.275800 ms (FindLiveObjects: 0.186600 ms CreateObjectMapping: 0.084000 ms MarkObjects: 1.965700 ms DeleteObjects: 0.038900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.431 seconds +Refreshing native plugins compatible for Editor in 1.66 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.471 seconds +Domain Reload Profiling: 902ms + BeginReloadAssembly (95ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (286ms) + LoadAssemblies (152ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (176ms) + TypeCache.Refresh (173ms) + TypeCache.ScanAssembly (165ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (471ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (246ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (178ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3676. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.441700 ms (FindLiveObjects: 0.208100 ms CreateObjectMapping: 0.087500 ms MarkObjects: 2.105200 ms DeleteObjects: 0.039900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.493 seconds +Refreshing native plugins compatible for Editor in 1.46 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.478 seconds +Domain Reload Profiling: 971ms + BeginReloadAssembly (107ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (333ms) + LoadAssemblies (181ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (200ms) + TypeCache.Refresh (197ms) + TypeCache.ScanAssembly (188ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (478ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (233ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (39ms) + ProcessInitializeOnLoadAttributes (167ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.42 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3679. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.530300 ms (FindLiveObjects: 0.196800 ms CreateObjectMapping: 0.092100 ms MarkObjects: 2.206000 ms DeleteObjects: 0.034600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.436 seconds +Refreshing native plugins compatible for Editor in 1.36 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.461 seconds +Domain Reload Profiling: 897ms + BeginReloadAssembly (97ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (26ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (288ms) + LoadAssemblies (155ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (176ms) + TypeCache.Refresh (171ms) + TypeCache.ScanAssembly (163ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (462ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (218ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (46ms) + ProcessInitializeOnLoadAttributes (151ms) + ProcessInitializeOnLoadMethodAttributes (12ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (4ms) +Refreshing native plugins compatible for Editor in 1.18 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3682. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.264400 ms (FindLiveObjects: 0.275900 ms CreateObjectMapping: 0.098800 ms MarkObjects: 1.857900 ms DeleteObjects: 0.031300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.483 seconds +Refreshing native plugins compatible for Editor in 1.12 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.732 seconds +Domain Reload Profiling: 1215ms + BeginReloadAssembly (104ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (329ms) + LoadAssemblies (189ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (184ms) + TypeCache.Refresh (180ms) + TypeCache.ScanAssembly (171ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (733ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (212ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (38ms) + ProcessInitializeOnLoadAttributes (153ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (4ms) +Refreshing native plugins compatible for Editor in 1.23 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3685. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.231200 ms (FindLiveObjects: 0.226100 ms CreateObjectMapping: 0.081400 ms MarkObjects: 1.885900 ms DeleteObjects: 0.036700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.473 seconds +Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.473 seconds +Domain Reload Profiling: 946ms + BeginReloadAssembly (102ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (321ms) + LoadAssemblies (173ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (193ms) + TypeCache.Refresh (190ms) + TypeCache.ScanAssembly (181ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (473ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (228ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (40ms) + ProcessInitializeOnLoadAttributes (164ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.41 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3688. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.320900 ms (FindLiveObjects: 0.185000 ms CreateObjectMapping: 0.074100 ms MarkObjects: 2.025200 ms DeleteObjects: 0.035700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.952 seconds +Refreshing native plugins compatible for Editor in 3.77 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.256 seconds +Domain Reload Profiling: 2208ms + BeginReloadAssembly (195ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (65ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (15ms) + initialDomainReloadingComplete (37ms) + LoadAllAssembliesAndSetupDomain (667ms) + LoadAssemblies (464ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (287ms) + TypeCache.Refresh (273ms) + TypeCache.ScanAssembly (263ms) + ScanForSourceGeneratedMonoScriptInfo (7ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1256ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (374ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (75ms) + ProcessInitializeOnLoadAttributes (265ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.74 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3691. +Memory consumption went from 117.1 MB to 117.1 MB. +Total: 2.361300 ms (FindLiveObjects: 0.192800 ms CreateObjectMapping: 0.070500 ms MarkObjects: 2.058500 ms DeleteObjects: 0.038600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.448 seconds +Refreshing native plugins compatible for Editor in 1.34 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.494 seconds +Domain Reload Profiling: 943ms + BeginReloadAssembly (105ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (295ms) + LoadAssemblies (164ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (177ms) + TypeCache.Refresh (170ms) + TypeCache.ScanAssembly (163ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (7ms) + FinalizeReload (495ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (249ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (41ms) + ProcessInitializeOnLoadAttributes (181ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.68 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3694. +Memory consumption went from 117.2 MB to 117.1 MB. +Total: 2.384100 ms (FindLiveObjects: 0.313500 ms CreateObjectMapping: 0.098000 ms MarkObjects: 1.938700 ms DeleteObjects: 0.033000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.980 seconds +Refreshing native plugins compatible for Editor in 2.76 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 1.036 seconds +Domain Reload Profiling: 2016ms + BeginReloadAssembly (212ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (14ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (54ms) + RebuildCommonClasses (42ms) + RebuildNativeTypeToScriptingClass (16ms) + initialDomainReloadingComplete (31ms) + LoadAllAssembliesAndSetupDomain (679ms) + LoadAssemblies (432ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (343ms) + TypeCache.Refresh (332ms) + TypeCache.ScanAssembly (317ms) + ScanForSourceGeneratedMonoScriptInfo (4ms) + ResolveRequiredComponents (7ms) + FinalizeReload (1036ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (277ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (47ms) + ProcessInitializeOnLoadAttributes (202ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.28 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3697. +Memory consumption went from 117.2 MB to 117.1 MB. +Total: 3.308200 ms (FindLiveObjects: 0.218900 ms CreateObjectMapping: 0.091000 ms MarkObjects: 2.950400 ms DeleteObjects: 0.046700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.516 seconds +Refreshing native plugins compatible for Editor in 1.58 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.561 seconds +Domain Reload Profiling: 1078ms + BeginReloadAssembly (110ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (351ms) + LoadAssemblies (178ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (221ms) + TypeCache.Refresh (217ms) + TypeCache.ScanAssembly (209ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (562ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (301ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (215ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3700. +Memory consumption went from 117.2 MB to 117.1 MB. +Total: 3.096400 ms (FindLiveObjects: 0.439900 ms CreateObjectMapping: 0.124800 ms MarkObjects: 2.483300 ms DeleteObjects: 0.047400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.690 seconds +Refreshing native plugins compatible for Editor in 2.68 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.835 seconds +Domain Reload Profiling: 1525ms + BeginReloadAssembly (144ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (44ms) + RebuildNativeTypeToScriptingClass (18ms) + initialDomainReloadingComplete (30ms) + LoadAllAssembliesAndSetupDomain (453ms) + LoadAssemblies (260ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (270ms) + TypeCache.Refresh (262ms) + TypeCache.ScanAssembly (252ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (5ms) + FinalizeReload (835ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (364ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (269ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.99 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3703. +Memory consumption went from 117.2 MB to 117.1 MB. +Total: 3.670400 ms (FindLiveObjects: 0.271400 ms CreateObjectMapping: 0.797500 ms MarkObjects: 2.558200 ms DeleteObjects: 0.042100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.661 seconds +Refreshing native plugins compatible for Editor in 1.80 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.542 seconds +Domain Reload Profiling: 1203ms + BeginReloadAssembly (156ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (27ms) + LoadAllAssembliesAndSetupDomain (429ms) + LoadAssemblies (256ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (243ms) + TypeCache.Refresh (239ms) + TypeCache.ScanAssembly (231ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (543ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (280ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (47ms) + ProcessInitializeOnLoadAttributes (204ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.29 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3706. +Memory consumption went from 117.2 MB to 117.1 MB. +Total: 2.454400 ms (FindLiveObjects: 0.200200 ms CreateObjectMapping: 0.077800 ms MarkObjects: 2.137800 ms DeleteObjects: 0.036400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.530 seconds +Refreshing native plugins compatible for Editor in 1.60 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.585 seconds +Domain Reload Profiling: 1116ms + BeginReloadAssembly (113ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (21ms) + LoadAllAssembliesAndSetupDomain (361ms) + LoadAssemblies (189ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (220ms) + TypeCache.Refresh (214ms) + TypeCache.ScanAssembly (206ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (586ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (304ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (53ms) + ProcessInitializeOnLoadAttributes (220ms) + ProcessInitializeOnLoadMethodAttributes (21ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.66 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3709. +Memory consumption went from 117.2 MB to 117.1 MB. +Total: 2.942600 ms (FindLiveObjects: 0.316000 ms CreateObjectMapping: 0.111600 ms MarkObjects: 2.466300 ms DeleteObjects: 0.047500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.516 seconds +Refreshing native plugins compatible for Editor in 1.44 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.520 seconds +Domain Reload Profiling: 1036ms + BeginReloadAssembly (114ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (347ms) + LoadAssemblies (187ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (212ms) + TypeCache.Refresh (207ms) + TypeCache.ScanAssembly (199ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (520ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (257ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (183ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.29 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3712. +Memory consumption went from 117.2 MB to 117.1 MB. +Total: 2.944600 ms (FindLiveObjects: 0.270300 ms CreateObjectMapping: 0.143900 ms MarkObjects: 2.478600 ms DeleteObjects: 0.050600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.453 seconds +Refreshing native plugins compatible for Editor in 1.46 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.493 seconds +Domain Reload Profiling: 946ms + BeginReloadAssembly (103ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (3ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (299ms) + LoadAssemblies (160ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (184ms) + TypeCache.Refresh (181ms) + TypeCache.ScanAssembly (173ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (493ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (254ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (39ms) + ProcessInitializeOnLoadAttributes (188ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.88 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3715. +Memory consumption went from 117.2 MB to 117.1 MB. +Total: 2.320800 ms (FindLiveObjects: 0.201200 ms CreateObjectMapping: 0.078400 ms MarkObjects: 2.005300 ms DeleteObjects: 0.035200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.791 seconds +Refreshing native plugins compatible for Editor in 3.54 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.814 seconds +Domain Reload Profiling: 1605ms + BeginReloadAssembly (140ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (34ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (29ms) + LoadAllAssembliesAndSetupDomain (574ms) + LoadAssemblies (348ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (303ms) + TypeCache.Refresh (291ms) + TypeCache.ScanAssembly (280ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (8ms) + FinalizeReload (815ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (341ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (57ms) + ProcessInitializeOnLoadAttributes (244ms) + ProcessInitializeOnLoadMethodAttributes (27ms) + AfterProcessingInitializeOnLoad (4ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (12ms) +Refreshing native plugins compatible for Editor in 3.25 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3718. +Memory consumption went from 117.2 MB to 117.1 MB. +Total: 3.002900 ms (FindLiveObjects: 0.228900 ms CreateObjectMapping: 0.084900 ms MarkObjects: 2.649700 ms DeleteObjects: 0.038500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.495 seconds +Refreshing native plugins compatible for Editor in 1.46 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.550 seconds +Domain Reload Profiling: 1045ms + BeginReloadAssembly (103ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (338ms) + LoadAssemblies (189ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (194ms) + TypeCache.Refresh (191ms) + TypeCache.ScanAssembly (183ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (551ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (288ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (48ms) + ProcessInitializeOnLoadAttributes (211ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.52 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3721. +Memory consumption went from 117.2 MB to 117.1 MB. +Total: 2.437700 ms (FindLiveObjects: 0.180800 ms CreateObjectMapping: 0.080700 ms MarkObjects: 2.139500 ms DeleteObjects: 0.034600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.821 seconds +Refreshing native plugins compatible for Editor in 2.40 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.907 seconds +Domain Reload Profiling: 1728ms + BeginReloadAssembly (164ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (41ms) + RebuildCommonClasses (41ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (30ms) + LoadAllAssembliesAndSetupDomain (572ms) + LoadAssemblies (341ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (310ms) + TypeCache.Refresh (301ms) + TypeCache.ScanAssembly (289ms) + ScanForSourceGeneratedMonoScriptInfo (3ms) + ResolveRequiredComponents (6ms) + FinalizeReload (907ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (405ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (296ms) + ProcessInitializeOnLoadMethodAttributes (29ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (10ms) +Refreshing native plugins compatible for Editor in 1.20 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3724. +Memory consumption went from 117.2 MB to 117.1 MB. +Total: 2.294800 ms (FindLiveObjects: 0.183000 ms CreateObjectMapping: 0.077300 ms MarkObjects: 1.996700 ms DeleteObjects: 0.036700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.498 seconds +Refreshing native plugins compatible for Editor in 1.43 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.548 seconds +Domain Reload Profiling: 1047ms + BeginReloadAssembly (106ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (334ms) + LoadAssemblies (179ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (203ms) + TypeCache.Refresh (200ms) + TypeCache.ScanAssembly (192ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (549ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (289ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (47ms) + ProcessInitializeOnLoadAttributes (212ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.46 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3727. +Memory consumption went from 117.2 MB to 117.1 MB. +Total: 2.676100 ms (FindLiveObjects: 0.259100 ms CreateObjectMapping: 0.119400 ms MarkObjects: 2.259200 ms DeleteObjects: 0.037700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.470 seconds +Refreshing native plugins compatible for Editor in 1.20 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.454 seconds +Domain Reload Profiling: 924ms + BeginReloadAssembly (109ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (8ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (310ms) + LoadAssemblies (166ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (190ms) + TypeCache.Refresh (185ms) + TypeCache.ScanAssembly (177ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (454ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (230ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (39ms) + ProcessInitializeOnLoadAttributes (167ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3730. +Memory consumption went from 117.2 MB to 117.1 MB. +Total: 2.462600 ms (FindLiveObjects: 0.197500 ms CreateObjectMapping: 0.078500 ms MarkObjects: 2.148700 ms DeleteObjects: 0.037000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.480 seconds +Refreshing native plugins compatible for Editor in 1.50 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.467 seconds +Domain Reload Profiling: 947ms + BeginReloadAssembly (108ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (319ms) + LoadAssemblies (176ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (190ms) + TypeCache.Refresh (186ms) + TypeCache.ScanAssembly (179ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (467ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (230ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (46ms) + ProcessInitializeOnLoadAttributes (160ms) + ProcessInitializeOnLoadMethodAttributes (13ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.36 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3733. +Memory consumption went from 117.2 MB to 117.1 MB. +Total: 2.822300 ms (FindLiveObjects: 0.306600 ms CreateObjectMapping: 0.124700 ms MarkObjects: 2.343700 ms DeleteObjects: 0.046400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.479 seconds +Refreshing native plugins compatible for Editor in 1.17 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.521 seconds +Domain Reload Profiling: 1000ms + BeginReloadAssembly (107ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (319ms) + LoadAssemblies (173ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (195ms) + TypeCache.Refresh (192ms) + TypeCache.ScanAssembly (184ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (521ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (263ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (46ms) + ProcessInitializeOnLoadAttributes (192ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 2.06 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.7 KB). Loaded Objects now: 3736. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 4.036700 ms (FindLiveObjects: 0.253700 ms CreateObjectMapping: 0.101400 ms MarkObjects: 3.604500 ms DeleteObjects: 0.075700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.780 seconds +Refreshing native plugins compatible for Editor in 3.03 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.865 seconds +Domain Reload Profiling: 1645ms + BeginReloadAssembly (150ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (7ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + RebuildCommonClasses (43ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (30ms) + LoadAllAssembliesAndSetupDomain (542ms) + LoadAssemblies (308ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (315ms) + TypeCache.Refresh (305ms) + TypeCache.ScanAssembly (294ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (8ms) + FinalizeReload (866ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (374ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (65ms) + ProcessInitializeOnLoadAttributes (272ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 2.16 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3739. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.554800 ms (FindLiveObjects: 0.235600 ms CreateObjectMapping: 0.085900 ms MarkObjects: 3.192500 ms DeleteObjects: 0.039800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.530 seconds +Refreshing native plugins compatible for Editor in 1.20 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.569 seconds +Domain Reload Profiling: 1099ms + BeginReloadAssembly (120ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (33ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (21ms) + LoadAllAssembliesAndSetupDomain (352ms) + LoadAssemblies (189ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (217ms) + TypeCache.Refresh (214ms) + TypeCache.ScanAssembly (206ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (569ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (299ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (50ms) + ProcessInitializeOnLoadAttributes (221ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 2.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3742. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.501400 ms (FindLiveObjects: 0.206700 ms CreateObjectMapping: 0.086800 ms MarkObjects: 2.168900 ms DeleteObjects: 0.037900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.681 seconds +Refreshing native plugins compatible for Editor in 2.66 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.846 seconds +Domain Reload Profiling: 1527ms + BeginReloadAssembly (152ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (47ms) + RebuildCommonClasses (36ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (29ms) + LoadAllAssembliesAndSetupDomain (451ms) + LoadAssemblies (254ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (270ms) + TypeCache.Refresh (262ms) + TypeCache.ScanAssembly (253ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (847ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (365ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (60ms) + ProcessInitializeOnLoadAttributes (269ms) + ProcessInitializeOnLoadMethodAttributes (23ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (9ms) +Refreshing native plugins compatible for Editor in 2.35 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3745. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.309100 ms (FindLiveObjects: 0.371300 ms CreateObjectMapping: 0.111200 ms MarkObjects: 2.785500 ms DeleteObjects: 0.040000 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.515 seconds +Refreshing native plugins compatible for Editor in 1.27 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.526 seconds +Domain Reload Profiling: 1041ms + BeginReloadAssembly (112ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (5ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (28ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (23ms) + LoadAllAssembliesAndSetupDomain (342ms) + LoadAssemblies (177ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (217ms) + TypeCache.Refresh (212ms) + TypeCache.ScanAssembly (203ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (526ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (269ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (197ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.38 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3748. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.045000 ms (FindLiveObjects: 0.225500 ms CreateObjectMapping: 0.096600 ms MarkObjects: 2.676500 ms DeleteObjects: 0.045200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.446 seconds +Refreshing native plugins compatible for Editor in 1.11 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.426 seconds +Domain Reload Profiling: 872ms + BeginReloadAssembly (99ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (297ms) + LoadAssemblies (162ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (179ms) + TypeCache.Refresh (174ms) + TypeCache.ScanAssembly (166ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (3ms) + FinalizeReload (427ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (204ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (37ms) + ProcessInitializeOnLoadAttributes (147ms) + ProcessInitializeOnLoadMethodAttributes (12ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.22 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3751. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.470100 ms (FindLiveObjects: 0.187700 ms CreateObjectMapping: 0.070300 ms MarkObjects: 2.163700 ms DeleteObjects: 0.047600 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.435 seconds +Refreshing native plugins compatible for Editor in 1.73 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.454 seconds +Domain Reload Profiling: 890ms + BeginReloadAssembly (100ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (23ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (285ms) + LoadAssemblies (158ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (172ms) + TypeCache.Refresh (169ms) + TypeCache.ScanAssembly (161ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (454ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (232ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (38ms) + ProcessInitializeOnLoadAttributes (170ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.80 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3754. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.381800 ms (FindLiveObjects: 0.193500 ms CreateObjectMapping: 0.197000 ms MarkObjects: 1.954400 ms DeleteObjects: 0.036200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.452 seconds +Refreshing native plugins compatible for Editor in 1.38 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.494 seconds +Domain Reload Profiling: 946ms + BeginReloadAssembly (101ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (300ms) + LoadAssemblies (159ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (185ms) + TypeCache.Refresh (181ms) + TypeCache.ScanAssembly (174ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (494ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (257ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (186ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3757. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.666600 ms (FindLiveObjects: 0.206300 ms CreateObjectMapping: 0.083300 ms MarkObjects: 2.325700 ms DeleteObjects: 0.049900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.488 seconds +Refreshing native plugins compatible for Editor in 1.70 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.494 seconds +Domain Reload Profiling: 982ms + BeginReloadAssembly (108ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (21ms) + LoadAllAssembliesAndSetupDomain (325ms) + LoadAssemblies (179ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (198ms) + TypeCache.Refresh (194ms) + TypeCache.ScanAssembly (185ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (494ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (243ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (43ms) + ProcessInitializeOnLoadAttributes (170ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.55 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3760. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.227200 ms (FindLiveObjects: 0.286600 ms CreateObjectMapping: 0.097400 ms MarkObjects: 2.795200 ms DeleteObjects: 0.047300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.707 seconds +Refreshing native plugins compatible for Editor in 3.71 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.805 seconds +Domain Reload Profiling: 1512ms + BeginReloadAssembly (155ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (37ms) + RebuildCommonClasses (39ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (28ms) + LoadAllAssembliesAndSetupDomain (471ms) + LoadAssemblies (268ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (280ms) + TypeCache.Refresh (275ms) + TypeCache.ScanAssembly (265ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (806ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (351ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (63ms) + ProcessInitializeOnLoadAttributes (257ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.66 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3763. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.643600 ms (FindLiveObjects: 0.276300 ms CreateObjectMapping: 0.158900 ms MarkObjects: 2.168300 ms DeleteObjects: 0.039200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.643 seconds +Refreshing native plugins compatible for Editor in 1.90 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.744 seconds +Domain Reload Profiling: 1387ms + BeginReloadAssembly (144ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (35ms) + RebuildCommonClasses (35ms) + RebuildNativeTypeToScriptingClass (14ms) + initialDomainReloadingComplete (32ms) + LoadAllAssembliesAndSetupDomain (418ms) + LoadAssemblies (226ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (263ms) + TypeCache.Refresh (255ms) + TypeCache.ScanAssembly (246ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (744ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (333ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (5ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (56ms) + ProcessInitializeOnLoadAttributes (243ms) + ProcessInitializeOnLoadMethodAttributes (22ms) + AfterProcessingInitializeOnLoad (3ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 2.04 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3766. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.039000 ms (FindLiveObjects: 0.260400 ms CreateObjectMapping: 0.092800 ms MarkObjects: 2.638700 ms DeleteObjects: 0.046200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.520 seconds +Refreshing native plugins compatible for Editor in 1.77 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.469 seconds +Domain Reload Profiling: 989ms + BeginReloadAssembly (145ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (32ms) + RebuildCommonClasses (33ms) + RebuildNativeTypeToScriptingClass (13ms) + initialDomainReloadingComplete (29ms) + LoadAllAssembliesAndSetupDomain (299ms) + LoadAssemblies (193ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (181ms) + TypeCache.Refresh (178ms) + TypeCache.ScanAssembly (171ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (469ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (229ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (36ms) + ProcessInitializeOnLoadAttributes (169ms) + ProcessInitializeOnLoadMethodAttributes (15ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 1.31 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3769. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.259200 ms (FindLiveObjects: 0.195000 ms CreateObjectMapping: 0.076900 ms MarkObjects: 1.950200 ms DeleteObjects: 0.036500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.645 seconds +Refreshing native plugins compatible for Editor in 2.22 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.765 seconds +Domain Reload Profiling: 1411ms + BeginReloadAssembly (135ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (32ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (28ms) + LoadAllAssembliesAndSetupDomain (438ms) + LoadAssemblies (244ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (270ms) + TypeCache.Refresh (263ms) + TypeCache.ScanAssembly (254ms) + ScanForSourceGeneratedMonoScriptInfo (2ms) + ResolveRequiredComponents (5ms) + FinalizeReload (766ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (320ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (54ms) + ProcessInitializeOnLoadAttributes (234ms) + ProcessInitializeOnLoadMethodAttributes (20ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.77 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3772. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.557300 ms (FindLiveObjects: 0.548300 ms CreateObjectMapping: 0.092400 ms MarkObjects: 2.877400 ms DeleteObjects: 0.038300 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.639 seconds +Refreshing native plugins compatible for Editor in 2.02 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.709 seconds +Domain Reload Profiling: 1348ms + BeginReloadAssembly (134ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (6ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (12ms) + initialDomainReloadingComplete (26ms) + LoadAllAssembliesAndSetupDomain (432ms) + LoadAssemblies (242ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (260ms) + TypeCache.Refresh (255ms) + TypeCache.ScanAssembly (245ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (5ms) + FinalizeReload (709ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (292ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (6ms) + SetLoadedEditorAssemblies (5ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (64ms) + ProcessInitializeOnLoadAttributes (199ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.51 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3775. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.814000 ms (FindLiveObjects: 0.221600 ms CreateObjectMapping: 0.095200 ms MarkObjects: 2.449400 ms DeleteObjects: 0.047200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.499 seconds +Refreshing native plugins compatible for Editor in 1.37 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.513 seconds +Domain Reload Profiling: 1012ms + BeginReloadAssembly (109ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (29ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (330ms) + LoadAssemblies (179ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (202ms) + TypeCache.Refresh (198ms) + TypeCache.ScanAssembly (190ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (514ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (262ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (189ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 2.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3778. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.794100 ms (FindLiveObjects: 0.246300 ms CreateObjectMapping: 0.093900 ms MarkObjects: 2.404200 ms DeleteObjects: 0.049100 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.470 seconds +Refreshing native plugins compatible for Editor in 1.14 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.507 seconds +Domain Reload Profiling: 977ms + BeginReloadAssembly (107ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (311ms) + LoadAssemblies (165ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (193ms) + TypeCache.Refresh (190ms) + TypeCache.ScanAssembly (182ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (508ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (262ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (43ms) + ProcessInitializeOnLoadAttributes (191ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.43 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3781. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.640900 ms (FindLiveObjects: 0.215500 ms CreateObjectMapping: 0.084300 ms MarkObjects: 2.301200 ms DeleteObjects: 0.038900 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.488 seconds +Refreshing native plugins compatible for Editor in 1.62 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.515 seconds +Domain Reload Profiling: 1003ms + BeginReloadAssembly (106ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (26ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (328ms) + LoadAssemblies (169ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (207ms) + TypeCache.Refresh (204ms) + TypeCache.ScanAssembly (195ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (515ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (261ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (43ms) + ProcessInitializeOnLoadAttributes (191ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.23 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3784. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.707100 ms (FindLiveObjects: 0.199600 ms CreateObjectMapping: 0.082900 ms MarkObjects: 2.386500 ms DeleteObjects: 0.037200 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.514 seconds +Refreshing native plugins compatible for Editor in 1.40 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.514 seconds +Domain Reload Profiling: 1028ms + BeginReloadAssembly (111ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (345ms) + LoadAssemblies (184ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (209ms) + TypeCache.Refresh (206ms) + TypeCache.ScanAssembly (198ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (515ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (254ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (47ms) + ProcessInitializeOnLoadAttributes (183ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.52 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3787. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.754400 ms (FindLiveObjects: 0.206200 ms CreateObjectMapping: 0.083300 ms MarkObjects: 2.426000 ms DeleteObjects: 0.037700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.495 seconds +Refreshing native plugins compatible for Editor in 1.56 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.521 seconds +Domain Reload Profiling: 1016ms + BeginReloadAssembly (109ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (31ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (9ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (331ms) + LoadAssemblies (175ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (203ms) + TypeCache.Refresh (199ms) + TypeCache.ScanAssembly (191ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (521ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (261ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (47ms) + ProcessInitializeOnLoadAttributes (186ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.55 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3790. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.778600 ms (FindLiveObjects: 0.274400 ms CreateObjectMapping: 0.087400 ms MarkObjects: 2.377200 ms DeleteObjects: 0.038800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.468 seconds +Refreshing native plugins compatible for Editor in 1.42 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.785 seconds +Domain Reload Profiling: 1253ms + BeginReloadAssembly (99ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (28ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (18ms) + LoadAllAssembliesAndSetupDomain (322ms) + LoadAssemblies (186ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (179ms) + TypeCache.Refresh (176ms) + TypeCache.ScanAssembly (168ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (786ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (246ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (43ms) + ProcessInitializeOnLoadAttributes (178ms) + ProcessInitializeOnLoadMethodAttributes (17ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.61 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3793. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.707600 ms (FindLiveObjects: 0.217300 ms CreateObjectMapping: 0.120200 ms MarkObjects: 2.328400 ms DeleteObjects: 0.040500 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.488 seconds +Refreshing native plugins compatible for Editor in 1.85 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.807 seconds +Domain Reload Profiling: 1295ms + BeginReloadAssembly (108ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (36ms) + RebuildCommonClasses (24ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (329ms) + LoadAssemblies (190ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (183ms) + TypeCache.Refresh (179ms) + TypeCache.ScanAssembly (172ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (808ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (268ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (45ms) + ProcessInitializeOnLoadAttributes (195ms) + ProcessInitializeOnLoadMethodAttributes (19ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (8ms) +Refreshing native plugins compatible for Editor in 1.72 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3796. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 3.000500 ms (FindLiveObjects: 0.252800 ms CreateObjectMapping: 0.103200 ms MarkObjects: 2.603800 ms DeleteObjects: 0.039800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.466 seconds +Refreshing native plugins compatible for Editor in 1.22 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.557 seconds +Domain Reload Profiling: 1023ms + BeginReloadAssembly (108ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (27ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (20ms) + LoadAllAssembliesAndSetupDomain (304ms) + LoadAssemblies (165ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (187ms) + TypeCache.Refresh (184ms) + TypeCache.ScanAssembly (177ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (558ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (297ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (47ms) + ProcessInitializeOnLoadAttributes (221ms) + ProcessInitializeOnLoadMethodAttributes (18ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (6ms) +Refreshing native plugins compatible for Editor in 1.50 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.5 KB). Loaded Objects now: 3799. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.623600 ms (FindLiveObjects: 0.277800 ms CreateObjectMapping: 0.093300 ms MarkObjects: 2.193600 ms DeleteObjects: 0.058400 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.441 seconds +Refreshing native plugins compatible for Editor in 1.23 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.478 seconds +Domain Reload Profiling: 920ms + BeginReloadAssembly (102ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (27ms) + RebuildCommonClasses (25ms) + RebuildNativeTypeToScriptingClass (8ms) + initialDomainReloadingComplete (19ms) + LoadAllAssembliesAndSetupDomain (286ms) + LoadAssemblies (162ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (172ms) + TypeCache.Refresh (169ms) + TypeCache.ScanAssembly (162ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (479ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (252ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (44ms) + ProcessInitializeOnLoadAttributes (183ms) + ProcessInitializeOnLoadMethodAttributes (16ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.30 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3802. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.472100 ms (FindLiveObjects: 0.287000 ms CreateObjectMapping: 0.186300 ms MarkObjects: 1.965000 ms DeleteObjects: 0.032800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.443 seconds +Refreshing native plugins compatible for Editor in 1.19 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.509 seconds +Domain Reload Profiling: 952ms + BeginReloadAssembly (101ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (30ms) + RebuildCommonClasses (22ms) + RebuildNativeTypeToScriptingClass (7ms) + initialDomainReloadingComplete (17ms) + LoadAllAssembliesAndSetupDomain (295ms) + LoadAssemblies (165ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (172ms) + TypeCache.Refresh (169ms) + TypeCache.ScanAssembly (161ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (4ms) + FinalizeReload (509ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (220ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (3ms) + SetLoadedEditorAssemblies (3ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (39ms) + ProcessInitializeOnLoadAttributes (158ms) + ProcessInitializeOnLoadMethodAttributes (14ms) + AfterProcessingInitializeOnLoad (1ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (5ms) +Refreshing native plugins compatible for Editor in 1.37 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3805. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.694800 ms (FindLiveObjects: 0.225600 ms CreateObjectMapping: 0.094200 ms MarkObjects: 2.323900 ms DeleteObjects: 0.049700 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> +======================================================================== +Received Prepare +Begin MonoManager ReloadAssembly +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\YamlDotNet\Unity.VisualScripting.YamlDotNet.dll +Symbol file LoadedFromMemory doesn't match image D:\Duong-Desktop\LittleManComputer\LMC\Library\PackageCache\com.unity.visualscripting@1.8.0\Editor\VisualScripting.Core\Dependencies\DotNetZip\Unity.VisualScripting.IonicZip.dll +- Loaded All Assemblies, in 0.511 seconds +Refreshing native plugins compatible for Editor in 1.37 ms, found 3 plugins. +Native extension for WindowsStandalone target not found +Mono: successfully reloaded assembly +- Finished resetting the current domain, in 0.542 seconds +Domain Reload Profiling: 1053ms + BeginReloadAssembly (118ms) + ExecutionOrderSort (0ms) + DisableScriptedObjects (4ms) + BackupInstance (0ms) + ReleaseScriptingObjects (0ms) + CreateAndSetChildDomain (29ms) + RebuildCommonClasses (34ms) + RebuildNativeTypeToScriptingClass (10ms) + initialDomainReloadingComplete (22ms) + LoadAllAssembliesAndSetupDomain (326ms) + LoadAssemblies (182ms) + RebuildTransferFunctionScriptingTraits (0ms) + AnalyzeDomain (205ms) + TypeCache.Refresh (201ms) + TypeCache.ScanAssembly (193ms) + ScanForSourceGeneratedMonoScriptInfo (0ms) + ResolveRequiredComponents (3ms) + FinalizeReload (542ms) + ReleaseScriptCaches (0ms) + RebuildScriptCaches (0ms) + SetupLoadedEditorAssemblies (286ms) + LogAssemblyErrors (0ms) + InitializePlatformSupportModulesInManaged (4ms) + SetLoadedEditorAssemblies (4ms) + RefreshPlugins (0ms) + BeforeProcessingInitializeOnLoad (46ms) + ProcessInitializeOnLoadAttributes (206ms) + ProcessInitializeOnLoadMethodAttributes (24ms) + AfterProcessingInitializeOnLoad (2ms) + EditorAssembliesLoaded (0ms) + ExecutionOrderSort2 (0ms) + AwakeInstancesAfterBackupRestoration (7ms) +Refreshing native plugins compatible for Editor in 1.25 ms, found 3 plugins. +Preloading 0 native plugins for Editor in 0.00 ms. +Unloading 3095 Unused Serialized files (Serialized files now loaded: 0) +Unloading 22 unused Assets / (30.6 KB). Loaded Objects now: 3808. +Memory consumption went from 117.2 MB to 117.2 MB. +Total: 2.728900 ms (FindLiveObjects: 0.202000 ms CreateObjectMapping: 0.082600 ms MarkObjects: 2.401800 ms DeleteObjects: 0.041800 ms) + +Prepare: number of updated asset objects reloaded= 0 +AssetImportParameters requested are different than current active one (requested -> active): + custom:container-demuxer-ogg: 62fdf1f143b41e24485cea50d1cbac27 -> + custom:video-codec-MediaFoundation-h265: 746d11721c4dcdbdad8f713fa42b33f4 -> + custom:video-decoder-ogg-theora: a1e56fd34408186e4bbccfd4996cb3dc -> + custom:framework-win-MediaFoundation: 216162199b28c13a410421893ffa2e32 -> + custom:container-demuxer-webm: 4f35f7cbe854078d1ac9338744f61a02 -> + custom:container-muxer-webm: aa71ff27fc2769a1b78a27578f13a17b -> + custom:video-decoder-webm-vp8: 9c59270c3fd7afecdb556c50c9e8de78 -> + custom:AudioImporter_EditorPlatform: d09bf68614088b80899f8185d706f6e7 -> + custom:video-encoder-webm-vp8: eb34c28f22e8b96e1ab97ce403110664 -> + custom:audio-decoder-ogg-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> + custom:audio-encoder-webm-vorbis: bf7c407c2cedff20999df2af8eb42d56 -> diff --git a/LMC/Logs/shadercompiler-AssetImportWorker0.log b/LMC/Logs/shadercompiler-AssetImportWorker0.log new file mode 100644 index 00000000..4f741f6a --- /dev/null +++ b/LMC/Logs/shadercompiler-AssetImportWorker0.log @@ -0,0 +1,6 @@ +Base path: 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data', plugins path 'D:/Duong-Desktop/Unity/Hub/Editor/2022.3.0f1/Editor/Data/PlaybackEngines' +Cmd: initializeCompiler + +Unhandled exception: Protocol error - failed to read magic number (error -2147483644, transferred 0/4) + +Quitting shader compiler process diff --git a/LMC/UserSettings/Layouts/default-2022.dwlt b/LMC/UserSettings/Layouts/default-2022.dwlt index 8e2b4576..802d7dc1 100644 --- a/LMC/UserSettings/Layouts/default-2022.dwlt +++ b/LMC/UserSettings/Layouts/default-2022.dwlt @@ -16,10 +16,10 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 43.2 - width: 1536 - height: 772.8 + width: 2048 + height: 1060.8 m_ShowMode: 4 - m_Title: Hierarchy + m_Title: Game m_RootView: {fileID: 2} m_MinSize: {x: 875, y: 300} m_MaxSize: {x: 10000, y: 10000} @@ -44,8 +44,8 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 1536 - height: 772.8 + width: 2048 + height: 1060.8 m_MinSize: {x: 875, y: 300} m_MaxSize: {x: 10000, y: 10000} m_UseTopView: 1 @@ -69,7 +69,7 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 1536 + width: 2048 height: 30 m_MinSize: {x: 0, y: 0} m_MaxSize: {x: 0, y: 0} @@ -90,8 +90,8 @@ MonoBehaviour: m_Position: serializedVersion: 2 x: 0 - y: 752.8 - width: 1536 + y: 1040.8 + width: 2048 height: 20 m_MinSize: {x: 0, y: 0} m_MaxSize: {x: 0, y: 0} @@ -114,8 +114,8 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 30 - width: 1536 - height: 722.8 + width: 2048 + height: 1010.80005 m_MinSize: {x: 300, y: 100} m_MaxSize: {x: 24288, y: 16192} vertical: 0 @@ -139,8 +139,8 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 1172 - height: 722.8 + width: 1562.4 + height: 1010.80005 m_MinSize: {x: 200, y: 100} m_MaxSize: {x: 16192, y: 16192} vertical: 1 @@ -164,8 +164,8 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 1172 - height: 428 + width: 1562.4 + height: 598.4 m_MinSize: {x: 200, y: 50} m_MaxSize: {x: 16192, y: 8096} vertical: 0 @@ -187,10 +187,10 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 0 - width: 289.6 - height: 428 - m_MinSize: {x: 200, y: 200} - m_MaxSize: {x: 4000, y: 4000} + width: 386.4 + height: 598.4 + m_MinSize: {x: 201, y: 221} + m_MaxSize: {x: 4001, y: 4021} m_ActualView: {fileID: 13} m_Panes: - {fileID: 13} @@ -206,23 +206,23 @@ MonoBehaviour: m_Enabled: 1 m_EditorHideFlags: 1 m_Script: {fileID: 12006, guid: 0000000000000000e000000000000000, type: 0} - m_Name: SceneView + m_Name: GameView m_EditorClassIdentifier: m_Children: [] m_Position: serializedVersion: 2 - x: 289.6 + x: 386.4 y: 0 - width: 882.4 - height: 428 + width: 1176 + height: 598.4 m_MinSize: {x: 202, y: 221} m_MaxSize: {x: 4002, y: 4021} - m_ActualView: {fileID: 14} + m_ActualView: {fileID: 15} m_Panes: - {fileID: 14} - {fileID: 15} - m_Selected: 0 - m_LastSelected: 1 + m_Selected: 1 + m_LastSelected: 0 --- !u!114 &10 MonoBehaviour: m_ObjectHideFlags: 52 @@ -239,11 +239,11 @@ MonoBehaviour: m_Position: serializedVersion: 2 x: 0 - y: 428 - width: 1172 - height: 294.8 - m_MinSize: {x: 100, y: 100} - m_MaxSize: {x: 4000, y: 4000} + y: 598.4 + width: 1562.4 + height: 412.40002 + m_MinSize: {x: 101, y: 121} + m_MaxSize: {x: 4001, y: 4021} m_ActualView: {fileID: 12} m_Panes: - {fileID: 16} @@ -265,12 +265,12 @@ MonoBehaviour: m_Children: [] m_Position: serializedVersion: 2 - x: 1172 + x: 1562.4 y: 0 - width: 364 - height: 722.8 - m_MinSize: {x: 275, y: 50} - m_MaxSize: {x: 4000, y: 4000} + width: 485.59998 + height: 1010.80005 + m_MinSize: {x: 276, y: 71} + m_MaxSize: {x: 4001, y: 4021} m_ActualView: {fileID: 17} m_Panes: - {fileID: 17} @@ -297,9 +297,9 @@ MonoBehaviour: m_Pos: serializedVersion: 2 x: 0 - y: 501.6 - width: 1171 - height: 273.8 + y: 672 + width: 1561.4 + height: 391.40002 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -332,8 +332,8 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 73.6 - width: 288.6 - height: 407 + width: 385.4 + height: 577.4 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -347,9 +347,9 @@ MonoBehaviour: m_SceneHierarchy: m_TreeViewState: scrollPos: {x: 0, y: 0} - m_SelectedIDs: 46eeffff - m_LastClickedID: -4538 - m_ExpandedIDs: 2cfbffffae5a0000 + m_SelectedIDs: c8590000 + m_LastClickedID: 22984 + m_ExpandedIDs: aaddffff2cfbffff925a0000b65a0000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -393,10 +393,10 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 289.6 + x: 386.4 y: 73.6 - width: 880.4 - height: 407 + width: 1174 + height: 577.4 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -684,9 +684,9 @@ MonoBehaviour: floating: 0 collapsed: 0 displayed: 1 - snapOffset: {x: 636.8, y: 25} + snapOffset: {x: -537.5999, y: -567.19995} snapOffsetDelta: {x: 0, y: 0} - snapCorner: 0 + snapCorner: 3 id: UnityEditor.SceneViewCameraOverlay index: 8 layout: 4 @@ -703,9 +703,9 @@ MonoBehaviour: m_PlayAudio: 0 m_AudioPlay: 0 m_Position: - m_Target: {x: 1974.8225, y: 996.4484, z: 64.18413} + m_Target: {x: 675.4541, y: 269.143, z: -281.1457} speed: 2 - m_Value: {x: 1974.8225, y: 996.4484, z: 64.18413} + m_Value: {x: 675.4541, y: 269.143, z: -281.1457} m_RenderMode: 0 m_CameraMode: drawMode: 0 @@ -733,17 +733,17 @@ MonoBehaviour: m_Size: {x: 1, y: 1} yGrid: m_Fade: - m_Target: 1 + m_Target: 0 speed: 2 - m_Value: 1 + m_Value: 0 m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4} m_Pivot: {x: 0, y: 0, z: 0} m_Size: {x: 1, y: 1} zGrid: m_Fade: - m_Target: 0 + m_Target: 1 speed: 2 - m_Value: 0 + m_Value: 1 m_Color: {r: 0.5, g: 0.5, b: 0.5, a: 0.4} m_Pivot: {x: 0, y: 0, z: 0} m_Size: {x: 1, y: 1} @@ -751,13 +751,13 @@ MonoBehaviour: m_GridAxis: 1 m_gridOpacity: 0.5 m_Rotation: - m_Target: {x: 0.034477696, y: -0.029977823, z: 0.0010343323, w: 0.9989559} + m_Target: {x: 0, y: 0, z: 0, w: 1} speed: 2 - m_Value: {x: 0.034477673, y: -0.029977804, z: 0.0010343317, w: 0.9989553} + m_Value: {x: 0, y: 0, z: 0, w: 1} m_Size: - m_Target: 1270.9103 + m_Target: 536.67914 speed: 2 - m_Value: 1270.9103 + m_Value: 536.67914 m_Ortho: m_Target: 1 speed: 2 @@ -802,10 +802,10 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 289.6 + x: 386.4 y: 73.6 - width: 880.4 - height: 407 + width: 1174 + height: 577.4 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -822,7 +822,7 @@ MonoBehaviour: m_ShowGizmos: 0 m_TargetDisplay: 0 m_ClearColor: {r: 0, g: 0, b: 0, a: 0} - m_TargetSize: {x: 3840, y: 2160} + m_TargetSize: {x: 1236, y: 695.5} m_TextureFilterMode: 0 m_TextureHideFlags: 61 m_RenderIMGUI: 1 @@ -831,16 +831,16 @@ MonoBehaviour: m_VSyncEnabled: 0 m_Gizmos: 0 m_Stats: 0 - m_SelectedSizes: 06000000000000000000000000000000000000000000000000000000000000000000000000000000 + m_SelectedSizes: 01000000000000000000000000000000000000000000000000000000000000000000000000000000 m_ZoomArea: m_HRangeLocked: 0 m_VRangeLocked: 0 hZoomLockedByDefault: 0 vZoomLockedByDefault: 0 - m_HBaseRangeMin: -1536 - m_HBaseRangeMax: 1536 - m_VBaseRangeMin: -864 - m_VBaseRangeMax: 864 + m_HBaseRangeMin: -494.4 + m_HBaseRangeMax: 494.4 + m_VBaseRangeMin: -278.2 + m_VBaseRangeMax: 278.2 m_HAllowExceedBaseRangeMin: 1 m_HAllowExceedBaseRangeMax: 1 m_VAllowExceedBaseRangeMin: 1 @@ -849,7 +849,7 @@ MonoBehaviour: m_HSlider: 0 m_VSlider: 0 m_IgnoreScrollWheelUntilClicked: 0 - m_EnableMouseInput: 0 + m_EnableMouseInput: 1 m_EnableSliderZoomHorizontal: 0 m_EnableSliderZoomVertical: 0 m_UniformScale: 1 @@ -858,26 +858,26 @@ MonoBehaviour: serializedVersion: 2 x: 0 y: 21 - width: 880.4 - height: 386 - m_Scale: {x: 0.22337963, y: 0.22337963} - m_Translation: {x: 440.2, y: 193} + width: 1174 + height: 556.4 + m_Scale: {x: 1, y: 1} + m_Translation: {x: 587, y: 278.2} m_MarginLeft: 0 m_MarginRight: 0 m_MarginTop: 0 m_MarginBottom: 0 m_LastShownAreaInsideMargins: serializedVersion: 2 - x: -1970.6364 - y: -864 - width: 3941.2727 - height: 1728 + x: -587 + y: -278.2 + width: 1174 + height: 556.4 m_MinimalGUI: 1 - m_defaultScale: 0.22337963 - m_LastWindowPixelSize: {x: 1100.5, y: 508.75} + m_defaultScale: 1 + m_LastWindowPixelSize: {x: 1467.5, y: 721.75} m_ClearInEditMode: 1 m_NoCameraWarning: 1 - m_LowResolutionForAspectRatios: 01000000000000000000 + m_LowResolutionForAspectRatios: 00000000000000000000 m_XRRenderMode: 0 m_RenderTexture: {fileID: 0} --- !u!114 &16 @@ -901,9 +901,9 @@ MonoBehaviour: m_Pos: serializedVersion: 2 x: 0 - y: 501.6 - width: 1171 - height: 273.8 + y: 672 + width: 1561.4 + height: 391.40002 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0 @@ -942,9 +942,9 @@ MonoBehaviour: m_IsLocked: 0 m_FolderTreeState: scrollPos: {x: 0, y: 0} - m_SelectedIDs: 305c0000 - m_LastClickedID: 23600 - m_ExpandedIDs: 00000000305c0000325c000000ca9a3b + m_SelectedIDs: 425c0000 + m_LastClickedID: 23618 + m_ExpandedIDs: 00000000425c0000445c000000ca9a3b m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -972,7 +972,7 @@ MonoBehaviour: scrollPos: {x: 0, y: 0} m_SelectedIDs: m_LastClickedID: 0 - m_ExpandedIDs: 00000000305c0000325c0000 + m_ExpandedIDs: 00000000425c0000445c0000 m_RenameOverlay: m_UserAcceptedRename: 0 m_Name: @@ -997,9 +997,9 @@ MonoBehaviour: m_Icon: {fileID: 0} m_ResourceFile: m_ListAreaState: - m_SelectedInstanceIDs: 1c5a0000 - m_LastClickedInstanceID: 23068 - m_HadKeyboardFocusLastEvent: 0 + m_SelectedInstanceIDs: + m_LastClickedInstanceID: 0 + m_HadKeyboardFocusLastEvent: 1 m_ExpandedInstanceIDs: c6230000147d000078590000 m_RenameOverlay: m_UserAcceptedRename: 0 @@ -1048,10 +1048,10 @@ MonoBehaviour: m_Tooltip: m_Pos: serializedVersion: 2 - x: 1172 + x: 1562.4 y: 73.6 - width: 363 - height: 701.8 + width: 484.59998 + height: 989.80005 m_SerializedDataModeController: m_DataMode: 0 m_PreferredDataMode: 0