Sync DeliveryManager

Multiplayer
Sascha 2023-03-08 11:46:52 +07:00
parent aa217a010c
commit 330161b54e
37 changed files with 2998 additions and 494 deletions

File diff suppressed because it is too large Load Diff

@ -1,9 +1,10 @@
using System;
using System.Collections.Generic;
using Unity.Netcode;
using UnityEngine;
using Random = UnityEngine.Random;
public class DeliveryManager : MonoBehaviour
public class DeliveryManager : NetworkBehaviour
{
public static DeliveryManager Instance { get; private set; }
public List<RecipeSO> WaitingRecipeSOList { get; private set; }
@ -16,7 +17,7 @@ public class DeliveryManager : MonoBehaviour
public event EventHandler OnRecipeFailed;
[SerializeField] private RecipeListSO recipeListSO;
private float spawnRecipeTimer;
private float spawnRecipeTimer = 3f;
private const float spawnRecipeTimerMax = 3f;
private const int waitingRecipesMax = 5;
@ -28,79 +29,81 @@ public class DeliveryManager : MonoBehaviour
private void Update()
{
if (!IsServer) return;
spawnRecipeTimer -= Time.deltaTime;
if (!(spawnRecipeTimer <= 0f))
{
return;
}
if (!(spawnRecipeTimer <= 0f)) return;
spawnRecipeTimer = spawnRecipeTimerMax;
if (WaitingRecipeSOList.Count >= waitingRecipesMax)
{
return;
}
if (WaitingRecipeSOList.Count >= waitingRecipesMax) return;
if (KitchenGameManager.Instance.IsGamePlaying())
{
RecipeSO waitingRecipeSO = recipeListSO.recipeSOList[Random.Range(0, recipeListSO.recipeSOList.Count)];
// Debug.Log(waitingRecipeSO.recipeName);
WaitingRecipeSOList.Add(waitingRecipeSO);
OnRecipeSpawned?.Invoke(this, EventArgs.Empty);
int waitingRecipeSOIndex = Random.Range(0, recipeListSO.recipeSOList.Count);
SpawnNewWaitingRecipeClientRpc(waitingRecipeSOIndex);
}
}
[ClientRpc]
private void SpawnNewWaitingRecipeClientRpc(int waitingRecipeSOIndex)
{
WaitingRecipeSOList.Add(recipeListSO.recipeSOList[waitingRecipeSOIndex]);
OnRecipeSpawned?.Invoke(this, EventArgs.Empty);
}
public void DeliverRecipe(PlateKitchenObject plateKitchenObject)
{
foreach (RecipeSO waitingRecipeSO in WaitingRecipeSOList)
for (int i = 0; i < WaitingRecipeSOList.Count; i++)
{
if (waitingRecipeSO.KitchenObjectSOList.Count != plateKitchenObject.GetKitchenObjectSOList().Count)
{
// Debug.Log("Plate has WRONG number of ingridients!");
continue;
}
// Debug.Log($"Plate has the right number of ingredients for {waitingRecipeSO.recipeName}");
if (WaitingRecipeSOList[i].KitchenObjectSOList.Count != plateKitchenObject.GetKitchenObjectSOList().Count) continue;
bool plateContentsMatchesRecipe = true;
foreach (KitchenObjectSO recipeKitchenObjectSO in waitingRecipeSO.KitchenObjectSOList)
foreach (KitchenObjectSO recipeKitchenObjectSO in WaitingRecipeSOList[i].KitchenObjectSOList)
{
// Debug.Log("Cycling through all ingredients in the recipe");
bool ingredientFound = false;
foreach (KitchenObjectSO plateKitchenObjectSO in plateKitchenObject.GetKitchenObjectSOList())
{
// Debug.Log("Cycling through all ingredients on the plate");
if (plateKitchenObjectSO != recipeKitchenObjectSO)
{
// Debug.Log($"Ingredient {plateKitchenObjectSO.objectName} DOES NOT match!");
continue;
}
// Debug.Log($"Ingredient {plateKitchenObjectSO.objectName} matches");
if (plateKitchenObjectSO != recipeKitchenObjectSO) continue;
ingredientFound = true;
break;
}
if (ingredientFound)
{
continue;
}
// Debug.Log($"This Recipe ingredient {recipeKitchenObjectSO.objectName} was not found on the plate!");
if (ingredientFound) continue;
plateContentsMatchesRecipe = false;
}
if (!plateContentsMatchesRecipe)
{
Points -= 1;
Debug.Log("Player did not deliver a correct recipe from the waitingRecipes!");
OnRecipeFailed?.Invoke(this, EventArgs.Empty);
DeliverIncorrectRecipeServerRpc();
continue;
}
Debug.Log($"Player delievered a correct {waitingRecipeSO.RecipeName}.");
_ = WaitingRecipeSOList.Remove(waitingRecipeSO);
SuccessfulRecipes++;
Points += waitingRecipeSO.Points;
OnRecipeCompleted?.Invoke(this, EventArgs.Empty);
OnRecipeSuccess?.Invoke(this, new RecipeEventArgs() { RecipeSO = waitingRecipeSO });
DeliverCorrectRecipeServerRpc(i);
return;
}
}
[ServerRpc(RequireOwnership = false)]
private void DeliverIncorrectRecipeServerRpc() => DeliverIncorrectRecipeClientRpc();
[ClientRpc]
private void DeliverIncorrectRecipeClientRpc()
{
Points -= 1;
OnRecipeFailed?.Invoke(this, EventArgs.Empty);
}
[ServerRpc(RequireOwnership = false)]
private void DeliverCorrectRecipeServerRpc(int waitingRecipeSOListIndex) => DeliverCorrectRecipeClientRpc(waitingRecipeSOListIndex);
[ClientRpc]
private void DeliverCorrectRecipeClientRpc(int waitingRecipeSOListIndex)
{
Debug.Log($"Player delievered a correct {WaitingRecipeSOList[waitingRecipeSOListIndex].RecipeName}.");
SuccessfulRecipes++;
Points += WaitingRecipeSOList[waitingRecipeSOListIndex].Points;
WaitingRecipeSOList.RemoveAt(waitingRecipeSOListIndex);
OnRecipeCompleted?.Invoke(this, EventArgs.Empty);
OnRecipeSuccess?.Invoke(this, new RecipeEventArgs() { RecipeSO = WaitingRecipeSOList[waitingRecipeSOListIndex] });
}
}

@ -60,7 +60,7 @@ public class Player : NetworkBehaviour, IKitchenObjectParent
private void Update()
{
if (!IsOwner) return;
HandleMovement();
HandleInteractions();
}
@ -85,16 +85,13 @@ public class Player : NetworkBehaviour, IKitchenObjectParent
{
inputVector = GameInput.Instance.GetMovementVectorNormalized();
if (moveDir != Vector3.zero)
{
lastInteractDir = moveDir;
}
if (moveDir != Vector3.zero) lastInteractDir = moveDir;
if (Physics.Raycast(transform.position, lastInteractDir, out RaycastHit raycastHit, interactDistance, countersLayerMask))
{
if (raycastHit.transform.TryGetComponent(out BaseCounter baseCounter))
{
// Debug.Log("Player stands in front of a BaseCounter");
Debug.Log("Player stands in front of a BaseCounter");
if (baseCounter != selectedCounter)
{
SetSelectedCounter(baseCounter);
@ -111,11 +108,11 @@ public class Player : NetworkBehaviour, IKitchenObjectParent
}
}
private void SetSelectedCounter(BaseCounter sC)
private void SetSelectedCounter(BaseCounter _selectedCounter)
{
selectedCounter = sC;
selectedCounter = _selectedCounter;
// Debug.Log(selectedCounter != null ? "SelectedCounter changed to BaseCounter" : "SelectedCounter changed to null");
OnSelectedCounterChanged?.Invoke(this, new() { SelectedCounter = sC });
OnSelectedCounterChanged?.Invoke(this, new() { SelectedCounter = _selectedCounter });
}
public bool IsWalking()

Binary file not shown.

Binary file not shown.

@ -1,192 +1,204 @@
{ "cat":"", "pid":12345, "tid":0, "ts":0, "ph":"M", "name":"process_name", "args": { "name":"bee_backend" } }
,{ "pid":12345, "tid":0, "ts":1678269551424435, "dur":1794, "ph":"X", "name": "DriverInitData", "args": { "detail":"" }}
,{ "pid":12345, "tid":0, "ts":1678269551426243, "dur":468, "ph":"X", "name": "RemoveStaleOutputs", "args": { "detail":"" }}
,{ "pid":12345, "tid":0, "ts":1678269551426822, "dur":151, "ph":"X", "name": "BuildQueueInit", "args": { "detail":"" }}
,{ "pid":12345, "tid":0, "ts":1678269551427381, "dur":28389, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_CA102CFD738DBBBB.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678269551456148, "dur":114, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_2DE2D43FBFFC2F0D.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678269551456592, "dur":136, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_6676DA3736E9A3AB.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678269551456973, "dur":102, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_D64B72D4A4245C5F.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678269551457412, "dur":131, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_4744019A759E6717.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678269551457911, "dur":135, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_ECFFFA9EAA72F444.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678269551458293, "dur":100, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_B43DAD802AE68114.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678269551458716, "dur":131, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_2F14F010CF6D0E23.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678269551459173, "dur":124, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/UnityEngine.TestRunner.rsp2" }}
,{ "pid":12345, "tid":0, "ts":1678269551459589, "dur":105, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/UnityEditor.TestRunner.dll.mvfrm.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678269551460104, "dur":136, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/UnityEditor.UI.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678269551460587, "dur":134, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Burst.dll.mvfrm.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678269551461085, "dur":130, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Postprocessing.Runtime.AdditionalFile.txt" }}
,{ "pid":12345, "tid":0, "ts":1678269551461611, "dur":134, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.InputSystem.dll.mvfrm.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678269551462035, "dur":104, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.TextMeshPro.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678269551462528, "dur":105, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipelines.Core.Runtime.ref.dll_02F9514DCF9F5D9D.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678269551463076, "dur":110, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Sysroot.Linux_x86_64.rsp2" }}
,{ "pid":12345, "tid":0, "ts":1678269551463878, "dur":107, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipeline.Universal.ShaderLibrary.dll (+2 others)" }}
,{ "pid":12345, "tid":0, "ts":1678269551464338, "dur":107, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Core.Editor.dll.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678269551464710, "dur":95, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.ShaderGraph.Utilities.AdditionalFile.txt" }}
,{ "pid":12345, "tid":0, "ts":1678269551465170, "dur":99, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Netcode.Runtime.dll.mvfrm.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678269551465622, "dur":97, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Universal.2D.Runtime.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678269551466060, "dur":98, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Burst.Editor.ref.dll_95F4B84263D09C5C.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678269551466491, "dur":97, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Mathematics.Editor.rsp2" }}
,{ "pid":12345, "tid":0, "ts":1678269551466845, "dur":95, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.ShaderGraph.Editor.dll (+2 others)" }}
,{ "pid":12345, "tid":0, "ts":1678269551467486, "dur":104, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Universal.Editor.dll.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678269551467966, "dur":388, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Netcode.Editor.PackageChecker.AdditionalFile.txt" }}
,{ "pid":12345, "tid":0, "ts":1678269551468383, "dur":153, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Netcode.Editor.PackageChecker.rsp2" }}
,{ "pid":12345, "tid":0, "ts":1678269551468960, "dur":3242, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Networking.Editor.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678269551472655, "dur":111, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.ref.dll_388DC9AFB636450B.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678269551473119, "dur":96, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Universal.Shaders.rsp2" }}
,{ "pid":12345, "tid":0, "ts":1678269551473558, "dur":96, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Toolchain.Linux-x86_64.dll (+2 others)" }}
,{ "pid":12345, "tid":0, "ts":1678269551473991, "dur":96, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aEDbg.dag/Unity.VisualStudio.Editor.dll.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678269551474237, "dur":55, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualStudio.Editor.pdb" }}
,{ "pid":12345, "tid":0, "ts":1678269551474387, "dur":98, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Burst.CodeGen.AdditionalFile.txt" }}
,{ "pid":12345, "tid":0, "ts":1678269551474863, "dur":105, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"ILPP-Configuration Library/ilpp-configuration.nevergeneratedoutput" }}
,{ "pid":12345, "tid":0, "ts":1678269551475402, "dur":106, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aEDbg.dag/ParrelSync.dll.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678269551475892, "dur":104, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.InputSystem.pdb" }}
,{ "pid":12345, "tid":0, "ts":1678269551476319, "dur":272, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Networking.Editor.dll" }}
,{ "pid":12345, "tid":0, "ts":1678269551476708, "dur":126, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Postprocessing.Runtime.dll (+pdb)" }}
,{ "pid":12345, "tid":0, "ts":1678269551477366, "dur":115, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Searcher.Editor.dll" }}
,{ "pid":12345, "tid":0, "ts":1678269551477857, "dur":237, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.pdb" }}
,{ "pid":12345, "tid":0, "ts":1678269551478655, "dur":486, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Postprocessing.Editor.pdb" }}
,{ "pid":12345, "tid":0, "ts":1678269551479706, "dur":2552, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Collections.BurstCompatibilityGen.rsp2" }}
,{ "pid":12345, "tid":0, "ts":1678269551482788, "dur":110, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Collections.DocCodeSamples.dll.mvfrm.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678269551483296, "dur":107, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Toolchain.Linux-x86_64.dll" }}
,{ "pid":12345, "tid":0, "ts":1678269551483893, "dur":107, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.ShaderGraph.Editor.pdb" }}
,{ "pid":12345, "tid":0, "ts":1678269551484421, "dur":101, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Cinemachine.dll (+2 others)" }}
,{ "pid":12345, "tid":0, "ts":1678269551484832, "dur":95, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.Universal.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":0, "ts":1678269551485341, "dur":236, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles Library/ScriptAssemblies/com.unity.cinemachine.editor.dll" }}
,{ "pid":12345, "tid":0, "ts":1678269551486025, "dur":249, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Assembly-CSharp.rsp2" }}
,{ "pid":12345, "tid":0, "ts":1678269551426993, "dur":59398, "ph":"X", "name": "EnqueueRequestedNodes", "args": { "detail":"" }}
,{ "pid":12345, "tid":0, "ts":1678269551486403, "dur":2516753, "ph":"X", "name": "WaitForBuildFinished", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":0, "ts":1678269554003207, "dur":7955, "ph":"X", "name": "Tundra", "args": { "detail":"Write AllBuiltNodes" }}
,{ "pid":12345, "tid":1, "ts":1678269551427137, "dur":59273, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678269551487322, "dur":548, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/UnityEngine.TestRunner.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678269551488001, "dur":218, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/UnityEngine.UI.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678269551488224, "dur":221, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/UnityEngine.UI.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678269551489251, "dur":147, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678269551489428, "dur":98, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Sysroot.Linux_x86_64.dll.mvfrm.rsp" }}
,{ "pid":12345, "tid":1, "ts":1678269551489915, "dur":1061, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/ParrelSync.AdditionalFile.txt" }}
,{ "pid":12345, "tid":1, "ts":1678269551490997, "dur":238, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678269551491259, "dur":6572, "ph":"X", "name": "File", "args": { "detail":"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/Tools/ilpp/Unity.ILPP.Runner/System.Private.Xml.dll" }}
,{ "pid":12345, "tid":1, "ts":1678269551491236, "dur":6632, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678269551497882, "dur":3376, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Postprocessing.Runtime.dll.mvfrm" }}
,{ "pid":12345, "tid":1, "ts":1678269551501260, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Postprocessing.Runtime.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678269551501336, "dur":516, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678269551501957, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Postprocessing.Editor.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678269551502066, "dur":350, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Postprocessing.Editor.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678269551502660, "dur":511, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678269551503220, "dur":400, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Core.Editor.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678269551503621, "dur":285, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678269551503964, "dur":922, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.ShaderGraph.Editor.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678269551504937, "dur":121, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Universal.Editor.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678269551505131, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/com.unity.cinemachine.editor.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678269551505279, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Assembly-CSharp.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678269551506968, "dur":1442500, "ph":"X", "name": "Csc", "args": { "detail":"Library/Bee/artifacts/2400b0aEDbg.dag/Assembly-CSharp.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678269552950329, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/2400b0aEDbg.dag/Assembly-CSharp.dll" }}
,{ "pid":12345, "tid":1, "ts":1678269552950316, "dur":427, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Assembly-CSharp.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678269552952072, "dur":108, "ph":"X", "name": "StoreTimestampsOfNonGeneratedInputFiles", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678269552952494, "dur":1045714, "ph":"X", "name": "ILPostProcess", "args": { "detail":"Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Assembly-CSharp.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678269554000749, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Assembly-CSharp.dll" }}
,{ "pid":12345, "tid":1, "ts":1678269554000726, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll" }}
,{ "pid":12345, "tid":1, "ts":1678269554000856, "dur":2062, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.dll" }}
,{ "pid":12345, "tid":2, "ts":1678269551427148, "dur":61080, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
,{ "pid":12345, "tid":2, "ts":1678269551488242, "dur":2708, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_87AD562CF8581A5A.mvfrm" }}
,{ "pid":12345, "tid":2, "ts":1678269551490955, "dur":945, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aEDbg.dag/UnityEditor.TestRunner.dll.mvfrm" }}
,{ "pid":12345, "tid":2, "ts":1678269551491900, "dur":2375, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
,{ "pid":12345, "tid":2, "ts":1678269551494286, "dur":1135, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/UnityEditor.TestRunner.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678269551495480, "dur":143, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/UnityEditor.UI.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678269551495670, "dur":154, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Burst.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678269551495851, "dur":193, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Mathematics.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678269551496094, "dur":138, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Collections.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678269551496269, "dur":134, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Networking.Transport.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678269551496437, "dur":681, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.InputSystem.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678269551497151, "dur":242, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Netcode.Runtime.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678269551497435, "dur":739, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Core.Runtime.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678269551498181, "dur":4527, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Core.Runtime.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678269551502786, "dur":1567, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipeline.Universal.ShaderLibrary.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678269551504447, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Universal.Runtime.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678269551504641, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Universal.2D.Runtime.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678269551504779, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Cinemachine.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678269551504881, "dur":798, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":2, "ts":1678269551505679, "dur":241910, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":2, "ts":1678269551747593, "dur":167, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Toolchain.Linux-x86_64.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551747773, "dur":175, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/UnityEditor.UI.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551747964, "dur":164, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.ShaderGraph.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551748153, "dur":180, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/PPv2URPConverters.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551748349, "dur":157, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Collections.BurstCompatibilityGen.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551748517, "dur":157, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Searcher.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551748683, "dur":178, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/com.unity.cinemachine.editor.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551748870, "dur":174, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Burst.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551749052, "dur":175, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Netcode.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551749236, "dur":171, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.TextMeshPro.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551749416, "dur":184, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/ParrelSync.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551749610, "dur":157, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.SysrootPackage.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551749780, "dur":157, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Postprocessing.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551749948, "dur":173, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Networking.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551750133, "dur":170, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Mathematics.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551750312, "dur":155, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.ShaderGraph.Utilities.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551750475, "dur":156, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.2D.Sprite.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551750640, "dur":171, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Collections.DocCodeSamples.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551750822, "dur":2551, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Sysroot.Linux_x86_64.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551753387, "dur":7846, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Sysroot.Linux_x86_64.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551761264, "dur":3964, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":2, "ts":1678269551765228, "dur":2237889, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678269551427155, "dur":61082, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678269551488257, "dur":1876, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_36915190E0A15774.mvfrm" }}
,{ "pid":12345, "tid":3, "ts":1678269551490860, "dur":6797, "ph":"X", "name": "File", "args": { "detail":"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/Tools/ilpp/Unity.ILPP.Runner/System.Text.Json.dll" }}
,{ "pid":12345, "tid":3, "ts":1678269551490833, "dur":6841, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678269551497715, "dur":584, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Burst.CodeGen.dll.mvfrm" }}
,{ "pid":12345, "tid":3, "ts":1678269551498301, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Burst.CodeGen.dll (+2 others)" }}
,{ "pid":12345, "tid":3, "ts":1678269551498408, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Searcher.Editor.dll (+2 others)" }}
,{ "pid":12345, "tid":3, "ts":1678269551498838, "dur":166, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.TextMeshPro.dll (+2 others)" }}
,{ "pid":12345, "tid":3, "ts":1678269551499295, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.VisualStudio.Editor.dll (+2 others)" }}
,{ "pid":12345, "tid":3, "ts":1678269551499667, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.TextMeshPro.Editor.dll (+2 others)" }}
,{ "pid":12345, "tid":3, "ts":1678269551500988, "dur":960, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678269551501948, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Netcode.Editor.CodeGen.dll" }}
,{ "pid":12345, "tid":3, "ts":1678269551502047, "dur":638, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678269551502695, "dur":2980, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678269551505675, "dur":238625, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678269551744307, "dur":307, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Netcode.Runtime.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551744640, "dur":171, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/UnityEngine.UI.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551744825, "dur":158, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.Universal.Shaders.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551744996, "dur":184, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Burst.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551745194, "dur":158, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Collections.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551745379, "dur":171, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.TextMeshPro.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551745562, "dur":186, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.Core.Runtime.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551745765, "dur":173, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.InputSystem.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551745961, "dur":157, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Mathematics.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551746146, "dur":175, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Cinemachine.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551746332, "dur":158, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.Universal.Runtime.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551746500, "dur":184, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.Core.ShaderLibrary.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551746698, "dur":189, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.Universal.2D.Runtime.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551746899, "dur":183, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipeline.Universal.ShaderLibrary.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551747092, "dur":156, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Networking.Transport.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551747259, "dur":173, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Postprocessing.Runtime.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551747441, "dur":3556, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Netcode.Components.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551751032, "dur":176, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.Core.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551751237, "dur":175, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.Universal.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551751447, "dur":163, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Netcode.Editor.PackageChecker.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551752504, "dur":7344, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Mathematics.pdb" }}
,{ "pid":12345, "tid":3, "ts":1678269551759933, "dur":3189, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678269551763124, "dur":1762, "ph":"X", "name": "CheckDagSignatures", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678269551764887, "dur":2238240, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678269551428185, "dur":62736, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678269551490923, "dur":392, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678269551491315, "dur":177, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678269551491493, "dur":175, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678269551491668, "dur":179, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678269551491848, "dur":98, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678269551494238, "dur":3483, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.render-pipelines.universal@15.0.3/Runtime/2D/Shadows/ShadowProvider/ShadowShape2DProvider.cs" }}
,{ "pid":12345, "tid":4, "ts":1678269551494229, "dur":3521, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678269551497750, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Netcode.Editor.CodeGen.dll (+2 others)" }}
,{ "pid":12345, "tid":4, "ts":1678269551497827, "dur":3246, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Netcode.Editor.CodeGen.dll (+2 others)" }}
,{ "pid":12345, "tid":4, "ts":1678269551501081, "dur":159, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPP-Configuration Library/ilpp-configuration.nevergeneratedoutput" }}
,{ "pid":12345, "tid":4, "ts":1678269551501240, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678269551502083, "dur":240603, "ph":"X", "name": "ILPP-Configuration", "args": { "detail":"Library/ilpp-configuration.nevergeneratedoutput" }}
,{ "pid":12345, "tid":4, "ts":1678269551743797, "dur":8755, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll (+pdb)" }}
,{ "pid":12345, "tid":4, "ts":1678269551752558, "dur":7358, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll (+pdb)" }}
,{ "pid":12345, "tid":4, "ts":1678269551759930, "dur":1338, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678269551761269, "dur":2239491, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678269554000773, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Assembly-CSharp.pdb" }}
,{ "pid":12345, "tid":4, "ts":1678269554000765, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb" }}
,{ "pid":12345, "tid":4, "ts":1678269554000849, "dur":1221, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.pdb" }}
,{ "pid":12345, "tid":4, "ts":1678269554002075, "dur":1059, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":0, "ts":1678269554012923, "dur":417, "ph":"X", "name": "ProfilerWriteOutput" }
,{ "pid":12345, "tid":0, "ts":1678272231182596, "dur":1827, "ph":"X", "name": "DriverInitData", "args": { "detail":"" }}
,{ "pid":12345, "tid":0, "ts":1678272231184437, "dur":464, "ph":"X", "name": "RemoveStaleOutputs", "args": { "detail":"" }}
,{ "pid":12345, "tid":0, "ts":1678272231185011, "dur":135, "ph":"X", "name": "BuildQueueInit", "args": { "detail":"" }}
,{ "pid":12345, "tid":0, "ts":1678272231185531, "dur":16183, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_CA102CFD738DBBBB.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678272231202027, "dur":243, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_2DE2D43FBFFC2F0D.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678272231202540, "dur":430, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_6676DA3736E9A3AB.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678272231203222, "dur":104, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_D64B72D4A4245C5F.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678272231203596, "dur":100, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_4744019A759E6717.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678272231203954, "dur":107, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_ECFFFA9EAA72F444.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678272231204305, "dur":97, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_B43DAD802AE68114.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678272231204428, "dur":94, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_E17EF556002367E3.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678272231204741, "dur":110, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_2F14F010CF6D0E23.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678272231205116, "dur":102, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/UnityEngine.TestRunner.rsp2" }}
,{ "pid":12345, "tid":0, "ts":1678272231205498, "dur":97, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/UnityEditor.TestRunner.dll.mvfrm.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678272231205943, "dur":520, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/UnityEditor.UI.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678272231206910, "dur":122, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Burst.dll.mvfrm.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678272231207379, "dur":108, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Postprocessing.Runtime.AdditionalFile.txt" }}
,{ "pid":12345, "tid":0, "ts":1678272231207770, "dur":101, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.InputSystem.dll.mvfrm.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678272231208176, "dur":434, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.TextMeshPro.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678272231208725, "dur":136, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.TextMeshPro.dll.mvfrm.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678272231209175, "dur":6260, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Core.Runtime.rsp2" }}
,{ "pid":12345, "tid":0, "ts":1678272231215901, "dur":4941, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Networking.Transport.rsp2" }}
,{ "pid":12345, "tid":0, "ts":1678272231221218, "dur":119, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Core.Editor.dll (+2 others)" }}
,{ "pid":12345, "tid":0, "ts":1678272231221634, "dur":280, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Searcher.Editor.dll.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678272231222368, "dur":56, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Netcode.Runtime.ref.dll_7F945A9BEAF242D9.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678272231222554, "dur":2523, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Netcode.Runtime.dll.mvfrm.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678272231225128, "dur":713, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Universal.Runtime.dll (+2 others)" }}
,{ "pid":12345, "tid":0, "ts":1678272231226413, "dur":3127, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Netcode.Components.AdditionalFile.txt" }}
,{ "pid":12345, "tid":0, "ts":1678272231232845, "dur":80, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Core.ShaderLibrary.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678272231233137, "dur":306, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678272231233878, "dur":421, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.TextMeshPro.Editor.dll.mvfrm.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678272231238278, "dur":292, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.pdb" }}
,{ "pid":12345, "tid":0, "ts":1678272231239941, "dur":137, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Universal.Runtime.pdb" }}
,{ "pid":12345, "tid":0, "ts":1678272231240534, "dur":282, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Cinemachine.dll (+2 others)" }}
,{ "pid":12345, "tid":0, "ts":1678272231240821, "dur":1453, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Cinemachine.AdditionalFile.txt" }}
,{ "pid":12345, "tid":0, "ts":1678272231243502, "dur":83, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Assembly-CSharp.rsp2" }}
,{ "pid":12345, "tid":0, "ts":1678272231185165, "dur":58537, "ph":"X", "name": "EnqueueRequestedNodes", "args": { "detail":"" }}
,{ "pid":12345, "tid":0, "ts":1678272231243702, "dur":133, "ph":"X", "name": "SortWorkingStack", "args": { "detail":"" }}
,{ "pid":12345, "tid":0, "ts":1678272231243837, "dur":1691058, "ph":"X", "name": "WaitForBuildFinished", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":0, "ts":1678272232935001, "dur":8174, "ph":"X", "name": "Tundra", "args": { "detail":"Write AllBuiltNodes" }}
,{ "pid":12345, "tid":1, "ts":1678272231185570, "dur":58594, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678272231244459, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_32AD40CDAAB596D9.mvfrm" }}
,{ "pid":12345, "tid":1, "ts":1678272231246021, "dur":302, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678272231246698, "dur":64, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678272231246762, "dur":65, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678272231246978, "dur":6365, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.ide.visualstudio@2.0.17/Editor/Messaging/MessageEventArgs.cs" }}
,{ "pid":12345, "tid":1, "ts":1678272231246956, "dur":6407, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678272231253363, "dur":118, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678272231253481, "dur":229, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678272231253710, "dur":2106, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678272231255816, "dur":112, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678272231255947, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Universal.Runtime.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678272231256050, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Core.Editor.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678272231256169, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Universal.2D.Runtime.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678272231256312, "dur":212, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.ShaderGraph.Editor.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678272231256608, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Universal.Editor.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678272231256748, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Cinemachine.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678272231256851, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/com.unity.cinemachine.editor.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678272231256968, "dur":88, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678272231257056, "dur":243, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678272231257299, "dur":2245, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678272231259589, "dur":29557, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678272231289151, "dur":698, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Netcode.Runtime.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231289885, "dur":176, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/UnityEngine.UI.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231290074, "dur":162, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.Universal.Shaders.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231290248, "dur":160, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Burst.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231290422, "dur":161, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Collections.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231290596, "dur":223, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.TextMeshPro.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231290833, "dur":172, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.Core.Runtime.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231291020, "dur":175, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.InputSystem.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231291208, "dur":181, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Mathematics.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231291402, "dur":173, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Cinemachine.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231291587, "dur":169, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.Universal.Runtime.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231291768, "dur":164, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.Core.ShaderLibrary.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231291949, "dur":165, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.Universal.2D.Runtime.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231292128, "dur":161, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipeline.Universal.ShaderLibrary.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231292300, "dur":163, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Networking.Transport.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231292474, "dur":165, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Postprocessing.Runtime.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231292648, "dur":165, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Netcode.Components.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231292826, "dur":164, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/UnityEditor.UI.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231293006, "dur":164, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Toolchain.Linux-x86_64.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231293181, "dur":2240, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/PPv2URPConverters.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231295460, "dur":3143, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.2D.Sprite.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231298631, "dur":90824, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678272231389455, "dur":1545461, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":2, "ts":1678272231187576, "dur":56698, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
,{ "pid":12345, "tid":2, "ts":1678272231244306, "dur":297, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_745ABAFC34600199.mvfrm" }}
,{ "pid":12345, "tid":2, "ts":1678272231244629, "dur":144, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_745ABAFC34600199.mvfrm" }}
,{ "pid":12345, "tid":2, "ts":1678272231244796, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aEDbg.dag/UnityEngine.TestRunner.dll.mvfrm" }}
,{ "pid":12345, "tid":2, "ts":1678272231244891, "dur":301, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
,{ "pid":12345, "tid":2, "ts":1678272231245193, "dur":80, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aEDbg.dag/UnityEngine.TestRunner.dll.mvfrm" }}
,{ "pid":12345, "tid":2, "ts":1678272231245285, "dur":8143, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/UnityEngine.TestRunner.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678272231253522, "dur":143, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/UnityEditor.TestRunner.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678272231253746, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/UnityEditor.UI.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678272231255841, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Burst.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678272231257079, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Collections.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678272231257328, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Networking.Transport.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678272231257419, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Netcode.Runtime.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678272231259018, "dur":456, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Netcode.Editor.CodeGen.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678272231259599, "dur":237, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPP-Configuration Library/ilpp-configuration.nevergeneratedoutput" }}
,{ "pid":12345, "tid":2, "ts":1678272231259857, "dur":56, "ph":"X", "name": "StoreTimestampsOfNonGeneratedInputFiles", "args": { "detail":"" }}
,{ "pid":12345, "tid":2, "ts":1678272231259920, "dur":27306, "ph":"X", "name": "ILPP-Configuration", "args": { "detail":"Library/ilpp-configuration.nevergeneratedoutput" }}
,{ "pid":12345, "tid":2, "ts":1678272231289112, "dur":742, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678272231289855, "dur":5705, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
,{ "pid":12345, "tid":2, "ts":1678272231295569, "dur":330, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.ShaderGraph.Utilities.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678272231295914, "dur":365, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Postprocessing.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678272231296280, "dur":124, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
,{ "pid":12345, "tid":2, "ts":1678272231296412, "dur":258, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/ParrelSync.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678272231296670, "dur":1610, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
,{ "pid":12345, "tid":2, "ts":1678272231298304, "dur":332, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":2, "ts":1678272231298636, "dur":1635451, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":2, "ts":1678272232934101, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Assembly-CSharp.pdb" }}
,{ "pid":12345, "tid":2, "ts":1678272232934093, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb" }}
,{ "pid":12345, "tid":2, "ts":1678272232934208, "dur":300, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.pdb" }}
,{ "pid":12345, "tid":2, "ts":1678272232934510, "dur":424, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231185565, "dur":58588, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231244205, "dur":81, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_6F37E5FA2CCDB6D6.mvfrm" }}
,{ "pid":12345, "tid":3, "ts":1678272231244302, "dur":167, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_6A9A7629F14E49CF.mvfrm" }}
,{ "pid":12345, "tid":3, "ts":1678272231244470, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_E0249AF6BB98BF95.mvfrm" }}
,{ "pid":12345, "tid":3, "ts":1678272231244854, "dur":688, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/UnityEngine.UI.dll (+2 others)" }}
,{ "pid":12345, "tid":3, "ts":1678272231245926, "dur":51, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/ParrelSync.rsp2" }}
,{ "pid":12345, "tid":3, "ts":1678272231246038, "dur":288, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231246445, "dur":79, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231246524, "dur":51, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231246617, "dur":198, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231246987, "dur":652, "ph":"X", "name": "File", "args": { "detail":"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/Tools/ilpp/Unity.ILPP.Runner/Microsoft.AspNetCore.ResponseCaching.dll" }}
,{ "pid":12345, "tid":3, "ts":1678272231246815, "dur":830, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231247646, "dur":65, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231249991, "dur":552, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.netcode.gameobjects@1.2.0/Runtime/Exceptions/NotServerException.cs" }}
,{ "pid":12345, "tid":3, "ts":1678272231249962, "dur":581, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231252579, "dur":788, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.test-framework@1.3.3/UnityEditor.TestRunner/TestRun/TestJobRunner.cs" }}
,{ "pid":12345, "tid":3, "ts":1678272231252570, "dur":824, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231253394, "dur":89, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231253483, "dur":230, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231253713, "dur":2108, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231255822, "dur":1238, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231257060, "dur":243, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231257304, "dur":2288, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231259596, "dur":33727, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231293328, "dur":169, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Searcher.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678272231293509, "dur":167, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.ShaderGraph.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678272231293687, "dur":168, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.TextMeshPro.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678272231293867, "dur":177, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Collections.BurstCompatibilityGen.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678272231294059, "dur":172, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Mathematics.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678272231294247, "dur":172, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Netcode.Editor.PackageChecker.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678272231294431, "dur":174, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Netcode.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678272231294616, "dur":176, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.Universal.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678272231294809, "dur":173, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.Core.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678272231294994, "dur":177, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Sysroot.Linux_x86_64.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678272231295183, "dur":274, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Collections.DocCodeSamples.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678272231295475, "dur":274, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Burst.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678272231295761, "dur":327, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Networking.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678272231296102, "dur":452, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.SysrootPackage.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678272231296555, "dur":171, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231296733, "dur":228, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/com.unity.cinemachine.editor.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678272231296961, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231298316, "dur":89968, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231388286, "dur":1164, "ph":"X", "name": "CheckDagSignatures", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231389451, "dur":1545457, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231185557, "dur":58290, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231244463, "dur":203, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_DAACE96758FE95F8.mvfrm" }}
,{ "pid":12345, "tid":4, "ts":1678272231244720, "dur":65, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/UnityEditor.TestRunner.dll.mvfrm.rsp" }}
,{ "pid":12345, "tid":4, "ts":1678272231244889, "dur":163, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231245052, "dur":141, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Collections.rsp" }}
,{ "pid":12345, "tid":4, "ts":1678272231245196, "dur":78, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Core.Editor.AdditionalFile.txt" }}
,{ "pid":12345, "tid":4, "ts":1678272231245497, "dur":57, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Universal.2D.Runtime.AdditionalFile.txt" }}
,{ "pid":12345, "tid":4, "ts":1678272231245583, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231245665, "dur":70, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Universal.Editor.AdditionalFile.txt" }}
,{ "pid":12345, "tid":4, "ts":1678272231245800, "dur":129, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231246017, "dur":462, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231246479, "dur":168, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231246693, "dur":61, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231246754, "dur":96, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231246850, "dur":83, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231246974, "dur":5622, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMPro_TexturePostProcessor.cs" }}
,{ "pid":12345, "tid":4, "ts":1678272231246971, "dur":5661, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231253335, "dur":129, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231253478, "dur":215, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231253708, "dur":158, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231253886, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Mathematics.dll (+2 others)" }}
,{ "pid":12345, "tid":4, "ts":1678272231254018, "dur":154, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.InputSystem.dll (+2 others)" }}
,{ "pid":12345, "tid":4, "ts":1678272231254215, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Core.Runtime.dll (+2 others)" }}
,{ "pid":12345, "tid":4, "ts":1678272231254445, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Postprocessing.Runtime.dll (+2 others)" }}
,{ "pid":12345, "tid":4, "ts":1678272231254529, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Searcher.Editor.dll (+2 others)" }}
,{ "pid":12345, "tid":4, "ts":1678272231254783, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Postprocessing.Editor.dll (+2 others)" }}
,{ "pid":12345, "tid":4, "ts":1678272231254962, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.TextMeshPro.dll (+2 others)" }}
,{ "pid":12345, "tid":4, "ts":1678272231255227, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.VisualStudio.Editor.dll (+2 others)" }}
,{ "pid":12345, "tid":4, "ts":1678272231255621, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.TextMeshPro.Editor.dll (+2 others)" }}
,{ "pid":12345, "tid":4, "ts":1678272231255810, "dur":116, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231257053, "dur":113, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231257297, "dur":218, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231257689, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Assembly-CSharp.dll (+2 others)" }}
,{ "pid":12345, "tid":4, "ts":1678272231258294, "dur":53, "ph":"X", "name": "StoreTimestampsOfNonGeneratedInputFiles", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231258642, "dur":1402450, "ph":"X", "name": "Csc", "args": { "detail":"Library/Bee/artifacts/2400b0aEDbg.dag/Assembly-CSharp.dll (+2 others)" }}
,{ "pid":12345, "tid":4, "ts":1678272232662043, "dur":133, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/2400b0aEDbg.dag/Assembly-CSharp.dll" }}
,{ "pid":12345, "tid":4, "ts":1678272232662025, "dur":559, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Assembly-CSharp.dll (+pdb)" }}
,{ "pid":12345, "tid":4, "ts":1678272232665140, "dur":147, "ph":"X", "name": "StoreTimestampsOfNonGeneratedInputFiles", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272232665517, "dur":266133, "ph":"X", "name": "ILPostProcess", "args": { "detail":"Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Assembly-CSharp.dll (+pdb)" }}
,{ "pid":12345, "tid":4, "ts":1678272232934090, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Assembly-CSharp.dll" }}
,{ "pid":12345, "tid":4, "ts":1678272232934081, "dur":105, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll" }}
,{ "pid":12345, "tid":4, "ts":1678272232934206, "dur":474, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.dll" }}
,{ "pid":12345, "tid":0, "ts":1678272232944846, "dur":192, "ph":"X", "name": "ProfilerWriteOutput" }
,

@ -8,257 +8,563 @@
"traceEvents":[
{ "pid": 129706, "tid": -1, "ph": "M", "name": "process_name", "args": { "name": "BeeDriver" } },
{ "pid": 129706, "tid": -1, "ph": "M", "name": "process_sort_index", "args": { "sort_index": "-2" } },
{ "pid": 129706, "tid": 16, "ph": "M", "name": "thread_name", "args": { "name": "Thread Pool Worker" } },
{ "pid": 129706, "tid": 16, "ts": 1678269554035227, "dur": 900, "ph": "X", "name": "ChromeTraceHeader", "args": {} },
{ "pid": 129706, "tid": 16, "ts": 1678269554039543, "dur": 1075, "ph": "X", "name": "Thread Pool Worker", "args": {} },
{ "pid": 129706, "tid": 914, "ph": "M", "name": "thread_name", "args": { "name": "Thread Pool Worker" } },
{ "pid": 129706, "tid": 914, "ts": 1678272232985107, "dur": 3252, "ph": "X", "name": "ChromeTraceHeader", "args": {} },
{ "pid": 129706, "tid": 914, "ts": 1678272232992306, "dur": 1119, "ph": "X", "name": "Thread Pool Worker", "args": {} },
{ "pid": 129706, "tid": 1, "ph": "M", "name": "thread_name", "args": { "name": "" } },
{ "pid": 129706, "tid": 1, "ts": 1678269551444489, "dur": 6275, "ph": "X", "name": "<Add>b__0", "args": {} },
{ "pid": 129706, "tid": 1, "ts": 1678269551450770, "dur": 212122, "ph": "X", "name": "<Add>b__0", "args": {} },
{ "pid": 129706, "tid": 1, "ts": 1678269551662912, "dur": 92898, "ph": "X", "name": "WriteJson", "args": {} },
{ "pid": 129706, "tid": 16, "ts": 1678269554040628, "dur": 336, "ph": "X", "name": "", "args": {} },
{ "pid": 129706, "tid": 1, "ts": 1678272231176939, "dur": 9085, "ph": "X", "name": "<Add>b__0", "args": {} },
{ "pid": 129706, "tid": 1, "ts": 1678272231186032, "dur": 129799, "ph": "X", "name": "<Add>b__0", "args": {} },
{ "pid": 129706, "tid": 1, "ts": 1678272231315850, "dur": 66387, "ph": "X", "name": "WriteJson", "args": {} },
{ "pid": 129706, "tid": 914, "ts": 1678272232993436, "dur": 31, "ph": "X", "name": "", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ph": "M", "name": "thread_name", "args": { "name": "ReadEntireBinlogFromIpcAsync" } },
{ "pid": 129706, "tid": 12884901888, "ts": 1678269551440553, "dur": 7595, "ph": "X", "name": "WaitForConnectionAsync", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678269551448151, "dur": 2565262, "ph": "X", "name": "UpdateFromStreamAsync", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678269551449040, "dur": 20409, "ph": "X", "name": "ReadAsync 0", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678269551469465, "dur": 2101, "ph": "X", "name": "ProcessMessages 88114", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678269551471575, "dur": 6001, "ph": "X", "name": "ReadAsync 88114", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678269551477588, "dur": 687, "ph": "X", "name": "ProcessMessages 38699", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678269551478291, "dur": 186, "ph": "X", "name": "ReadAsync 38699", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678269551478481, "dur": 7, "ph": "X", "name": "ProcessMessages 3720", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678269551478490, "dur": 3106, "ph": "X", "name": "ReadAsync 3720", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678269551481605, "dur": 4, "ph": "X", "name": "ProcessMessages 539", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678269551481681, "dur": 3382, "ph": "X", "name": "ReadAsync 539", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678269551485073, "dur": 38, "ph": "X", "name": "ProcessMessages 22299", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678269551485114, "dur": 708, "ph": "X", "name": "ReadAsync 22299", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678269551485827, "dur": 8, "ph": "X", "name": "ProcessMessages 4032", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678269551485837, "dur": 16352, "ph": "X", "name": "ReadAsync 4032", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678269551502208, "dur": 464, "ph": "X", "name": "ProcessMessages 6952", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678269551502685, "dur": 4239, "ph": "X", "name": "ReadAsync 6952", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678269551506935, "dur": 644, "ph": "X", "name": "ProcessMessages 616", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678269551507585, "dur": 251456, "ph": "X", "name": "ReadAsync 616", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678269551759050, "dur": 7277, "ph": "X", "name": "ProcessMessages 46060", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678269551766338, "dur": 219, "ph": "X", "name": "ReadAsync 46060", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678269551766566, "dur": 4, "ph": "X", "name": "ProcessMessages 224", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678269551766573, "dur": 1182805, "ph": "X", "name": "ReadAsync 224", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678269552949390, "dur": 39, "ph": "X", "name": "ProcessMessages 359", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678269552949434, "dur": 2593, "ph": "X", "name": "ReadAsync 359", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678269552952038, "dur": 6, "ph": "X", "name": "ProcessMessages 20", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678269552952172, "dur": 1046091, "ph": "X", "name": "ReadAsync 20", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678269553998275, "dur": 40, "ph": "X", "name": "ProcessMessages 32479", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678269553998319, "dur": 3763, "ph": "X", "name": "ReadAsync 32479", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678269554002097, "dur": 42, "ph": "X", "name": "ProcessMessages 86", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678269554002144, "dur": 450, "ph": "X", "name": "ReadAsync 86", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678269554002601, "dur": 26, "ph": "X", "name": "ProcessMessages 62", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678269554002632, "dur": 3510, "ph": "X", "name": "ReadAsync 62", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678269554006152, "dur": 339, "ph": "X", "name": "ProcessMessages 25", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678269554006498, "dur": 6863, "ph": "X", "name": "ReadAsync 25", "args": {} },
{ "pid": 129706, "tid": 16, "ts": 1678269554040969, "dur": 631, "ph": "X", "name": "ReadEntireBinlogFromIpcAsync", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231172021, "dur": 18875, "ph": "X", "name": "WaitForConnectionAsync", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231190901, "dur": 1754089, "ph": "X", "name": "UpdateFromStreamAsync", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231193793, "dur": 16748, "ph": "X", "name": "ReadAsync 0", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231210556, "dur": 2185, "ph": "X", "name": "ProcessMessages 48782", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231212751, "dur": 613, "ph": "X", "name": "ReadAsync 48782", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231213371, "dur": 9, "ph": "X", "name": "ProcessMessages 4089", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231213382, "dur": 7849, "ph": "X", "name": "ReadAsync 4089", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231221242, "dur": 20, "ph": "X", "name": "ProcessMessages 11208", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231221278, "dur": 3144, "ph": "X", "name": "ReadAsync 11208", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231224435, "dur": 11, "ph": "X", "name": "ProcessMessages 4193", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231224448, "dur": 446, "ph": "X", "name": "ReadAsync 4193", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231224904, "dur": 4, "ph": "X", "name": "ProcessMessages 734", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231224912, "dur": 4087, "ph": "X", "name": "ReadAsync 734", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231229011, "dur": 102, "ph": "X", "name": "ProcessMessages 4900", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231229117, "dur": 118, "ph": "X", "name": "ReadAsync 4900", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231229242, "dur": 5, "ph": "X", "name": "ProcessMessages 1595", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231229250, "dur": 84, "ph": "X", "name": "ReadAsync 1595", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231229344, "dur": 3, "ph": "X", "name": "ProcessMessages 1156", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231229349, "dur": 62, "ph": "X", "name": "ReadAsync 1156", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231229415, "dur": 2, "ph": "X", "name": "ProcessMessages 639", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231229420, "dur": 129, "ph": "X", "name": "ReadAsync 639", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231229553, "dur": 2, "ph": "X", "name": "ProcessMessages 590", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231229557, "dur": 883, "ph": "X", "name": "ReadAsync 590", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231230446, "dur": 4, "ph": "X", "name": "ProcessMessages 1121", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231230452, "dur": 85, "ph": "X", "name": "ReadAsync 1121", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231230542, "dur": 3, "ph": "X", "name": "ProcessMessages 1027", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231230548, "dur": 891, "ph": "X", "name": "ReadAsync 1027", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231231446, "dur": 11, "ph": "X", "name": "ProcessMessages 5888", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231231459, "dur": 67, "ph": "X", "name": "ReadAsync 5888", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231231529, "dur": 2, "ph": "X", "name": "ProcessMessages 617", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231231533, "dur": 77, "ph": "X", "name": "ReadAsync 617", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231231616, "dur": 3, "ph": "X", "name": "ProcessMessages 797", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231231621, "dur": 62, "ph": "X", "name": "ReadAsync 797", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231231687, "dur": 2, "ph": "X", "name": "ProcessMessages 978", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231231691, "dur": 73, "ph": "X", "name": "ReadAsync 978", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231231768, "dur": 2, "ph": "X", "name": "ProcessMessages 955", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231231773, "dur": 51, "ph": "X", "name": "ReadAsync 955", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231231833, "dur": 2, "ph": "X", "name": "ProcessMessages 579", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231231837, "dur": 122, "ph": "X", "name": "ReadAsync 579", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231231963, "dur": 3, "ph": "X", "name": "ProcessMessages 1194", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231231968, "dur": 52, "ph": "X", "name": "ReadAsync 1194", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231232024, "dur": 2, "ph": "X", "name": "ProcessMessages 693", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231232028, "dur": 50, "ph": "X", "name": "ReadAsync 693", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231232082, "dur": 2, "ph": "X", "name": "ProcessMessages 567", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231232086, "dur": 64, "ph": "X", "name": "ReadAsync 567", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231232154, "dur": 2, "ph": "X", "name": "ProcessMessages 833", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231232159, "dur": 42, "ph": "X", "name": "ReadAsync 833", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231232204, "dur": 2, "ph": "X", "name": "ProcessMessages 621", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231232208, "dur": 120, "ph": "X", "name": "ReadAsync 621", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231232332, "dur": 2, "ph": "X", "name": "ProcessMessages 984", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231232337, "dur": 94, "ph": "X", "name": "ReadAsync 984", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231232434, "dur": 2, "ph": "X", "name": "ProcessMessages 756", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231232438, "dur": 66, "ph": "X", "name": "ReadAsync 756", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231232508, "dur": 2, "ph": "X", "name": "ProcessMessages 931", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231232519, "dur": 48, "ph": "X", "name": "ReadAsync 931", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231232570, "dur": 2, "ph": "X", "name": "ProcessMessages 981", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231232574, "dur": 36, "ph": "X", "name": "ReadAsync 981", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231232613, "dur": 1, "ph": "X", "name": "ProcessMessages 223", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231232617, "dur": 302, "ph": "X", "name": "ReadAsync 223", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231232923, "dur": 1, "ph": "X", "name": "ProcessMessages 328", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231232926, "dur": 54, "ph": "X", "name": "ReadAsync 328", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231232984, "dur": 1, "ph": "X", "name": "ProcessMessages 658", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231232987, "dur": 64, "ph": "X", "name": "ReadAsync 658", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231233056, "dur": 3, "ph": "X", "name": "ProcessMessages 864", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231233061, "dur": 49, "ph": "X", "name": "ReadAsync 864", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231233113, "dur": 2, "ph": "X", "name": "ProcessMessages 765", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231233117, "dur": 45, "ph": "X", "name": "ReadAsync 765", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231233165, "dur": 2, "ph": "X", "name": "ProcessMessages 633", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231233169, "dur": 44, "ph": "X", "name": "ReadAsync 633", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231233216, "dur": 2, "ph": "X", "name": "ProcessMessages 562", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231233220, "dur": 44, "ph": "X", "name": "ReadAsync 562", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231233268, "dur": 2, "ph": "X", "name": "ProcessMessages 557", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231233271, "dur": 43, "ph": "X", "name": "ReadAsync 557", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231233318, "dur": 2, "ph": "X", "name": "ProcessMessages 352", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231233322, "dur": 42, "ph": "X", "name": "ReadAsync 352", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231233367, "dur": 1, "ph": "X", "name": "ProcessMessages 130", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231233370, "dur": 495, "ph": "X", "name": "ReadAsync 130", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231233870, "dur": 19, "ph": "X", "name": "ProcessMessages 1294", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231233891, "dur": 180, "ph": "X", "name": "ReadAsync 1294", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231234078, "dur": 5, "ph": "X", "name": "ProcessMessages 2058", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231234085, "dur": 71, "ph": "X", "name": "ReadAsync 2058", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231234161, "dur": 2, "ph": "X", "name": "ProcessMessages 578", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231234165, "dur": 79, "ph": "X", "name": "ReadAsync 578", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231234263, "dur": 3, "ph": "X", "name": "ProcessMessages 591", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231234268, "dur": 85, "ph": "X", "name": "ReadAsync 591", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231234359, "dur": 3, "ph": "X", "name": "ProcessMessages 890", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231234365, "dur": 87, "ph": "X", "name": "ReadAsync 890", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231234456, "dur": 3, "ph": "X", "name": "ProcessMessages 1011", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231234461, "dur": 56, "ph": "X", "name": "ReadAsync 1011", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231234520, "dur": 2, "ph": "X", "name": "ProcessMessages 718", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231234525, "dur": 48, "ph": "X", "name": "ReadAsync 718", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231234576, "dur": 2, "ph": "X", "name": "ProcessMessages 639", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231234580, "dur": 143, "ph": "X", "name": "ReadAsync 639", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231234726, "dur": 3, "ph": "X", "name": "ProcessMessages 1244", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231234745, "dur": 60, "ph": "X", "name": "ReadAsync 1244", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231234809, "dur": 2, "ph": "X", "name": "ProcessMessages 602", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231234813, "dur": 57, "ph": "X", "name": "ReadAsync 602", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231234873, "dur": 1, "ph": "X", "name": "ProcessMessages 240", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231234876, "dur": 61, "ph": "X", "name": "ReadAsync 240", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231234946, "dur": 3, "ph": "X", "name": "ProcessMessages 416", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231234951, "dur": 61, "ph": "X", "name": "ReadAsync 416", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231235016, "dur": 2, "ph": "X", "name": "ProcessMessages 509", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231235021, "dur": 56, "ph": "X", "name": "ReadAsync 509", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231235080, "dur": 2, "ph": "X", "name": "ProcessMessages 651", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231235084, "dur": 130, "ph": "X", "name": "ReadAsync 651", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231235219, "dur": 2, "ph": "X", "name": "ProcessMessages 558", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231235223, "dur": 54, "ph": "X", "name": "ReadAsync 558", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231235281, "dur": 2, "ph": "X", "name": "ProcessMessages 830", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231235285, "dur": 39, "ph": "X", "name": "ReadAsync 830", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231235328, "dur": 2, "ph": "X", "name": "ProcessMessages 391", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231235331, "dur": 37, "ph": "X", "name": "ReadAsync 391", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231235372, "dur": 1, "ph": "X", "name": "ProcessMessages 269", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231235375, "dur": 40, "ph": "X", "name": "ReadAsync 269", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231235419, "dur": 1, "ph": "X", "name": "ProcessMessages 419", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231235422, "dur": 40, "ph": "X", "name": "ReadAsync 419", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231235465, "dur": 4, "ph": "X", "name": "ProcessMessages 300", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231235471, "dur": 45, "ph": "X", "name": "ReadAsync 300", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231235520, "dur": 1, "ph": "X", "name": "ProcessMessages 416", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231235527, "dur": 31, "ph": "X", "name": "ReadAsync 416", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231235562, "dur": 1, "ph": "X", "name": "ProcessMessages 306", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231235565, "dur": 33, "ph": "X", "name": "ReadAsync 306", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231235602, "dur": 1, "ph": "X", "name": "ProcessMessages 233", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231235605, "dur": 44, "ph": "X", "name": "ReadAsync 233", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231235655, "dur": 2, "ph": "X", "name": "ProcessMessages 507", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231235659, "dur": 171, "ph": "X", "name": "ReadAsync 507", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231235834, "dur": 3, "ph": "X", "name": "ProcessMessages 1167", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231235839, "dur": 48, "ph": "X", "name": "ReadAsync 1167", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231235891, "dur": 2, "ph": "X", "name": "ProcessMessages 511", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231235896, "dur": 57, "ph": "X", "name": "ReadAsync 511", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231235956, "dur": 2, "ph": "X", "name": "ProcessMessages 493", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231235960, "dur": 47, "ph": "X", "name": "ReadAsync 493", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231236011, "dur": 1, "ph": "X", "name": "ProcessMessages 375", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231236015, "dur": 62, "ph": "X", "name": "ReadAsync 375", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231236082, "dur": 2, "ph": "X", "name": "ProcessMessages 847", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231236086, "dur": 36, "ph": "X", "name": "ReadAsync 847", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231236125, "dur": 1, "ph": "X", "name": "ProcessMessages 60", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231236129, "dur": 58, "ph": "X", "name": "ReadAsync 60", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231236191, "dur": 2, "ph": "X", "name": "ProcessMessages 869", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231236195, "dur": 41, "ph": "X", "name": "ReadAsync 869", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231236240, "dur": 1, "ph": "X", "name": "ProcessMessages 240", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231236243, "dur": 41, "ph": "X", "name": "ReadAsync 240", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231236288, "dur": 2, "ph": "X", "name": "ProcessMessages 624", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231236291, "dur": 31, "ph": "X", "name": "ReadAsync 624", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231236326, "dur": 1, "ph": "X", "name": "ProcessMessages 223", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231236329, "dur": 119, "ph": "X", "name": "ReadAsync 223", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231236454, "dur": 2, "ph": "X", "name": "ProcessMessages 830", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231236458, "dur": 53, "ph": "X", "name": "ReadAsync 830", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231236515, "dur": 2, "ph": "X", "name": "ProcessMessages 484", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231236519, "dur": 51, "ph": "X", "name": "ReadAsync 484", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231236574, "dur": 2, "ph": "X", "name": "ProcessMessages 428", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231236578, "dur": 53, "ph": "X", "name": "ReadAsync 428", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231236635, "dur": 2, "ph": "X", "name": "ProcessMessages 650", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231236638, "dur": 50, "ph": "X", "name": "ReadAsync 650", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231236692, "dur": 1, "ph": "X", "name": "ProcessMessages 310", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231236695, "dur": 43, "ph": "X", "name": "ReadAsync 310", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231236742, "dur": 78, "ph": "X", "name": "ProcessMessages 540", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231236823, "dur": 288, "ph": "X", "name": "ReadAsync 540", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231237115, "dur": 2, "ph": "X", "name": "ProcessMessages 848", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231237120, "dur": 59, "ph": "X", "name": "ReadAsync 848", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231237184, "dur": 2, "ph": "X", "name": "ProcessMessages 444", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231237188, "dur": 38, "ph": "X", "name": "ReadAsync 444", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231237229, "dur": 1, "ph": "X", "name": "ProcessMessages 132", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231237233, "dur": 59, "ph": "X", "name": "ReadAsync 132", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231237295, "dur": 2, "ph": "X", "name": "ProcessMessages 519", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231237299, "dur": 105, "ph": "X", "name": "ReadAsync 519", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231237407, "dur": 2, "ph": "X", "name": "ProcessMessages 782", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231237411, "dur": 56, "ph": "X", "name": "ReadAsync 782", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231237472, "dur": 2, "ph": "X", "name": "ProcessMessages 493", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231237476, "dur": 37, "ph": "X", "name": "ReadAsync 493", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231237517, "dur": 1, "ph": "X", "name": "ProcessMessages 328", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231237520, "dur": 50, "ph": "X", "name": "ReadAsync 328", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231237574, "dur": 2, "ph": "X", "name": "ProcessMessages 523", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231237578, "dur": 43, "ph": "X", "name": "ReadAsync 523", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231237625, "dur": 1, "ph": "X", "name": "ProcessMessages 202", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231237715, "dur": 60, "ph": "X", "name": "ReadAsync 202", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231237780, "dur": 3, "ph": "X", "name": "ProcessMessages 1004", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231237784, "dur": 280, "ph": "X", "name": "ReadAsync 1004", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231238068, "dur": 2, "ph": "X", "name": "ProcessMessages 716", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231238072, "dur": 129, "ph": "X", "name": "ReadAsync 716", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231238206, "dur": 2, "ph": "X", "name": "ProcessMessages 81", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231238210, "dur": 69, "ph": "X", "name": "ReadAsync 81", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231238283, "dur": 3, "ph": "X", "name": "ProcessMessages 1573", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231238288, "dur": 53, "ph": "X", "name": "ReadAsync 1573", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231238344, "dur": 2, "ph": "X", "name": "ProcessMessages 766", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231238352, "dur": 53, "ph": "X", "name": "ReadAsync 766", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231238409, "dur": 2, "ph": "X", "name": "ProcessMessages 520", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231238413, "dur": 50, "ph": "X", "name": "ReadAsync 520", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231238467, "dur": 1, "ph": "X", "name": "ProcessMessages 484", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231238471, "dur": 58, "ph": "X", "name": "ReadAsync 484", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231238532, "dur": 2, "ph": "X", "name": "ProcessMessages 757", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231238536, "dur": 119, "ph": "X", "name": "ReadAsync 757", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231238659, "dur": 1, "ph": "X", "name": "ProcessMessages 293", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231238663, "dur": 67, "ph": "X", "name": "ReadAsync 293", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231238733, "dur": 3, "ph": "X", "name": "ProcessMessages 1209", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231238738, "dur": 63, "ph": "X", "name": "ReadAsync 1209", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231238806, "dur": 2, "ph": "X", "name": "ProcessMessages 760", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231238810, "dur": 39, "ph": "X", "name": "ReadAsync 760", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231238853, "dur": 1, "ph": "X", "name": "ProcessMessages 254", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231238856, "dur": 46, "ph": "X", "name": "ReadAsync 254", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231238905, "dur": 2, "ph": "X", "name": "ProcessMessages 653", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231238909, "dur": 28, "ph": "X", "name": "ReadAsync 653", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231238941, "dur": 1, "ph": "X", "name": "ProcessMessages 101", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231238944, "dur": 48, "ph": "X", "name": "ReadAsync 101", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231238995, "dur": 2, "ph": "X", "name": "ProcessMessages 611", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231238998, "dur": 31, "ph": "X", "name": "ReadAsync 611", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231239033, "dur": 1, "ph": "X", "name": "ProcessMessages 306", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231239036, "dur": 42, "ph": "X", "name": "ReadAsync 306", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231239081, "dur": 1, "ph": "X", "name": "ProcessMessages 448", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231239084, "dur": 134, "ph": "X", "name": "ReadAsync 448", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231239222, "dur": 3, "ph": "X", "name": "ProcessMessages 893", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231239227, "dur": 53, "ph": "X", "name": "ReadAsync 893", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231239284, "dur": 2, "ph": "X", "name": "ProcessMessages 404", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231239288, "dur": 146, "ph": "X", "name": "ReadAsync 404", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231239438, "dur": 2, "ph": "X", "name": "ProcessMessages 1005", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231239442, "dur": 2293, "ph": "X", "name": "ReadAsync 1005", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231241744, "dur": 10, "ph": "X", "name": "ProcessMessages 4146", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231241757, "dur": 88, "ph": "X", "name": "ReadAsync 4146", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231241849, "dur": 3, "ph": "X", "name": "ProcessMessages 978", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231241854, "dur": 260, "ph": "X", "name": "ReadAsync 978", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231242118, "dur": 4, "ph": "X", "name": "ProcessMessages 1615", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231242124, "dur": 107, "ph": "X", "name": "ReadAsync 1615", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231242234, "dur": 1, "ph": "X", "name": "ProcessMessages 284", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231242238, "dur": 57, "ph": "X", "name": "ReadAsync 284", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231242298, "dur": 2, "ph": "X", "name": "ProcessMessages 519", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231242302, "dur": 64, "ph": "X", "name": "ReadAsync 519", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231242370, "dur": 2, "ph": "X", "name": "ProcessMessages 741", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231242377, "dur": 76, "ph": "X", "name": "ReadAsync 741", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231242457, "dur": 2, "ph": "X", "name": "ProcessMessages 851", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231242461, "dur": 120, "ph": "X", "name": "ReadAsync 851", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231242585, "dur": 2, "ph": "X", "name": "ProcessMessages 1026", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231242589, "dur": 63, "ph": "X", "name": "ReadAsync 1026", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231242656, "dur": 2, "ph": "X", "name": "ProcessMessages 674", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231242660, "dur": 442, "ph": "X", "name": "ReadAsync 674", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231243107, "dur": 6, "ph": "X", "name": "ProcessMessages 3204", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231243115, "dur": 100, "ph": "X", "name": "ReadAsync 3204", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231243218, "dur": 1, "ph": "X", "name": "ProcessMessages 215", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231243222, "dur": 517, "ph": "X", "name": "ReadAsync 215", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231243747, "dur": 380, "ph": "X", "name": "ProcessMessages 656", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231244133, "dur": 168, "ph": "X", "name": "ReadAsync 656", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231244306, "dur": 15, "ph": "X", "name": "ProcessMessages 1328", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231244323, "dur": 368, "ph": "X", "name": "ReadAsync 1328", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231244696, "dur": 8, "ph": "X", "name": "ProcessMessages 640", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231244706, "dur": 55, "ph": "X", "name": "ReadAsync 640", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231244765, "dur": 2, "ph": "X", "name": "ProcessMessages 128", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231244770, "dur": 244, "ph": "X", "name": "ReadAsync 128", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231245021, "dur": 6, "ph": "X", "name": "ProcessMessages 352", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231245029, "dur": 53, "ph": "X", "name": "ReadAsync 352", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231245085, "dur": 2, "ph": "X", "name": "ProcessMessages 128", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231245090, "dur": 62, "ph": "X", "name": "ReadAsync 128", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231245156, "dur": 4, "ph": "X", "name": "ProcessMessages 256", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231245161, "dur": 62, "ph": "X", "name": "ReadAsync 256", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231245227, "dur": 4, "ph": "X", "name": "ProcessMessages 304", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231245233, "dur": 52, "ph": "X", "name": "ReadAsync 304", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231245288, "dur": 3, "ph": "X", "name": "ProcessMessages 192", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231245293, "dur": 46, "ph": "X", "name": "ReadAsync 192", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231245342, "dur": 3, "ph": "X", "name": "ProcessMessages 176", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231245347, "dur": 45, "ph": "X", "name": "ReadAsync 176", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231245395, "dur": 3, "ph": "X", "name": "ProcessMessages 176", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231245400, "dur": 51, "ph": "X", "name": "ReadAsync 176", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231245454, "dur": 3, "ph": "X", "name": "ProcessMessages 224", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231245460, "dur": 42, "ph": "X", "name": "ReadAsync 224", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231245505, "dur": 1, "ph": "X", "name": "ProcessMessages 64", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231245509, "dur": 7990, "ph": "X", "name": "ReadAsync 64", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231253509, "dur": 7, "ph": "X", "name": "ProcessMessages 256", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231253519, "dur": 162, "ph": "X", "name": "ReadAsync 256", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231253685, "dur": 2, "ph": "X", "name": "ProcessMessages 48", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231253689, "dur": 162, "ph": "X", "name": "ReadAsync 48", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231253855, "dur": 1, "ph": "X", "name": "ProcessMessages 48", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231253858, "dur": 45, "ph": "X", "name": "ReadAsync 48", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231253907, "dur": 1, "ph": "X", "name": "ProcessMessages 48", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231253910, "dur": 86, "ph": "X", "name": "ReadAsync 48", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231254000, "dur": 1, "ph": "X", "name": "ProcessMessages 32", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231254004, "dur": 97, "ph": "X", "name": "ReadAsync 32", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231254104, "dur": 1, "ph": "X", "name": "ProcessMessages 32", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231254107, "dur": 81, "ph": "X", "name": "ReadAsync 32", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231254192, "dur": 2, "ph": "X", "name": "ProcessMessages 96", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231254196, "dur": 87, "ph": "X", "name": "ReadAsync 96", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231254287, "dur": 1, "ph": "X", "name": "ProcessMessages 16", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231254290, "dur": 39, "ph": "X", "name": "ReadAsync 16", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231254332, "dur": 1, "ph": "X", "name": "ProcessMessages 32", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231254335, "dur": 85, "ph": "X", "name": "ReadAsync 32", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231254424, "dur": 2, "ph": "X", "name": "ProcessMessages 96", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231254428, "dur": 1945, "ph": "X", "name": "ReadAsync 96", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231256380, "dur": 13, "ph": "X", "name": "ProcessMessages 976", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231256396, "dur": 104, "ph": "X", "name": "ReadAsync 976", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231256503, "dur": 2, "ph": "X", "name": "ProcessMessages 80", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231256507, "dur": 512, "ph": "X", "name": "ReadAsync 80", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231257027, "dur": 3, "ph": "X", "name": "ProcessMessages 48", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231257032, "dur": 119, "ph": "X", "name": "ReadAsync 48", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231257161, "dur": 4, "ph": "X", "name": "ProcessMessages 272", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231257167, "dur": 858, "ph": "X", "name": "ReadAsync 272", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231258033, "dur": 1456, "ph": "X", "name": "ProcessMessages 20", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231259501, "dur": 6442, "ph": "X", "name": "ReadAsync 20", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231265956, "dur": 8, "ph": "X", "name": "ProcessMessages 84", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231265967, "dur": 24262, "ph": "X", "name": "ReadAsync 84", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231290238, "dur": 1945, "ph": "X", "name": "ProcessMessages 44444", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231292192, "dur": 1238, "ph": "X", "name": "ReadAsync 44444", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231293439, "dur": 6, "ph": "X", "name": "ProcessMessages 272", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231293449, "dur": 169, "ph": "X", "name": "ReadAsync 272", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231293623, "dur": 1, "ph": "X", "name": "ProcessMessages 16", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231293626, "dur": 102, "ph": "X", "name": "ReadAsync 16", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231293733, "dur": 5, "ph": "X", "name": "ProcessMessages 16", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231293740, "dur": 176, "ph": "X", "name": "ReadAsync 16", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231293920, "dur": 1, "ph": "X", "name": "ProcessMessages 16", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231293923, "dur": 177, "ph": "X", "name": "ReadAsync 16", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231294106, "dur": 1, "ph": "X", "name": "ProcessMessages 16", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231294109, "dur": 185, "ph": "X", "name": "ReadAsync 16", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231294299, "dur": 1, "ph": "X", "name": "ProcessMessages 16", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231294303, "dur": 178, "ph": "X", "name": "ReadAsync 16", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231294486, "dur": 1, "ph": "X", "name": "ProcessMessages 16", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231294489, "dur": 179, "ph": "X", "name": "ReadAsync 16", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231294672, "dur": 1, "ph": "X", "name": "ProcessMessages 16", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231294676, "dur": 281, "ph": "X", "name": "ReadAsync 16", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231294962, "dur": 1, "ph": "X", "name": "ProcessMessages 32", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231294965, "dur": 830, "ph": "X", "name": "ReadAsync 32", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231295802, "dur": 2, "ph": "X", "name": "ProcessMessages 64", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231295807, "dur": 272, "ph": "X", "name": "ReadAsync 64", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231296087, "dur": 3, "ph": "X", "name": "ProcessMessages 16", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231296093, "dur": 2168, "ph": "X", "name": "ReadAsync 16", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231298271, "dur": 17, "ph": "X", "name": "ProcessMessages 1344", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272231298291, "dur": 1363530, "ph": "X", "name": "ReadAsync 1344", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272232661836, "dur": 38, "ph": "X", "name": "ProcessMessages 359", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272232661880, "dur": 4020, "ph": "X", "name": "ReadAsync 359", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272232665912, "dur": 6, "ph": "X", "name": "ProcessMessages 20", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272232665923, "dur": 265421, "ph": "X", "name": "ReadAsync 20", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272232931355, "dur": 30, "ph": "X", "name": "ProcessMessages 32452", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272232931390, "dur": 5000, "ph": "X", "name": "ReadAsync 32452", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272232936401, "dur": 616, "ph": "X", "name": "ProcessMessages 173", "args": {} },
{ "pid": 129706, "tid": 12884901888, "ts": 1678272232937025, "dur": 7905, "ph": "X", "name": "ReadAsync 173", "args": {} },
{ "pid": 129706, "tid": 914, "ts": 1678272232993472, "dur": 1768, "ph": "X", "name": "ReadEntireBinlogFromIpcAsync", "args": {} },
{ "pid": 129706, "tid": 8589934592, "ph": "M", "name": "thread_name", "args": { "name": "WaitForBuildProgramInputDataBeingWrittenAndSendDagReadyMessageAsync" } },
{ "pid": 129706, "tid": 8589934592, "ts": 1678269551435673, "dur": 323155, "ph": "X", "name": "await writeBuildProgramInputDataTask", "args": {} },
{ "pid": 129706, "tid": 8589934592, "ts": 1678269551758833, "dur": 10, "ph": "X", "name": "WritePipe.WaitConnectionAsync", "args": {} },
{ "pid": 129706, "tid": 8589934592, "ts": 1678269551758844, "dur": 5681, "ph": "X", "name": "WriteDagReadyMessage", "args": {} },
{ "pid": 129706, "tid": 16, "ts": 1678269554041604, "dur": 20, "ph": "X", "name": "WaitForBuildProgramInputDataBeingWrittenAndSendDagReadyMessageAsync", "args": {} },
{ "pid": 129706, "tid": 8589934592, "ts": 1678272231167919, "dur": 214472, "ph": "X", "name": "await writeBuildProgramInputDataTask", "args": {} },
{ "pid": 129706, "tid": 8589934592, "ts": 1678272231382396, "dur": 10, "ph": "X", "name": "WritePipe.WaitConnectionAsync", "args": {} },
{ "pid": 129706, "tid": 8589934592, "ts": 1678272231382409, "dur": 4906, "ph": "X", "name": "WriteDagReadyMessage", "args": {} },
{ "pid": 129706, "tid": 914, "ts": 1678272232995244, "dur": 20, "ph": "X", "name": "WaitForBuildProgramInputDataBeingWrittenAndSendDagReadyMessageAsync", "args": {} },
{ "pid": 129706, "tid": 4294967296, "ph": "M", "name": "thread_name", "args": { "name": "BuildAsync" } },
{ "pid": 129706, "tid": 4294967296, "ts": 1678269551318739, "dur": 2696525, "ph": "X", "name": "RunBackend", "args": {} },
{ "pid": 129706, "tid": 4294967296, "ts": 1678269551404077, "dur": 21702, "ph": "X", "name": "BackendProgram.Start", "args": {} },
{ "pid": 129706, "tid": 4294967296, "ts": 1678269554015610, "dur": 11814, "ph": "X", "name": "await WaitForAndApplyScriptUpdaters", "args": {} },
{ "pid": 129706, "tid": 4294967296, "ts": 1678269554018283, "dur": 3160, "ph": "X", "name": "await ScriptUpdaters", "args": {} },
{ "pid": 129706, "tid": 4294967296, "ts": 1678269554027530, "dur": 23, "ph": "X", "name": "await taskToReadBuildProgramOutput", "args": {} },
{ "pid": 129706, "tid": 16, "ts": 1678269554041633, "dur": 56, "ph": "X", "name": "BuildAsync", "args": {} },
{ "pid": 129706, "tid": 4294967296, "ts": 1678272231045420, "dur": 1901217, "ph": "X", "name": "RunBackend", "args": {} },
{ "pid": 129706, "tid": 4294967296, "ts": 1678272231110205, "dur": 50338, "ph": "X", "name": "BackendProgram.Start", "args": {} },
{ "pid": 129706, "tid": 4294967296, "ts": 1678272232946922, "dur": 11018, "ph": "X", "name": "await WaitForAndApplyScriptUpdaters", "args": {} },
{ "pid": 129706, "tid": 4294967296, "ts": 1678272232949543, "dur": 2838, "ph": "X", "name": "await ScriptUpdaters", "args": {} },
{ "pid": 129706, "tid": 4294967296, "ts": 1678272232958059, "dur": 25, "ph": "X", "name": "await taskToReadBuildProgramOutput", "args": {} },
{ "pid": 129706, "tid": 914, "ts": 1678272232995269, "dur": 25, "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":1678269551424435, "dur":1794, "ph":"X", "name": "DriverInitData", "args": { "detail":"" }}
,{ "pid":12345, "tid":0, "ts":1678269551426243, "dur":468, "ph":"X", "name": "RemoveStaleOutputs", "args": { "detail":"" }}
,{ "pid":12345, "tid":0, "ts":1678269551426822, "dur":151, "ph":"X", "name": "BuildQueueInit", "args": { "detail":"" }}
,{ "pid":12345, "tid":0, "ts":1678269551427381, "dur":28389, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_CA102CFD738DBBBB.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678269551456148, "dur":114, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_2DE2D43FBFFC2F0D.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678269551456592, "dur":136, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_6676DA3736E9A3AB.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678269551456973, "dur":102, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_D64B72D4A4245C5F.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678269551457412, "dur":131, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_4744019A759E6717.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678269551457911, "dur":135, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_ECFFFA9EAA72F444.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678269551458293, "dur":100, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_B43DAD802AE68114.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678269551458716, "dur":131, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_2F14F010CF6D0E23.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678269551459173, "dur":124, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/UnityEngine.TestRunner.rsp2" }}
,{ "pid":12345, "tid":0, "ts":1678269551459589, "dur":105, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/UnityEditor.TestRunner.dll.mvfrm.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678269551460104, "dur":136, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/UnityEditor.UI.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678269551460587, "dur":134, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Burst.dll.mvfrm.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678269551461085, "dur":130, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Postprocessing.Runtime.AdditionalFile.txt" }}
,{ "pid":12345, "tid":0, "ts":1678269551461611, "dur":134, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.InputSystem.dll.mvfrm.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678269551462035, "dur":104, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.TextMeshPro.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678269551462528, "dur":105, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipelines.Core.Runtime.ref.dll_02F9514DCF9F5D9D.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678269551463076, "dur":110, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Sysroot.Linux_x86_64.rsp2" }}
,{ "pid":12345, "tid":0, "ts":1678269551463878, "dur":107, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipeline.Universal.ShaderLibrary.dll (+2 others)" }}
,{ "pid":12345, "tid":0, "ts":1678269551464338, "dur":107, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Core.Editor.dll.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678269551464710, "dur":95, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.ShaderGraph.Utilities.AdditionalFile.txt" }}
,{ "pid":12345, "tid":0, "ts":1678269551465170, "dur":99, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Netcode.Runtime.dll.mvfrm.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678269551465622, "dur":97, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Universal.2D.Runtime.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678269551466060, "dur":98, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Burst.Editor.ref.dll_95F4B84263D09C5C.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678269551466491, "dur":97, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Mathematics.Editor.rsp2" }}
,{ "pid":12345, "tid":0, "ts":1678269551466845, "dur":95, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.ShaderGraph.Editor.dll (+2 others)" }}
,{ "pid":12345, "tid":0, "ts":1678269551467486, "dur":104, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Universal.Editor.dll.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678269551467966, "dur":388, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Netcode.Editor.PackageChecker.AdditionalFile.txt" }}
,{ "pid":12345, "tid":0, "ts":1678269551468383, "dur":153, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Netcode.Editor.PackageChecker.rsp2" }}
,{ "pid":12345, "tid":0, "ts":1678269551468960, "dur":3242, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Networking.Editor.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678269551472655, "dur":111, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.ref.dll_388DC9AFB636450B.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678269551473119, "dur":96, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Universal.Shaders.rsp2" }}
,{ "pid":12345, "tid":0, "ts":1678269551473558, "dur":96, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Toolchain.Linux-x86_64.dll (+2 others)" }}
,{ "pid":12345, "tid":0, "ts":1678269551473991, "dur":96, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aEDbg.dag/Unity.VisualStudio.Editor.dll.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678269551474237, "dur":55, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.VisualStudio.Editor.pdb" }}
,{ "pid":12345, "tid":0, "ts":1678269551474387, "dur":98, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Burst.CodeGen.AdditionalFile.txt" }}
,{ "pid":12345, "tid":0, "ts":1678269551474863, "dur":105, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"ILPP-Configuration Library/ilpp-configuration.nevergeneratedoutput" }}
,{ "pid":12345, "tid":0, "ts":1678269551475402, "dur":106, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aEDbg.dag/ParrelSync.dll.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678269551475892, "dur":104, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.InputSystem.pdb" }}
,{ "pid":12345, "tid":0, "ts":1678269551476319, "dur":272, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Networking.Editor.dll" }}
,{ "pid":12345, "tid":0, "ts":1678269551476708, "dur":126, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Postprocessing.Runtime.dll (+pdb)" }}
,{ "pid":12345, "tid":0, "ts":1678269551477366, "dur":115, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Searcher.Editor.dll" }}
,{ "pid":12345, "tid":0, "ts":1678269551477857, "dur":237, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.TextMeshPro.pdb" }}
,{ "pid":12345, "tid":0, "ts":1678269551478655, "dur":486, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Postprocessing.Editor.pdb" }}
,{ "pid":12345, "tid":0, "ts":1678269551479706, "dur":2552, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Collections.BurstCompatibilityGen.rsp2" }}
,{ "pid":12345, "tid":0, "ts":1678269551482788, "dur":110, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Collections.DocCodeSamples.dll.mvfrm.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678269551483296, "dur":107, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Toolchain.Linux-x86_64.dll" }}
,{ "pid":12345, "tid":0, "ts":1678269551483893, "dur":107, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.ShaderGraph.Editor.pdb" }}
,{ "pid":12345, "tid":0, "ts":1678269551484421, "dur":101, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Cinemachine.dll (+2 others)" }}
,{ "pid":12345, "tid":0, "ts":1678269551484832, "dur":95, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.Universal.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":0, "ts":1678269551485341, "dur":236, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles Library/ScriptAssemblies/com.unity.cinemachine.editor.dll" }}
,{ "pid":12345, "tid":0, "ts":1678269551486025, "dur":249, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Assembly-CSharp.rsp2" }}
,{ "pid":12345, "tid":0, "ts":1678269551426993, "dur":59398, "ph":"X", "name": "EnqueueRequestedNodes", "args": { "detail":"" }}
,{ "pid":12345, "tid":0, "ts":1678269551486403, "dur":2516753, "ph":"X", "name": "WaitForBuildFinished", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":0, "ts":1678269554003207, "dur":7955, "ph":"X", "name": "Tundra", "args": { "detail":"Write AllBuiltNodes" }}
,{ "pid":12345, "tid":1, "ts":1678269551427137, "dur":59273, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678269551487322, "dur":548, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/UnityEngine.TestRunner.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678269551488001, "dur":218, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/UnityEngine.UI.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678269551488224, "dur":221, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/UnityEngine.UI.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678269551489251, "dur":147, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678269551489428, "dur":98, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Sysroot.Linux_x86_64.dll.mvfrm.rsp" }}
,{ "pid":12345, "tid":1, "ts":1678269551489915, "dur":1061, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/ParrelSync.AdditionalFile.txt" }}
,{ "pid":12345, "tid":1, "ts":1678269551490997, "dur":238, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678269551491259, "dur":6572, "ph":"X", "name": "File", "args": { "detail":"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/Tools/ilpp/Unity.ILPP.Runner/System.Private.Xml.dll" }}
,{ "pid":12345, "tid":1, "ts":1678269551491236, "dur":6632, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678269551497882, "dur":3376, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Postprocessing.Runtime.dll.mvfrm" }}
,{ "pid":12345, "tid":1, "ts":1678269551501260, "dur":75, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Postprocessing.Runtime.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678269551501336, "dur":516, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678269551501957, "dur":80, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Postprocessing.Editor.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678269551502066, "dur":350, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Postprocessing.Editor.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678269551502660, "dur":511, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678269551503220, "dur":400, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Core.Editor.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678269551503621, "dur":285, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678269551503964, "dur":922, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.ShaderGraph.Editor.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678269551504937, "dur":121, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Universal.Editor.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678269551505131, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/com.unity.cinemachine.editor.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678269551505279, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Assembly-CSharp.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678269551506968, "dur":1442500, "ph":"X", "name": "Csc", "args": { "detail":"Library/Bee/artifacts/2400b0aEDbg.dag/Assembly-CSharp.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678269552950329, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/2400b0aEDbg.dag/Assembly-CSharp.dll" }}
,{ "pid":12345, "tid":1, "ts":1678269552950316, "dur":427, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Assembly-CSharp.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678269552952072, "dur":108, "ph":"X", "name": "StoreTimestampsOfNonGeneratedInputFiles", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678269552952494, "dur":1045714, "ph":"X", "name": "ILPostProcess", "args": { "detail":"Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Assembly-CSharp.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678269554000749, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Assembly-CSharp.dll" }}
,{ "pid":12345, "tid":1, "ts":1678269554000726, "dur":119, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll" }}
,{ "pid":12345, "tid":1, "ts":1678269554000856, "dur":2062, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.dll" }}
,{ "pid":12345, "tid":2, "ts":1678269551427148, "dur":61080, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
,{ "pid":12345, "tid":2, "ts":1678269551488242, "dur":2708, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ARModule.dll_87AD562CF8581A5A.mvfrm" }}
,{ "pid":12345, "tid":2, "ts":1678269551490955, "dur":945, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aEDbg.dag/UnityEditor.TestRunner.dll.mvfrm" }}
,{ "pid":12345, "tid":2, "ts":1678269551491900, "dur":2375, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
,{ "pid":12345, "tid":2, "ts":1678269551494286, "dur":1135, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/UnityEditor.TestRunner.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678269551495480, "dur":143, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/UnityEditor.UI.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678269551495670, "dur":154, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Burst.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678269551495851, "dur":193, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Mathematics.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678269551496094, "dur":138, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Collections.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678269551496269, "dur":134, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Networking.Transport.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678269551496437, "dur":681, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.InputSystem.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678269551497151, "dur":242, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Netcode.Runtime.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678269551497435, "dur":739, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Core.Runtime.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678269551498181, "dur":4527, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Core.Runtime.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678269551502786, "dur":1567, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipeline.Universal.ShaderLibrary.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678269551504447, "dur":100, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Universal.Runtime.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678269551504641, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Universal.2D.Runtime.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678269551504779, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Cinemachine.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678269551504881, "dur":798, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":2, "ts":1678269551505679, "dur":241910, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":2, "ts":1678269551747593, "dur":167, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Toolchain.Linux-x86_64.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551747773, "dur":175, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/UnityEditor.UI.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551747964, "dur":164, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.ShaderGraph.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551748153, "dur":180, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/PPv2URPConverters.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551748349, "dur":157, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Collections.BurstCompatibilityGen.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551748517, "dur":157, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Searcher.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551748683, "dur":178, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/com.unity.cinemachine.editor.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551748870, "dur":174, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Burst.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551749052, "dur":175, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Netcode.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551749236, "dur":171, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.TextMeshPro.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551749416, "dur":184, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/ParrelSync.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551749610, "dur":157, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.SysrootPackage.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551749780, "dur":157, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Postprocessing.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551749948, "dur":173, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Networking.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551750133, "dur":170, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Mathematics.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551750312, "dur":155, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.ShaderGraph.Utilities.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551750475, "dur":156, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.2D.Sprite.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551750640, "dur":171, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Collections.DocCodeSamples.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551750822, "dur":2551, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Sysroot.Linux_x86_64.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551753387, "dur":7846, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Sysroot.Linux_x86_64.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678269551761264, "dur":3964, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":2, "ts":1678269551765228, "dur":2237889, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678269551427155, "dur":61082, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678269551488257, "dur":1876, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.NVIDIAModule.dll_36915190E0A15774.mvfrm" }}
,{ "pid":12345, "tid":3, "ts":1678269551490860, "dur":6797, "ph":"X", "name": "File", "args": { "detail":"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/Tools/ilpp/Unity.ILPP.Runner/System.Text.Json.dll" }}
,{ "pid":12345, "tid":3, "ts":1678269551490833, "dur":6841, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678269551497715, "dur":584, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Burst.CodeGen.dll.mvfrm" }}
,{ "pid":12345, "tid":3, "ts":1678269551498301, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Burst.CodeGen.dll (+2 others)" }}
,{ "pid":12345, "tid":3, "ts":1678269551498408, "dur":62, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Searcher.Editor.dll (+2 others)" }}
,{ "pid":12345, "tid":3, "ts":1678269551498838, "dur":166, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.TextMeshPro.dll (+2 others)" }}
,{ "pid":12345, "tid":3, "ts":1678269551499295, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.VisualStudio.Editor.dll (+2 others)" }}
,{ "pid":12345, "tid":3, "ts":1678269551499667, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.TextMeshPro.Editor.dll (+2 others)" }}
,{ "pid":12345, "tid":3, "ts":1678269551500988, "dur":960, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678269551501948, "dur":99, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Netcode.Editor.CodeGen.dll" }}
,{ "pid":12345, "tid":3, "ts":1678269551502047, "dur":638, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678269551502695, "dur":2980, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678269551505675, "dur":238625, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678269551744307, "dur":307, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Netcode.Runtime.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551744640, "dur":171, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/UnityEngine.UI.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551744825, "dur":158, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.Universal.Shaders.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551744996, "dur":184, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Burst.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551745194, "dur":158, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Collections.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551745379, "dur":171, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.TextMeshPro.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551745562, "dur":186, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.Core.Runtime.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551745765, "dur":173, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.InputSystem.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551745961, "dur":157, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Mathematics.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551746146, "dur":175, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Cinemachine.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551746332, "dur":158, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.Universal.Runtime.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551746500, "dur":184, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.Core.ShaderLibrary.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551746698, "dur":189, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.Universal.2D.Runtime.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551746899, "dur":183, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipeline.Universal.ShaderLibrary.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551747092, "dur":156, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Networking.Transport.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551747259, "dur":173, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Postprocessing.Runtime.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551747441, "dur":3556, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Netcode.Components.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551751032, "dur":176, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.Core.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551751237, "dur":175, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.Universal.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551751447, "dur":163, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Netcode.Editor.PackageChecker.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678269551752504, "dur":7344, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Mathematics.pdb" }}
,{ "pid":12345, "tid":3, "ts":1678269551759933, "dur":3189, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678269551763124, "dur":1762, "ph":"X", "name": "CheckDagSignatures", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678269551764887, "dur":2238240, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678269551428185, "dur":62736, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678269551490923, "dur":392, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678269551491315, "dur":177, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678269551491493, "dur":175, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678269551491668, "dur":179, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678269551491848, "dur":98, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678269551494238, "dur":3483, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.render-pipelines.universal@15.0.3/Runtime/2D/Shadows/ShadowProvider/ShadowShape2DProvider.cs" }}
,{ "pid":12345, "tid":4, "ts":1678269551494229, "dur":3521, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678269551497750, "dur":70, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Netcode.Editor.CodeGen.dll (+2 others)" }}
,{ "pid":12345, "tid":4, "ts":1678269551497827, "dur":3246, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Netcode.Editor.CodeGen.dll (+2 others)" }}
,{ "pid":12345, "tid":4, "ts":1678269551501081, "dur":159, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPP-Configuration Library/ilpp-configuration.nevergeneratedoutput" }}
,{ "pid":12345, "tid":4, "ts":1678269551501240, "dur":109, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678269551502083, "dur":240603, "ph":"X", "name": "ILPP-Configuration", "args": { "detail":"Library/ilpp-configuration.nevergeneratedoutput" }}
,{ "pid":12345, "tid":4, "ts":1678269551743797, "dur":8755, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll (+pdb)" }}
,{ "pid":12345, "tid":4, "ts":1678269551752558, "dur":7358, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll (+pdb)" }}
,{ "pid":12345, "tid":4, "ts":1678269551759930, "dur":1338, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678269551761269, "dur":2239491, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678269554000773, "dur":53, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Assembly-CSharp.pdb" }}
,{ "pid":12345, "tid":4, "ts":1678269554000765, "dur":64, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb" }}
,{ "pid":12345, "tid":4, "ts":1678269554000849, "dur":1221, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.pdb" }}
,{ "pid":12345, "tid":4, "ts":1678269554002075, "dur":1059, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":0, "ts":1678269554012923, "dur":417, "ph":"X", "name": "ProfilerWriteOutput" }
,{ "pid": 129706, "tid": 16, "ts": 1678269554042779, "dur": 2388, "ph": "X", "name": "Wait for external events", "args": {"First to finish": "backend1.traceevents"} },
{ "pid": 129706, "tid": 16, "ts": 1678269554045346, "dur": 2195, "ph": "X", "name": "backend1.traceevents", "args": {} },
{ "pid": 129706, "tid": 16, "ts": 1678269554037438, "dur": 11211, "ph": "X", "name": "Write chrome-trace events", "args": {} },
,{ "pid":12345, "tid":0, "ts":1678272231182596, "dur":1827, "ph":"X", "name": "DriverInitData", "args": { "detail":"" }}
,{ "pid":12345, "tid":0, "ts":1678272231184437, "dur":464, "ph":"X", "name": "RemoveStaleOutputs", "args": { "detail":"" }}
,{ "pid":12345, "tid":0, "ts":1678272231185011, "dur":135, "ph":"X", "name": "BuildQueueInit", "args": { "detail":"" }}
,{ "pid":12345, "tid":0, "ts":1678272231185531, "dur":16183, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.TextCoreFontEngineModule.dll_CA102CFD738DBBBB.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678272231202027, "dur":243, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AssetBundleModule.dll_2DE2D43FBFFC2F0D.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678272231202540, "dur":430, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.GIModule.dll_6676DA3736E9A3AB.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678272231203222, "dur":104, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.MarshallingModule.dll_D64B72D4A4245C5F.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678272231203596, "dur":100, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.SpriteShapeModule.dll_4744019A759E6717.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678272231203954, "dur":107, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UIElementsModule.dll_ECFFFA9EAA72F444.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678272231204305, "dur":97, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.UnityWebRequestTextureModule.dll_B43DAD802AE68114.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678272231204428, "dur":94, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VFXModule.dll_E17EF556002367E3.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678272231204741, "dur":110, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEditor.WebGL.Extensions.dll_2F14F010CF6D0E23.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678272231205116, "dur":102, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/UnityEngine.TestRunner.rsp2" }}
,{ "pid":12345, "tid":0, "ts":1678272231205498, "dur":97, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/UnityEditor.TestRunner.dll.mvfrm.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678272231205943, "dur":520, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/UnityEditor.UI.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678272231206910, "dur":122, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Burst.dll.mvfrm.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678272231207379, "dur":108, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Postprocessing.Runtime.AdditionalFile.txt" }}
,{ "pid":12345, "tid":0, "ts":1678272231207770, "dur":101, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.InputSystem.dll.mvfrm.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678272231208176, "dur":434, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.TextMeshPro.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678272231208725, "dur":136, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.TextMeshPro.dll.mvfrm.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678272231209175, "dur":6260, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Core.Runtime.rsp2" }}
,{ "pid":12345, "tid":0, "ts":1678272231215901, "dur":4941, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Networking.Transport.rsp2" }}
,{ "pid":12345, "tid":0, "ts":1678272231221218, "dur":119, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Core.Editor.dll (+2 others)" }}
,{ "pid":12345, "tid":0, "ts":1678272231221634, "dur":280, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Searcher.Editor.dll.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678272231222368, "dur":56, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/Unity.Netcode.Runtime.ref.dll_7F945A9BEAF242D9.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678272231222554, "dur":2523, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Netcode.Runtime.dll.mvfrm.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678272231225128, "dur":713, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Universal.Runtime.dll (+2 others)" }}
,{ "pid":12345, "tid":0, "ts":1678272231226413, "dur":3127, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Netcode.Components.AdditionalFile.txt" }}
,{ "pid":12345, "tid":0, "ts":1678272231232845, "dur":80, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Core.ShaderLibrary.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678272231233137, "dur":306, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll.mvfrm" }}
,{ "pid":12345, "tid":0, "ts":1678272231233878, "dur":421, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.TextMeshPro.Editor.dll.mvfrm.rsp" }}
,{ "pid":12345, "tid":0, "ts":1678272231238278, "dur":292, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.Sysroot.Linux_x86_64.pdb" }}
,{ "pid":12345, "tid":0, "ts":1678272231239941, "dur":137, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Unity.RenderPipelines.Universal.Runtime.pdb" }}
,{ "pid":12345, "tid":0, "ts":1678272231240534, "dur":282, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Cinemachine.dll (+2 others)" }}
,{ "pid":12345, "tid":0, "ts":1678272231240821, "dur":1453, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Cinemachine.AdditionalFile.txt" }}
,{ "pid":12345, "tid":0, "ts":1678272231243502, "dur":83, "ph":"X", "name": "EmitFirstTimeEnqueue", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Assembly-CSharp.rsp2" }}
,{ "pid":12345, "tid":0, "ts":1678272231185165, "dur":58537, "ph":"X", "name": "EnqueueRequestedNodes", "args": { "detail":"" }}
,{ "pid":12345, "tid":0, "ts":1678272231243702, "dur":133, "ph":"X", "name": "SortWorkingStack", "args": { "detail":"" }}
,{ "pid":12345, "tid":0, "ts":1678272231243837, "dur":1691058, "ph":"X", "name": "WaitForBuildFinished", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":0, "ts":1678272232935001, "dur":8174, "ph":"X", "name": "Tundra", "args": { "detail":"Write AllBuiltNodes" }}
,{ "pid":12345, "tid":1, "ts":1678272231185570, "dur":58594, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678272231244459, "dur":73, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterInputModule.dll_32AD40CDAAB596D9.mvfrm" }}
,{ "pid":12345, "tid":1, "ts":1678272231246021, "dur":302, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678272231246698, "dur":64, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678272231246762, "dur":65, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678272231246978, "dur":6365, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.ide.visualstudio@2.0.17/Editor/Messaging/MessageEventArgs.cs" }}
,{ "pid":12345, "tid":1, "ts":1678272231246956, "dur":6407, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678272231253363, "dur":118, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678272231253481, "dur":229, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678272231253710, "dur":2106, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678272231255816, "dur":112, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678272231255947, "dur":74, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Universal.Runtime.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678272231256050, "dur":78, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Core.Editor.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678272231256169, "dur":51, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Universal.2D.Runtime.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678272231256312, "dur":212, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.ShaderGraph.Editor.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678272231256608, "dur":106, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Universal.Editor.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678272231256748, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Cinemachine.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678272231256851, "dur":57, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/com.unity.cinemachine.editor.dll (+2 others)" }}
,{ "pid":12345, "tid":1, "ts":1678272231256968, "dur":88, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678272231257056, "dur":243, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678272231257299, "dur":2245, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678272231259589, "dur":29557, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678272231289151, "dur":698, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Netcode.Runtime.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231289885, "dur":176, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/UnityEngine.UI.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231290074, "dur":162, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.Universal.Shaders.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231290248, "dur":160, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Burst.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231290422, "dur":161, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Collections.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231290596, "dur":223, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.TextMeshPro.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231290833, "dur":172, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.Core.Runtime.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231291020, "dur":175, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.InputSystem.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231291208, "dur":181, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Mathematics.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231291402, "dur":173, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Cinemachine.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231291587, "dur":169, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.Universal.Runtime.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231291768, "dur":164, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.Core.ShaderLibrary.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231291949, "dur":165, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.Universal.2D.Runtime.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231292128, "dur":161, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipeline.Universal.ShaderLibrary.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231292300, "dur":163, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Networking.Transport.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231292474, "dur":165, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Postprocessing.Runtime.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231292648, "dur":165, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Netcode.Components.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231292826, "dur":164, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/UnityEditor.UI.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231293006, "dur":164, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Toolchain.Linux-x86_64.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231293181, "dur":2240, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/PPv2URPConverters.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231295460, "dur":3143, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.2D.Sprite.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":1, "ts":1678272231298631, "dur":90824, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":1, "ts":1678272231389455, "dur":1545461, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":2, "ts":1678272231187576, "dur":56698, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
,{ "pid":12345, "tid":2, "ts":1678272231244306, "dur":297, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_745ABAFC34600199.mvfrm" }}
,{ "pid":12345, "tid":2, "ts":1678272231244629, "dur":144, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AccessibilityModule.dll_745ABAFC34600199.mvfrm" }}
,{ "pid":12345, "tid":2, "ts":1678272231244796, "dur":95, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aEDbg.dag/UnityEngine.TestRunner.dll.mvfrm" }}
,{ "pid":12345, "tid":2, "ts":1678272231244891, "dur":301, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
,{ "pid":12345, "tid":2, "ts":1678272231245193, "dur":80, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor-Combine Library/Bee/artifacts/2400b0aEDbg.dag/UnityEngine.TestRunner.dll.mvfrm" }}
,{ "pid":12345, "tid":2, "ts":1678272231245285, "dur":8143, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/UnityEngine.TestRunner.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678272231253522, "dur":143, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/UnityEditor.TestRunner.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678272231253746, "dur":77, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/UnityEditor.UI.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678272231255841, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Burst.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678272231257079, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Collections.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678272231257328, "dur":54, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Networking.Transport.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678272231257419, "dur":68, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Netcode.Runtime.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678272231259018, "dur":456, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Netcode.Editor.CodeGen.dll (+2 others)" }}
,{ "pid":12345, "tid":2, "ts":1678272231259599, "dur":237, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPP-Configuration Library/ilpp-configuration.nevergeneratedoutput" }}
,{ "pid":12345, "tid":2, "ts":1678272231259857, "dur":56, "ph":"X", "name": "StoreTimestampsOfNonGeneratedInputFiles", "args": { "detail":"" }}
,{ "pid":12345, "tid":2, "ts":1678272231259920, "dur":27306, "ph":"X", "name": "ILPP-Configuration", "args": { "detail":"Library/ilpp-configuration.nevergeneratedoutput" }}
,{ "pid":12345, "tid":2, "ts":1678272231289112, "dur":742, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.ShaderGraph.ShaderGraphLibrary.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678272231289855, "dur":5705, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
,{ "pid":12345, "tid":2, "ts":1678272231295569, "dur":330, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.ShaderGraph.Utilities.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678272231295914, "dur":365, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Postprocessing.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678272231296280, "dur":124, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
,{ "pid":12345, "tid":2, "ts":1678272231296412, "dur":258, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/ParrelSync.dll (+pdb)" }}
,{ "pid":12345, "tid":2, "ts":1678272231296670, "dur":1610, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
,{ "pid":12345, "tid":2, "ts":1678272231298304, "dur":332, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":2, "ts":1678272231298636, "dur":1635451, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":2, "ts":1678272232934101, "dur":56, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Assembly-CSharp.pdb" }}
,{ "pid":12345, "tid":2, "ts":1678272232934093, "dur":66, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.pdb" }}
,{ "pid":12345, "tid":2, "ts":1678272232934208, "dur":300, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.pdb" }}
,{ "pid":12345, "tid":2, "ts":1678272232934510, "dur":424, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231185565, "dur":58588, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231244205, "dur":81, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.VideoModule.dll_6F37E5FA2CCDB6D6.mvfrm" }}
,{ "pid":12345, "tid":3, "ts":1678272231244302, "dur":167, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.AndroidJNIModule.dll_6A9A7629F14E49CF.mvfrm" }}
,{ "pid":12345, "tid":3, "ts":1678272231244470, "dur":90, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.CommandStateObserverModule.dll_E0249AF6BB98BF95.mvfrm" }}
,{ "pid":12345, "tid":3, "ts":1678272231244854, "dur":688, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/UnityEngine.UI.dll (+2 others)" }}
,{ "pid":12345, "tid":3, "ts":1678272231245926, "dur":51, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/ParrelSync.rsp2" }}
,{ "pid":12345, "tid":3, "ts":1678272231246038, "dur":288, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231246445, "dur":79, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231246524, "dur":51, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231246617, "dur":198, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231246987, "dur":652, "ph":"X", "name": "File", "args": { "detail":"/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/Tools/ilpp/Unity.ILPP.Runner/Microsoft.AspNetCore.ResponseCaching.dll" }}
,{ "pid":12345, "tid":3, "ts":1678272231246815, "dur":830, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231247646, "dur":65, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231249991, "dur":552, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.netcode.gameobjects@1.2.0/Runtime/Exceptions/NotServerException.cs" }}
,{ "pid":12345, "tid":3, "ts":1678272231249962, "dur":581, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231252579, "dur":788, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.test-framework@1.3.3/UnityEditor.TestRunner/TestRun/TestJobRunner.cs" }}
,{ "pid":12345, "tid":3, "ts":1678272231252570, "dur":824, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231253394, "dur":89, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231253483, "dur":230, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231253713, "dur":2108, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231255822, "dur":1238, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231257060, "dur":243, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231257304, "dur":2288, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231259596, "dur":33727, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231293328, "dur":169, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Searcher.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678272231293509, "dur":167, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.ShaderGraph.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678272231293687, "dur":168, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.TextMeshPro.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678272231293867, "dur":177, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Collections.BurstCompatibilityGen.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678272231294059, "dur":172, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Mathematics.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678272231294247, "dur":172, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Netcode.Editor.PackageChecker.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678272231294431, "dur":174, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Netcode.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678272231294616, "dur":176, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.Universal.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678272231294809, "dur":173, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.RenderPipelines.Core.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678272231294994, "dur":177, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Sysroot.Linux_x86_64.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678272231295183, "dur":274, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Collections.DocCodeSamples.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678272231295475, "dur":274, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Burst.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678272231295761, "dur":327, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.Networking.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678272231296102, "dur":452, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Unity.SysrootPackage.Editor.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678272231296555, "dur":171, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231296733, "dur":228, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/com.unity.cinemachine.editor.dll (+pdb)" }}
,{ "pid":12345, "tid":3, "ts":1678272231296961, "dur":50, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231298316, "dur":89968, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231388286, "dur":1164, "ph":"X", "name": "CheckDagSignatures", "args": { "detail":"" }}
,{ "pid":12345, "tid":3, "ts":1678272231389451, "dur":1545457, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231185557, "dur":58290, "ph":"X", "name": "FirstLock", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231244463, "dur":203, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"MovedFromExtractor Library/Bee/artifacts/mvdfrm/UnityEngine.ClusterRendererModule.dll_DAACE96758FE95F8.mvfrm" }}
,{ "pid":12345, "tid":4, "ts":1678272231244720, "dur":65, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/UnityEditor.TestRunner.dll.mvfrm.rsp" }}
,{ "pid":12345, "tid":4, "ts":1678272231244889, "dur":163, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231245052, "dur":141, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Collections.rsp" }}
,{ "pid":12345, "tid":4, "ts":1678272231245196, "dur":78, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Core.Editor.AdditionalFile.txt" }}
,{ "pid":12345, "tid":4, "ts":1678272231245497, "dur":57, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Universal.2D.Runtime.AdditionalFile.txt" }}
,{ "pid":12345, "tid":4, "ts":1678272231245583, "dur":62, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231245665, "dur":70, "ph":"X", "name": "EmitNodeUpToDate", "args": { "detail":"WriteText Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Universal.Editor.AdditionalFile.txt" }}
,{ "pid":12345, "tid":4, "ts":1678272231245800, "dur":129, "ph":"X", "name": "OutputFilesMissingFor", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231246017, "dur":462, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231246479, "dur":168, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231246693, "dur":61, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231246754, "dur":96, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231246850, "dur":83, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231246974, "dur":5622, "ph":"X", "name": "File", "args": { "detail":"Library/PackageCache/com.unity.textmeshpro@3.0.6/Scripts/Editor/TMPro_TexturePostProcessor.cs" }}
,{ "pid":12345, "tid":4, "ts":1678272231246971, "dur":5661, "ph":"X", "name": "EarlyStatNonGeneratedFile", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231253335, "dur":129, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231253478, "dur":215, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231253708, "dur":158, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231253886, "dur":96, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Mathematics.dll (+2 others)" }}
,{ "pid":12345, "tid":4, "ts":1678272231254018, "dur":154, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.InputSystem.dll (+2 others)" }}
,{ "pid":12345, "tid":4, "ts":1678272231254215, "dur":110, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.RenderPipelines.Core.Runtime.dll (+2 others)" }}
,{ "pid":12345, "tid":4, "ts":1678272231254445, "dur":56, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Postprocessing.Runtime.dll (+2 others)" }}
,{ "pid":12345, "tid":4, "ts":1678272231254529, "dur":63, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Searcher.Editor.dll (+2 others)" }}
,{ "pid":12345, "tid":4, "ts":1678272231254783, "dur":59, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.Postprocessing.Editor.dll (+2 others)" }}
,{ "pid":12345, "tid":4, "ts":1678272231254962, "dur":58, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.TextMeshPro.dll (+2 others)" }}
,{ "pid":12345, "tid":4, "ts":1678272231255227, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.VisualStudio.Editor.dll (+2 others)" }}
,{ "pid":12345, "tid":4, "ts":1678272231255621, "dur":50, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Unity.TextMeshPro.Editor.dll (+2 others)" }}
,{ "pid":12345, "tid":4, "ts":1678272231255810, "dur":116, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231257053, "dur":113, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231257297, "dur":218, "ph":"X", "name": "WaitingForWork", "cname":"thread_state_sleeping", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231257689, "dur":61, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"Csc Library/Bee/artifacts/2400b0aEDbg.dag/Assembly-CSharp.dll (+2 others)" }}
,{ "pid":12345, "tid":4, "ts":1678272231258294, "dur":53, "ph":"X", "name": "StoreTimestampsOfNonGeneratedInputFiles", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272231258642, "dur":1402450, "ph":"X", "name": "Csc", "args": { "detail":"Library/Bee/artifacts/2400b0aEDbg.dag/Assembly-CSharp.dll (+2 others)" }}
,{ "pid":12345, "tid":4, "ts":1678272232662043, "dur":133, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/2400b0aEDbg.dag/Assembly-CSharp.dll" }}
,{ "pid":12345, "tid":4, "ts":1678272232662025, "dur":559, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"ILPostProcess Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Assembly-CSharp.dll (+pdb)" }}
,{ "pid":12345, "tid":4, "ts":1678272232665140, "dur":147, "ph":"X", "name": "StoreTimestampsOfNonGeneratedInputFiles", "args": { "detail":"" }}
,{ "pid":12345, "tid":4, "ts":1678272232665517, "dur":266133, "ph":"X", "name": "ILPostProcess", "args": { "detail":"Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Assembly-CSharp.dll (+pdb)" }}
,{ "pid":12345, "tid":4, "ts":1678272232934090, "dur":96, "ph":"X", "name": "ComputeFileSignatureSha1", "args": { "detail":"Library/Bee/artifacts/2400b0aEDbg.dag/post-processed/Assembly-CSharp.dll" }}
,{ "pid":12345, "tid":4, "ts":1678272232934081, "dur":105, "ph":"X", "name": "CheckInputSignature", "args": { "detail":"CopyFiles Library/ScriptAssemblies/Assembly-CSharp.dll" }}
,{ "pid":12345, "tid":4, "ts":1678272232934206, "dur":474, "ph":"X", "name": "CopyFiles", "args": { "detail":"Library/ScriptAssemblies/Assembly-CSharp.dll" }}
,{ "pid":12345, "tid":0, "ts":1678272232944846, "dur":192, "ph":"X", "name": "ProfilerWriteOutput" }
,{ "pid": 129706, "tid": 914, "ts": 1678272232996112, "dur": 2778, "ph": "X", "name": "Wait for external events", "args": {"First to finish": "backend1.traceevents"} },
{ "pid": 129706, "tid": 914, "ts": 1678272232999079, "dur": 1853, "ph": "X", "name": "backend1.traceevents", "args": {} },
{ "pid": 129706, "tid": 914, "ts": 1678272232989836, "dur": 12283, "ph": "X", "name": "Write chrome-trace events", "args": {} },
{}
]

Binary file not shown.

File diff suppressed because one or more lines are too long

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

@ -1 +1 @@
{"m_ScrollY":0.0,"m_ExpandedSceneGameObjectInstanceIDs":[-1336],"m_LastClickedInstanceID":0,"m_OpenSceneGUIDs":["99c9720ab356a0642a771bea13969a05"]}
{"m_ScrollY":240.0,"m_ExpandedSceneGameObjectInstanceIDs":[-1336,25864],"m_LastClickedInstanceID":-1870,"m_OpenSceneGUIDs":["99c9720ab356a0642a771bea13969a05"]}

@ -0,0 +1 @@
{"m_ScrollY":0.0,"m_ExpandedPrefabGameObjectFileIDs":[160166231906081607],"m_LastClickedFileID":160166231906081607}

@ -0,0 +1 @@
{"m_ScrollY":0.0,"m_ExpandedPrefabGameObjectFileIDs":[4039689338921588291],"m_LastClickedFileID":4039689338921588291}

@ -0,0 +1 @@
{"m_ScrollY":0.0,"m_ExpandedPrefabGameObjectFileIDs":[],"m_LastClickedFileID":2153721870387282610}

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load Diff

@ -0,0 +1,6 @@
Base path: '/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data', plugins path '/home/sascha/Unity/Hub/Editor/2023.1.0a26/Editor/Data/PlaybackEngines'
Cmd: initializeCompiler
Cmd: compileSnippet
insize=3802 file=Packages/com.unity.render-pipelines.universal/Shaders/Universal Render Pipeline/Lit pass=ForwardLit ppOnly=0 stripLineD=0 buildPlatform=24 rsLen=0 pKW=UNITY_ENABLE_REFLECTION_BUFFERS UNITY_USE_DITHER_MASK_FOR_ALPHABLENDED_SHADOWS UNITY_PBS_USE_BRDF1 UNITY_SPECCUBE_BOX_PROJECTION UNITY_SPECCUBE_BLENDING UNITY_ENABLE_DETAIL_NORMALMAP SHADER_API_DESKTOP UNITY_LIGHT_PROBE_PROXY_VOLUME UNITY_LIGHTMAP_FULL_HDR uKW=_MAIN_LIGHT_SHADOWS_CASCADE _ADDITIONAL_LIGHTS PROBE_VOLUMES_OFF FOG_EXP2 _ADDITIONAL_LIGHT_SHADOWS _REFLECTION_PROBE_BLENDING _REFLECTION_PROBE_BOX_PROJECTION _SHADOWS_SOFT _SCREEN_SPACE_OCCLUSION _EMISSION dKW=_MAIN_LIGHT_SHADOWS _MAIN_LIGHT_SHADOWS_SCREEN _ADDITIONAL_LIGHTS_VERTEX _FORWARD_PLUS LIGHTMAP_SHADOW_MIXING SHADOWS_SHADOWMASK DIRLIGHTMAP_COMBINED LIGHTMAP_ON DYNAMICLIGHTMAP_ON PROBE_VOLUMES_L1 PROBE_VOLUMES_L2 DOTS_INSTANCING_ON FOG_LINEAR FOG_EXP INSTANCING_ON _NORMALMAP _PARALLAXMAP _RECEIVE_SHADOWS_OFF _DETAIL_MULX2 _DETAIL_SCALED UNITY_NO_DXT5nm UNITY_FRAMEBUFFER_FETCH_AVAILABLE UNITY_METAL_SHADOWS_USE_POINT_FILTERING UNITY_NO_SCREENSPACE_SHADOWS UNITY_PBS_USE_BRDF2 UNITY_PBS_USE_BRDF3 UNITY_HARDWARE_TIER1 UNITY_HARDWARE_TIER2 UNITY_HARDWARE_TIER3 UNITY_COLORSPACE_GAMMA UNITY_LIGHTMAP_DLDR_ENCODING UNITY_LIGHTMAP_RGBM_ENCODING UNITY_VIRTUAL_TEXTURING UNITY_PRETRANSFORM_TO_DISPLAY_ORIENTATION UNITY_ASTC_NORMALMAP_ENCODING SHADER_API_GLES30 UNITY_UNIFIED_SHADER_PRECISION_MODEL flags=0 lang=3 type=Vertex platform=vulkan reqs=1 mask=2 start=109 ok=1 outsize=29162

Binary file not shown.